@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-500.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-600.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-800.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "DM Serif Display";
    src: url("../fonts/dm-serif-display-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-display: "DM Serif Display", Georgia, serif;
    --ink: #1d2b25;
    --muted: #63736a;
    --line: #dce5de;
    --paper: #f5f1e8;
    --white: #ffffff;
    --green-950: #082e25;
    --green-900: #104536;
    --green-800: #17604a;
    --green-700: #2c7a5e;
    --green-100: #e1eee6;
    --gold: #d69a45;
    --gold-light: #f2d296;
    --sand: #e8c887;
    --sand-light: #fbf7ed;
    --clay: #bd6747;
    --river: #4f8588;
    --shadow: 0 26px 75px rgba(15, 58, 43, .13);
    --container: 1180px;
    --radius: 24px;
    --transition: 240ms cubic-bezier(.2, .7, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--sand-light);
    font-family: var(--font-body);
    font-synthesis: none;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    text-wrap: balance;
}

body.modal-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    width: 1.15em;
    height: 1.15em;
    stroke-width: 1.8;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--green-900);
    transform: translateY(-160%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.utility-bar {
    color: rgba(255, 255, 255, .78);
    background: var(--green-950);
    font-size: 12px;
    letter-spacing: .03em;
}

.utility-inner,
.utility-inner p,
.utility-links,
.utility-links span,
.utility-links a {
    display: flex;
    align-items: center;
}

.utility-inner {
    min-height: 38px;
    justify-content: space-between;
}

.utility-inner p {
    margin: 0;
    gap: 8px;
}

.utility-links {
    gap: 24px;
}

.utility-links span,
.utility-links a {
    gap: 7px;
}

.utility-links a:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(16, 61, 45, .08);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    color: var(--white);
    background: var(--green-900);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .07);
}

.brand-mark svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.6;
}

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

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.01em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--green-700);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav > a,
.nav-dropdown-trigger {
    position: relative;
    color: #405048;
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition);
}

.desktop-nav > a::after,
.nav-dropdown-trigger::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-dropdown-trigger:hover,
.nav-dropdown.is-active .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger {
    color: var(--green-900);
}

.desktop-nav > a:hover::after,
.desktop-nav > a.active::after,
.nav-dropdown.is-active .nav-dropdown-trigger::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
}

.nav-dropdown-trigger > svg {
    width: 15px;
    height: 15px;
    transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown-trigger > svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    display: grid;
    visibility: hidden;
    width: 278px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 22px 55px rgba(10, 42, 30, .16);
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown-menu::before {
    position: absolute;
    top: -8px;
    left: 50%;
    width: 14px;
    height: 14px;
    content: "";
    background: var(--white);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown.is-open .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    color: #43534b;
    border-bottom: 1px solid #edf1ee;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-dropdown-menu a:last-child {
    border-bottom: 0;
}

.nav-dropdown-menu a span {
    color: #98a69f;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 400;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    color: var(--green-900);
    background: var(--green-100);
    padding-left: 17px;
}

.nav-dropdown-menu a:hover span,
.nav-dropdown-menu a.active span {
    color: var(--green-700);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-button {
    position: relative;
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: var(--green-900);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: var(--transition);
}

.icon-button:hover {
    color: var(--white);
    background: var(--green-900);
    border-color: var(--green-900);
    transform: translateY(-2px);
}

[data-tooltip]::after {
    position: absolute;
    z-index: 10;
    bottom: calc(100% + 9px);
    left: 50%;
    padding: 5px 8px;
    color: var(--white);
    content: attr(data-tooltip);
    background: var(--ink);
    border-radius: 5px;
    font-size: 10px;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: var(--transition);
    white-space: nowrap;
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-compact {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 12px;
}

.button-primary {
    color: var(--white);
    background: var(--green-900);
    box-shadow: 0 10px 22px rgba(18, 60, 45, .15);
}

.button-primary:hover {
    background: var(--green-800);
    box-shadow: 0 14px 28px rgba(18, 60, 45, .22);
}

.button-secondary {
    color: var(--green-900);
    background: var(--white);
    border-color: var(--line);
}

.button-accent {
    color: var(--green-950);
    background: var(--gold-light);
    box-shadow: 0 14px 34px rgba(5, 25, 19, .24);
}

.button-accent:hover {
    background: #ffe1a0;
}

.button-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .35);
}

.button-outline-light:hover {
    color: var(--green-950);
    background: var(--white);
    border-color: var(--white);
}

.menu-trigger {
    display: none;
}

.mobile-menu {
    border-top: 1px solid var(--line);
}

.mobile-menu nav {
    display: grid;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    padding: 12px 0 24px;
}

.mobile-menu a {
    padding: 12px 0;
    color: var(--green-900);
    border-bottom: 1px solid var(--line);
    font-weight: 600;
}

.mobile-nav-group {
    border-bottom: 1px solid var(--line);
}

.mobile-subnav-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--green-900);
    background: transparent;
    border: 0;
    font-weight: 600;
}

.mobile-subnav-trigger svg {
    transition: transform var(--transition);
}

.mobile-subnav-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: grid;
    margin-bottom: 10px;
    padding: 4px 14px;
    background: var(--paper);
    border-left: 2px solid var(--gold);
}

.mobile-submenu[hidden] {
    display: none;
}

.mobile-submenu a {
    padding: 10px 0;
    color: #53645b;
    border-bottom-color: #e1e7e3;
    font-size: 13px;
    font-weight: 600;
}

.mobile-submenu a.active {
    color: var(--green-900);
    font-weight: 800;
}

.hero {
    position: relative;
    min-height: 700px;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
}

.hero-media,
.hero-shade,
.hero-pattern {
    position: absolute;
    z-index: -3;
    inset: 0;
}

.hero-media {
    background-image: url("../images/bukit-batu-hero.jpg");
    background-position: center 48%;
    background-size: cover;
    animation: heroScale 18s ease-out both;
}

.hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 27, 19, .94) 0%, rgba(7, 36, 25, .78) 39%, rgba(5, 27, 19, .18) 73%, rgba(5, 27, 19, .08) 100%),
        linear-gradient(0deg, rgba(4, 22, 16, .48), transparent 45%);
}

.hero-pattern {
    z-index: -1;
    opacity: .09;
    background-image: radial-gradient(rgba(255, 255, 255, .65) .7px, transparent .7px);
    background-size: 13px 13px;
    mask-image: linear-gradient(90deg, black, transparent 55%);
}

.hero-inner {
    position: relative;
    display: flex;
    min-height: 700px;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 84px;
}

.hero-copy {
    max-width: 700px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow-light,
.section-kicker-light {
    color: var(--gold-light);
}

.hero h1 {
    max-width: 670px;
    margin: 23px 0 20px;
    font-family: var(--font-display);
    font-size: clamp(54px, 6.4vw, 88px);
    font-weight: 400;
    letter-spacing: -.052em;
    line-height: .98;
}

.hero h1 em {
    color: var(--gold-light);
    font-weight: 400;
}

.hero-copy > p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-800);
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition);
}

.text-link svg,
.card-link svg {
    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--green-700);
}

.text-link:hover svg,
.card-link:hover svg {
    transform: translateX(4px);
}

.text-link-light {
    color: rgba(255, 255, 255, .86);
}

.text-link-light:hover {
    color: var(--white);
}

.hero-note {
    position: absolute;
    right: 0;
    bottom: 117px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 18px;
    background: rgba(8, 34, 25, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    backdrop-filter: blur(12px);
}

.hero-note-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--gold-light);
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.hero-note p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    line-height: 1.45;
}

.hero-note strong {
    color: var(--white);
    font-size: 12px;
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue span {
    position: relative;
    display: block;
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 20px;
}

.scroll-cue span::after {
    position: absolute;
    top: 7px;
    left: 8px;
    width: 2px;
    height: 6px;
    content: "";
    background: var(--white);
    border-radius: 3px;
    animation: scrollDot 1.8s infinite;
}

.profile-page-hero {
    position: relative;
    min-height: 455px;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
}

.profile-page-hero-media,
.profile-page-hero-shade {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.profile-page-hero-media {
    background: url("../images/bukit-batu-hero.jpg") center 47%/cover;
}

.profile-page-hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(6, 33, 24, .94), rgba(8, 45, 32, .7) 50%, rgba(6, 33, 24, .2)),
        linear-gradient(0deg, rgba(5, 28, 20, .5), transparent 55%);
}

.profile-page-hero-inner {
    display: flex;
    min-height: 455px;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 30px;
}

.profile-page-heading {
    position: relative;
    max-width: 790px;
    padding-left: 88px;
}

.profile-page-icon {
    position: absolute;
    top: 58px;
    left: 0;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    color: var(--green-950);
    background: var(--gold-light);
    border-radius: 50%;
}

.profile-page-icon svg {
    width: 28px;
    height: 28px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.breadcrumb a {
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb svg {
    width: 12px;
    height: 12px;
}

.breadcrumb strong {
    color: var(--gold-light);
}

.profile-page-heading h1 {
    margin: 9px 0 13px;
    font-family: var(--font-display);
    font-size: clamp(50px, 6vw, 76px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.profile-page-heading > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
}

.profile-detail-section {
    background: var(--paper);
}

.profile-detail-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
}

.profile-detail-image {
    position: relative;
    padding: 0 28px 28px 0;
}

.profile-detail-image::after {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: 72%;
    height: 72%;
    content: "";
    border: 1px solid rgba(35, 104, 77, .28);
}

.profile-detail-image img {
    position: relative;
    z-index: 1;
    height: 520px;
    object-fit: cover;
    box-shadow: 0 22px 55px rgba(18, 60, 45, .15);
}

.profile-detail-caption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    display: flex;
    max-width: 260px;
    align-items: center;
    gap: 12px;
    padding: 17px 20px;
    color: var(--green-950);
    background: var(--gold-light);
    box-shadow: 0 14px 35px rgba(68, 53, 23, .16);
}

.profile-detail-caption svg {
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
}

.profile-detail-caption span {
    font-size: 11px;
    line-height: 1.45;
}

.profile-detail-caption strong {
    display: block;
    font-size: 12px;
}

.profile-detail-copy h2 {
    margin: 12px 0 22px;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: clamp(39px, 4.4vw, 57px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.profile-detail-copy p {
    margin: 0 0 17px;
    color: var(--muted);
}

.profile-detail-copy .lead {
    color: #34463d;
    font-size: 19px;
    line-height: 1.75;
}

.village-character {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 90px;
    border-top: 1px solid #d4ded8;
    border-left: 1px solid #d4ded8;
}

.character-item {
    position: relative;
    min-height: 250px;
    padding: 34px;
    background: var(--white);
    border-right: 1px solid #d4ded8;
    border-bottom: 1px solid #d4ded8;
}

.character-item > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
}

.character-item > small {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #a2afa8;
    font-family: var(--font-display);
    font-size: 14px;
}

.character-item h3 {
    margin: 0 0 8px;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 400;
}

.character-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.profile-content-page {
    min-height: 700px;
}

.profile-page-navigation {
    color: var(--white);
    background: var(--green-900);
}

.profile-page-navigation-inner {
    display: flex;
    min-height: 138px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.profile-page-navigation-inner p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.profile-page-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.profile-page-links a {
    padding: 10px 14px;
    color: rgba(255, 255, 255, .66);
    border: 1px solid rgba(255, 255, 255, .16);
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
}

.profile-page-links a:hover,
.profile-page-links a.active {
    color: var(--green-950);
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.data-dashboard {
    padding: 78px 0 105px;
    background: var(--paper);
}

.data-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 35px;
    padding: 17px 20px;
    color: #5b481f;
    background: #fff4d6;
    border-left: 3px solid var(--gold);
}

.data-notice > span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    color: var(--green-950);
    background: var(--gold-light);
    border-radius: 50%;
}

.data-notice strong {
    color: #493918;
    font-size: 13px;
}

.data-notice p {
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.6;
}

.data-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.data-toolbar h2,
.territory-heading h2 {
    margin: 7px 0 3px;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.15;
}

.data-toolbar p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.year-filter {
    position: relative;
    display: grid;
    min-width: 170px;
    gap: 5px;
}

.year-filter > span {
    color: var(--green-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.year-filter select {
    width: 100%;
    height: 48px;
    padding: 0 42px 0 14px;
    color: var(--green-950);
    appearance: none;
    background: var(--white);
    border: 1px solid #cfdad3;
    border-radius: 0;
    font-weight: 700;
    outline: none;
}

.year-filter select:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(35, 104, 77, .1);
}

.year-filter svg {
    position: absolute;
    right: 14px;
    bottom: 16px;
    width: 16px;
    height: 16px;
    color: var(--green-700);
    pointer-events: none;
}

.data-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.data-stat {
    position: relative;
    display: grid;
    min-height: 165px;
    align-content: center;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 25px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #d9e2dc;
    transition: var(--transition);
}

.data-stat:hover {
    border-color: #b7c9be;
    box-shadow: 0 14px 34px rgba(18, 60, 45, .08);
    transform: translateY(-3px);
}

.data-stat-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
}

.data-stat-icon-gold {
    color: #8a6218;
    background: #fff0ca;
}

.data-stat div {
    display: flex;
    flex-direction: column;
}

.data-stat small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.data-stat strong {
    margin-top: 3px;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.data-stat p {
    margin: 4px 0 0;
    color: #829087;
    font-size: 10px;
}

.data-trend,
.data-ratio {
    position: absolute;
    right: 17px;
    bottom: 17px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 7px;
    color: var(--green-700);
    background: var(--green-100);
    font-size: 9px;
    font-weight: 800;
}

.data-trend svg {
    width: 12px;
    height: 12px;
}

.data-ratio-gold {
    color: #7b5819;
    background: #fff0ca;
}

.data-territory {
    margin-bottom: 20px;
    padding: 32px;
    color: var(--white);
    background: var(--green-900);
}

.territory-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.territory-heading .section-kicker {
    color: var(--gold-light);
}

.territory-heading h2 {
    color: var(--white);
}

.territory-totals {
    display: flex;
    gap: 9px;
}

.territory-totals > span {
    min-width: 82px;
    padding: 10px 13px;
    color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 9px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.territory-totals strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

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

.territory-item {
    padding: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
}

.territory-item > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.territory-item > div span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.territory-item > div strong {
    font-size: 12px;
}

.territory-item p {
    margin: 5px 0 13px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
}

.territory-bar {
    height: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, .12);
}

.territory-bar span {
    display: block;
    height: 100%;
    background: var(--gold-light);
    transition: width 650ms cubic-bezier(.2, .7, .2, 1);
}

.charts-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 12px;
}

.chart-panel {
    position: relative;
    min-width: 0;
    padding: 26px;
    background: var(--white);
    border: 1px solid #d9e2dc;
}

.chart-panel-wide {
    grid-column: 1 / 2;
}

.chart-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.chart-kicker,
.chart-unit {
    color: var(--green-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.chart-heading h3 {
    margin: 3px 0 0;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.25;
}

.chart-info {
    position: relative;
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    color: var(--green-700);
    background: var(--green-100);
    border-radius: 50%;
}

.chart-unit {
    padding: 5px 8px;
    background: var(--green-100);
}

.chart-wrap {
    position: relative;
    width: 100%;
    height: 300px;
}

.chart-wrap-doughnut,
.chart-wrap-radar {
    height: 320px;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    transform: translate(-50%, -44%);
}

.chart-center strong {
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.chart-center span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.data-footnote {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 15px 18px;
    color: var(--muted);
    background: #e8eeea;
    font-size: 10px;
}

.data-footnote > svg {
    color: var(--green-700);
}

.data-footnote p {
    flex: 1;
    margin: 0;
}

.data-footnote > span {
    color: var(--green-800);
    font-weight: 700;
}

.quick-access {
    position: relative;
    z-index: 5;
    margin-top: -44px;
}

.quick-panel {
    display: grid;
    grid-template-columns: 210px 1fr;
    min-height: 152px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(18, 60, 45, .08);
    box-shadow: var(--shadow);
}

.quick-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: var(--white);
    background: var(--green-900);
}

.quick-heading .section-kicker {
    color: var(--gold-light);
}

.quick-heading h2 {
    margin: 8px 0 0;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.15;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-item {
    display: grid;
    min-width: 0;
    align-content: center;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 24px 18px;
    border-right: 1px solid var(--line);
    transition: var(--transition);
}

.quick-item:last-child {
    border-right: 0;
}

.quick-item > svg {
    display: none;
}

.quick-item:hover {
    background: #f5f8f6;
}

.quick-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
    transition: var(--transition);
}

.quick-item:hover .quick-icon {
    color: var(--white);
    background: var(--green-800);
    transform: rotate(-5deg);
}

.quick-item span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.quick-item strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-item small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

.section {
    padding: 110px 0;
}

.village-greeting {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.village-greeting::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 34%;
    height: 100%;
    content: "";
    opacity: .45;
    background-image: radial-gradient(rgba(25, 80, 59, .14) .8px, transparent .8px);
    background-size: 13px 13px;
    mask-image: linear-gradient(90deg, transparent, black);
}

.greeting-grid {
    position: relative;
    display: grid;
    align-items: stretch;
    grid-template-columns: .8fr 1.2fr;
    box-shadow: 0 24px 70px rgba(19, 55, 41, .1);
}

.greeting-official {
    position: relative;
    display: flex;
    min-height: 515px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 46px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(11, 42, 32, .96), rgba(25, 80, 59, .95)),
        url("../images/bukit-batu-hero.jpg") center/cover;
}

.greeting-official::after {
    position: absolute;
    top: -135px;
    right: -125px;
    width: 330px;
    height: 330px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    box-shadow: 0 0 0 58px rgba(255, 255, 255, .035);
}

.greeting-pattern {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: linear-gradient(135deg, transparent 47%, white 47%, white 48%, transparent 48%);
    background-size: 32px 32px;
}

.official-emblem {
    position: absolute;
    z-index: 1;
    top: 44px;
    left: 46px;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    color: var(--green-950);
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.official-emblem svg {
    width: 27px;
    height: 27px;
}

.greeting-official .section-kicker,
.greeting-official h2,
.official-identity {
    position: relative;
    z-index: 1;
}

.greeting-official h2 {
    margin: 12px 0 30px;
    font-family: var(--font-display);
    font-size: clamp(39px, 4vw, 52px);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1.08;
}

.official-identity {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.official-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--gold-light);
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
}

.official-identity > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.official-identity strong {
    font-size: 12px;
}

.official-identity small {
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.greeting-copy {
    position: relative;
    display: flex;
    min-height: 515px;
    flex-direction: column;
    justify-content: center;
    padding: 55px 65px;
    background: var(--paper);
}

.greeting-quote {
    position: absolute;
    top: 36px;
    right: 45px;
    color: rgba(35, 104, 77, .13);
}

.greeting-quote svg {
    width: 76px;
    height: 76px;
    stroke-width: 1.2;
}

.greeting-salutation {
    margin: 0 0 15px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 800;
}

.greeting-copy blockquote {
    max-width: 700px;
    margin: 0 0 20px;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.45;
}

.greeting-copy > p:not(.greeting-salutation, .greeting-closing) {
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.greeting-closing {
    margin: 7px 0 0;
    color: var(--green-900);
    font-size: 13px;
    font-weight: 700;
}

.greeting-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.greeting-signature span {
    width: 42px;
    height: 1px;
    background: var(--gold);
}

.greeting-signature small {
    color: var(--green-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.profile-section {
    overflow: hidden;
    background: var(--paper);
}

.profile-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1.03fr .97fr;
    gap: 88px;
}

.profile-visual {
    position: relative;
    padding: 0 0 30px 30px;
}

.profile-visual::before {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 72%;
    height: 72%;
    content: "";
    border: 1px solid rgba(18, 60, 45, .25);
}

.profile-visual::after {
    position: absolute;
    z-index: 2;
    top: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    content: "";
    opacity: .22;
    background-image: radial-gradient(var(--green-700) 1.4px, transparent 1.4px);
    background-size: 10px 10px;
}

.profile-visual img {
    position: relative;
    z-index: 1;
    height: 540px;
    object-fit: cover;
    box-shadow: 0 22px 50px rgba(15, 43, 32, .16);
}

.profile-badge {
    position: absolute;
    z-index: 3;
    right: -34px;
    bottom: 0;
    display: flex;
    width: 215px;
    align-items: center;
    gap: 14px;
    padding: 18px;
    color: var(--green-950);
    background: var(--gold-light);
    box-shadow: 0 16px 34px rgba(53, 44, 23, .17);
}

.profile-badge svg {
    width: 30px;
    height: 30px;
}

.profile-badge span {
    font-size: 12px;
    line-height: 1.4;
}

.profile-badge strong {
    display: block;
    font-size: 13px;
}

.profile-copy h2,
.section-heading h2,
.split-heading h2,
.agenda-intro h2,
.contact-copy h2 {
    margin: 12px 0 22px;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: clamp(38px, 4.2vw, 56px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.08;
}

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

.profile-copy .lead {
    color: #33423a;
    font-size: 19px;
    line-height: 1.75;
}

.vision-box {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin: 30px 0 27px;
    padding: 22px 24px;
    background: var(--white);
    border-left: 3px solid var(--gold);
    box-shadow: 0 12px 34px rgba(26, 49, 39, .06);
}

.vision-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
}

.vision-box small {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.vision-box p {
    margin: 3px 0 0;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.55;
}

.vision-mission-section {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.vision-mission-section::before {
    position: absolute;
    top: -170px;
    left: -170px;
    width: 430px;
    height: 430px;
    content: "";
    border: 1px solid rgba(35, 104, 77, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(35, 104, 77, .025);
}

.vision-mission-grid {
    position: relative;
    display: grid;
    align-items: stretch;
    grid-template-columns: .9fr 1.1fr;
    box-shadow: 0 24px 70px rgba(19, 55, 41, .09);
}

.vision-statement {
    display: flex;
    min-height: 480px;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
    color: var(--white);
    background: var(--green-900);
}

.vision-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.vision-statement blockquote {
    margin: 28px 0 22px;
    font-family: var(--font-display);
    font-size: clamp(31px, 3.4vw, 43px);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.vision-statement p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
}

.mission-list {
    padding: 48px 55px;
    background: var(--paper);
}

.mission-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.mission-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
}

.mission-heading h3 {
    margin: 2px 0 0;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
}

.mission-list ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mission-list li {
    display: grid;
    align-items: start;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 15px 0;
    border-top: 1px solid #d7e0da;
}

.mission-list li > span {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 18px;
}

.mission-list li p {
    margin: 0;
    color: #4f6057;
    font-size: 14px;
}

.organization-section {
    position: relative;
    overflow: hidden;
    background: #eef3ef;
}

.organization-section::after {
    position: absolute;
    right: -100px;
    bottom: -170px;
    width: 400px;
    height: 400px;
    content: "";
    opacity: .32;
    background-image: radial-gradient(var(--green-700) .8px, transparent .8px);
    background-size: 13px 13px;
    mask-image: radial-gradient(circle, black, transparent 70%);
}

.organization-section .section-heading {
    position: relative;
    z-index: 1;
}

.organization-section .section-kicker-light {
    color: var(--green-700);
}

.organization-chart {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.organization-node {
    position: relative;
    display: flex;
    width: min(100%, 360px);
    min-height: 170px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
    background: var(--white);
    border: 1px solid #d7e1da;
    box-shadow: 0 14px 40px rgba(18, 60, 45, .08);
}

.organization-leader {
    color: var(--white);
    background: var(--green-900);
    border-color: var(--green-900);
}

.organization-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 11px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
}

.organization-leader .organization-icon {
    color: var(--green-950);
    background: var(--gold-light);
}

.organization-node small,
.organization-role small,
.organization-field small {
    color: var(--green-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.organization-leader small {
    color: var(--gold-light);
}

.organization-node h3 {
    margin: 3px 0 0;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
}

.organization-leader h3 {
    color: var(--white);
}

.organization-node p {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.organization-connector {
    width: 1px;
    height: 40px;
    background: #aabbb1;
}

.organization-connector-wide {
    position: relative;
    height: 55px;
}

.organization-connector-wide::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: min(850px, 72vw);
    height: 1px;
    content: "";
    background: #aabbb1;
    transform: translateX(-50%);
}

.organization-team {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.organization-role {
    position: relative;
    min-height: 150px;
    padding: 28px 24px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid #d7e1da;
    transition: var(--transition);
}

.organization-role::before {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 1px;
    height: 15px;
    content: "";
    background: #aabbb1;
}

.organization-role:hover {
    box-shadow: 0 16px 36px rgba(18, 60, 45, .1);
    transform: translateY(-4px);
}

.organization-role > span {
    display: grid;
    width: 38px;
    height: 38px;
    margin: 0 auto 9px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
}

.organization-role h3,
.organization-field h3 {
    margin: 3px 0 0;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
}

.organization-field {
    display: grid;
    width: 100%;
    align-items: center;
    grid-template-columns: auto auto 1fr;
    gap: 16px;
    margin-top: 22px;
    padding: 23px 28px;
    background: #dfeae3;
    border-left: 3px solid var(--green-700);
}

.organization-field > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: var(--green-800);
    border-radius: 50%;
}

.organization-field p {
    max-width: 540px;
    justify-self: end;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

.trust-strip {
    padding: 42px 0;
    color: var(--white);
    background: var(--green-900);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 72px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.trust-item:last-child {
    border: 0;
}

.trust-item strong {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 39px;
    font-weight: 500;
    letter-spacing: -.03em;
}

.trust-item span {
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    line-height: 1.45;
}

.services-section {
    background:
        linear-gradient(rgba(255, 255, 255, .94), rgba(255, 255, 255, .94)),
        radial-gradient(var(--green-800) .65px, transparent .65px);
    background-size: auto, 12px 12px;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading.centered {
    max-width: 720px;
    margin-right: auto;
    margin-bottom: 55px;
    margin-left: auto;
    text-align: center;
}

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

.section-heading.centered p {
    margin-inline: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 330px;
    padding: 37px 34px;
    overflow: hidden;
    background: var(--white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}

.service-card::after {
    position: absolute;
    right: -36px;
    bottom: -36px;
    width: 105px;
    height: 105px;
    content: "";
    border: 1px solid rgba(31, 99, 73, .12);
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover {
    z-index: 2;
    box-shadow: 0 22px 50px rgba(16, 55, 40, .12);
    transform: translateY(-5px);
}

.service-card:hover::after {
    width: 130px;
    height: 130px;
}

.service-number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: #a7b4ad;
    font-family: var(--font-display);
    font-size: 13px;
}

.service-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    margin: 0 0 9px;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 600;
}

.service-card p {
    margin: 0 0 23px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: var(--green-800);
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 800;
}

.service-card-featured {
    color: var(--white);
    background: var(--green-900);
}

.service-card-featured h3,
.service-card-featured .card-link {
    color: var(--white);
}

.service-card-featured p {
    color: rgba(255, 255, 255, .68);
}

.service-card-featured .service-number {
    color: rgba(255, 255, 255, .4);
}

.service-card-featured .service-icon {
    color: var(--gold-light);
    background: rgba(255, 255, 255, .09);
}

.potential-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--green-950);
}

.potential-section::before {
    position: absolute;
    top: -200px;
    right: -160px;
    width: 550px;
    height: 550px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.split-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
}

.split-heading > div {
    max-width: 650px;
}

.split-heading h2,
.agenda-intro h2 {
    color: var(--white);
}

.split-heading > p {
    max-width: 400px;
    margin: 0 0 23px;
    color: rgba(255, 255, 255, .62);
}

.potential-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: repeat(2, 260px);
    gap: 18px;
}

.potential-card {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: var(--green-800);
}

.potential-card-large {
    grid-row: 1 / 3;
}

.potential-card > img,
.potential-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
}

.potential-card > img {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.potential-overlay {
    z-index: 1;
    background: linear-gradient(0deg, rgba(5, 31, 22, .91) 0%, rgba(5, 31, 22, .08) 75%);
}

.potential-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px;
}

.potential-card-large .potential-content {
    padding: 42px;
}

.potential-icon {
    position: absolute;
    right: 28px;
    bottom: 30px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--green-950);
    background: var(--gold-light);
    border-radius: 50%;
}

.potential-card-large .potential-icon {
    top: 38px;
    right: 38px;
    bottom: auto;
}

.potential-content small {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.potential-content h3 {
    max-width: calc(100% - 55px);
    margin: 6px 0 6px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
}

.potential-card-large h3 {
    max-width: none;
    font-size: 36px;
}

.potential-content p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    line-height: 1.6;
}

.potential-card:hover > img {
    transform: scale(1.045);
}

.potential-card:hover .potential-icon {
    color: var(--green-950);
    background: var(--white);
}

.potential-card-plain {
    background: var(--green-800);
}

.potential-card-plain .plain-pattern {
    position: absolute;
    inset: 0;
    opacity: .12;
    background:
        linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, .5) 45%, rgba(255, 255, 255, .5) 46%, transparent 46%) 0 0/28px 28px;
}

.news-section {
    background: var(--paper);
}

.heading-with-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.heading-with-action h2 {
    margin-bottom: 0;
}

.news-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 55px;
}

.featured-news {
    background: var(--white);
    box-shadow: 0 18px 48px rgba(19, 47, 36, .08);
}

.news-image {
    position: relative;
    display: block;
    height: 350px;
    overflow: hidden;
}

.news-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.news-image:hover img {
    transform: scale(1.035);
}

.news-image span {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 7px 11px;
    color: var(--green-950);
    background: var(--gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.news-content {
    padding: 30px 34px 34px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-content h3,
.news-row h3 {
    color: var(--green-950);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.35;
}

.news-content h3 {
    margin: 10px 0;
    font-size: 26px;
}

.news-content h3 a:hover,
.news-row h3 a:hover {
    color: var(--green-700);
}

.news-content p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.news-list {
    border-top: 1px solid #ccd8d1;
}

.news-row {
    display: grid;
    align-items: center;
    grid-template-columns: 66px 1fr auto;
    gap: 20px;
    min-height: 167px;
    border-bottom: 1px solid #ccd8d1;
}

.news-date {
    display: flex;
    height: 70px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green-950);
    background: var(--white);
    border: 1px solid var(--line);
}

.news-date strong {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
}

.news-date span {
    margin-top: 5px;
    color: var(--green-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.news-category,
.agenda-type {
    color: var(--green-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.news-row h3 {
    margin: 4px 0;
    font-size: 19px;
}

.news-row p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.row-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--green-800);
    border: 1px solid #cad7d0;
    border-radius: 50%;
    transition: var(--transition);
}

.row-arrow:hover {
    color: var(--white);
    background: var(--green-800);
    border-color: var(--green-800);
}

.agenda-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    color: var(--white);
    background: var(--green-900);
}

.agenda-section::after {
    position: absolute;
    top: -100px;
    left: -120px;
    width: 420px;
    height: 420px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, .025);
}

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

.agenda-intro p {
    max-width: 430px;
    margin: -3px 0 27px;
    color: rgba(255, 255, 255, .64);
    font-size: 17px;
}

.agenda-list {
    display: grid;
    gap: 12px;
}

.agenda-card {
    display: grid;
    min-height: 135px;
    align-items: center;
    grid-template-columns: 88px 1fr auto;
    gap: 24px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: var(--transition);
}

.agenda-card:hover {
    background: rgba(255, 255, 255, .11);
    transform: translateX(5px);
}

.agenda-date {
    display: flex;
    height: 86px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green-950);
    background: var(--gold-light);
}

.agenda-date span {
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1;
}

.agenda-date small {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.agenda-type {
    color: var(--gold-light);
}

.agenda-card h3 {
    margin: 3px 0 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
}

.agenda-card p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
}

.agenda-card p span {
    width: 10px;
}

.agenda-action {
    color: var(--white);
    border-color: rgba(255, 255, 255, .23);
}

.agenda-action.saved {
    color: var(--green-950);
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-auto-rows: 360px;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 14px;
}

.gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(5, 30, 21, .65), transparent 45%);
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(.2, .7, .2, 1);
}

.gallery-item:hover img {
    transform: scale(1.045);
}

.gallery-item figcaption {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.contact-section {
    padding: 0 0 95px;
}

.contact-panel {
    position: relative;
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 48px 60px;
    overflow: hidden;
    background: var(--gold-light);
}

.contact-panel::after {
    position: absolute;
    right: -90px;
    bottom: -210px;
    width: 420px;
    height: 420px;
    content: "";
    border: 1px solid rgba(18, 60, 45, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(18, 60, 45, .05);
}

.contact-copy {
    position: relative;
    z-index: 1;
    max-width: 630px;
}

.contact-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(36px, 4vw, 50px);
}

.contact-copy p {
    margin: 0;
    color: rgba(11, 42, 32, .72);
}

.contact-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer {
    color: rgba(255, 255, 255, .64);
    background: #081f18;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr 1fr;
    gap: 70px;
    padding-top: 76px;
    padding-bottom: 62px;
}

.brand-light {
    color: var(--white);
}

.brand-light .brand-mark {
    color: var(--green-950);
    background: var(--gold-light);
}

.brand-light .brand-copy small {
    color: var(--gold-light);
}

.footer-brand > p {
    max-width: 330px;
    margin: 23px 0;
    font-size: 13px;
}

.footer-social-title {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.social-links a {
    position: relative;
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    color: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--green-950);
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.footer-grid h3 {
    margin: 5px 0 21px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li {
    margin-bottom: 9px;
}

.footer-grid li a {
    font-size: 13px;
    transition: var(--transition);
}

.footer-grid li a:hover,
.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-contact > p {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0 0 14px;
    font-size: 12px;
}

.footer-contact > p svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.back-to-top {
    position: fixed;
    z-index: 45;
    right: 22px;
    bottom: 22px;
    color: var(--white);
    background: var(--green-900);
    border-color: var(--green-900);
    box-shadow: 0 10px 25px rgba(7, 36, 26, .2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.modal {
    position: fixed;
    z-index: 100;
    display: grid;
    visibility: hidden;
    place-items: center;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 21, 15, .78);
    backdrop-filter: blur(6px);
}

.search-dialog,
.service-dialog {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 30px), 680px);
    padding: 38px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    transform: translateY(15px);
    transition: transform var(--transition);
}

.modal.is-open .search-dialog,
.modal.is-open .service-dialog {
    transform: translateY(0);
}

.search-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.search-dialog h2,
.service-dialog h2 {
    margin: 6px 0 24px;
    color: var(--green-950);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
}

.search-field {
    display: flex;
    height: 62px;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    color: var(--green-800);
    background: var(--paper);
    border: 1px solid var(--line);
}

.search-field:focus-within {
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(35, 104, 77, .1);
}

.search-field input {
    width: 100%;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.search-hint {
    width: 100%;
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.search-suggestions button {
    padding: 7px 12px;
    color: var(--green-800);
    background: var(--green-100);
    border: 0;
    border-radius: 20px;
    font-size: 11px;
}

.search-suggestions button:hover {
    color: var(--white);
    background: var(--green-800);
}

.search-result-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}

.service-dialog {
    max-width: 560px;
    padding: 48px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
}

.dialog-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 17px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
}

.dialog-icon svg {
    width: 28px;
    height: 28px;
}

.service-dialog h2 {
    margin-bottom: 13px;
}

.service-dialog > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.dialog-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 28px 0;
    border: 1px solid var(--line);
}

.dialog-steps span {
    padding: 15px 8px;
    color: var(--muted);
    border-right: 1px solid var(--line);
    font-size: 10px;
}

.dialog-steps span:last-child {
    border: 0;
}

.dialog-steps strong {
    display: block;
    color: var(--green-800);
    font-family: var(--font-display);
    font-size: 18px;
}

.toast {
    position: fixed;
    z-index: 120;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 17px;
    color: var(--white);
    background: var(--green-950);
    box-shadow: 0 16px 38px rgba(6, 28, 20, .25);
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: var(--transition);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-copy strong,
.hero h1,
.quick-heading h2,
.profile-copy h2,
.section-heading h2,
.split-heading h2,
.agenda-intro h2,
.contact-copy h2,
.vision-box p,
.trust-item strong,
.service-number,
.service-card h3,
.potential-content h3,
.news-content h3,
.news-row h3,
.news-date strong,
.agenda-date span,
.agenda-card h3,
.footer-grid h3,
.search-dialog h2,
.service-dialog h2,
.dialog-steps strong {
    font-weight: 400;
}

.compact-public-hero {
    min-height: 430px;
}

.public-news-section,
.public-article {
    background: var(--paper);
}

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

.public-news-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 45px rgba(19, 55, 41, .07);
}

.public-news-card > a img {
    height: 220px;
    object-fit: cover;
}

.public-news-card > div {
    padding: 28px;
}

.public-news-card small {
    display: block;
    margin: 10px 0;
    color: var(--muted);
}

.public-news-card h2 {
    margin: 0 0 12px;
    font-size: 27px;
    line-height: 1.16;
}

.public-news-card p {
    color: var(--muted);
}

.public-empty {
    grid-column: 1 / -1;
    padding: 70px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
}

.public-empty svg {
    width: 42px;
    height: 42px;
    color: var(--green-700);
}

.public-pagination {
    margin-top: 35px;
}

.public-article-shell {
    max-width: 880px;
}

.public-article header {
    margin: 45px 0 34px;
}

.public-article header h1 {
    margin: 14px 0 18px;
    color: var(--green-950);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
}

.public-article header > p {
    color: var(--muted);
    font-size: 20px;
}

.public-article-image {
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
}

.public-article-body {
    padding: 42px 0;
    color: #35443d;
    font-size: 18px;
    line-height: 1.9;
}

.related-news {
    background: var(--white);
}

/*
|--------------------------------------------------------------------------
| Identitas visual Desa Wisata
|--------------------------------------------------------------------------
*/

.utility-bar {
    background: linear-gradient(90deg, #06271f, var(--green-900));
    border-bottom: 1px solid rgba(242, 210, 150, .14);
}

.utility-inner > p svg,
.utility-links svg {
    color: var(--gold-light);
}

.site-header {
    background: rgba(255, 253, 247, .93);
    border-bottom-color: rgba(16, 69, 54, .1);
    box-shadow: 0 8px 30px rgba(8, 46, 37, .045);
}

.brand-mark {
    padding: 3px;
    background: #fffdf8;
    border-color: rgba(8, 46, 37, .15);
    border-radius: 14px 14px 14px 5px;
    box-shadow: 0 9px 22px rgba(8, 46, 37, .15);
}

.brand-copy strong {
    color: var(--green-950);
    font-size: 20px;
}

.brand-copy small {
    color: var(--clay);
}

.desktop-nav > a::after,
.nav-dropdown-trigger::after {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--clay));
    border-radius: 99px;
}

.nav-dropdown-menu,
.mobile-menu {
    background: #fffdf8;
}

.nav-dropdown-menu {
    border-radius: 16px;
}

.button {
    min-height: 50px;
    padding-inline: 23px;
    border-radius: 999px;
}

.button-compact {
    min-height: 42px;
    padding-inline: 18px;
}

.button-primary {
    background: linear-gradient(135deg, var(--green-800), var(--green-950));
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--green-700), var(--green-900));
}

.button-accent {
    background: linear-gradient(135deg, #f7daa1, var(--sand));
    box-shadow: 0 15px 35px rgba(4, 29, 21, .28);
}

.hero {
    min-height: 720px;
}

.hero-inner {
    min-height: 720px;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(4, 35, 27, .96) 0%, rgba(8, 57, 43, .8) 40%, rgba(13, 54, 42, .18) 76%, transparent 100%),
        linear-gradient(0deg, rgba(5, 37, 28, .7), transparent 55%),
        linear-gradient(145deg, rgba(189, 103, 71, .12), transparent 48%);
}

.hero-pattern {
    opacity: .13;
    background-image:
        radial-gradient(circle at center, rgba(242, 210, 150, .75) .7px, transparent .8px),
        linear-gradient(135deg, transparent 49%, rgba(255, 255, 255, .16) 50%, transparent 51%);
    background-size: 15px 15px, 72px 72px;
}

.eyebrow-light {
    padding: 8px 13px;
    color: #f8dfac;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    backdrop-filter: blur(9px);
}

.hero h1 {
    max-width: 720px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .17);
}

.hero h1 em {
    color: #f6d89c;
    text-decoration: underline;
    text-decoration-color: rgba(189, 103, 71, .72);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.hero-copy > p {
    color: rgba(255, 255, 255, .82);
}

.hero-note {
    padding: 16px 19px;
    background: rgba(5, 43, 32, .76);
    border-color: rgba(242, 210, 150, .28);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(3, 24, 17, .2);
}

.hero-note-icon {
    color: var(--green-950);
    background: var(--gold-light);
}

.quick-panel {
    background: #fffdf8;
    border-color: rgba(16, 69, 54, .1);
    border-radius: 24px;
}

.quick-heading {
    background:
        radial-gradient(circle at 10% 10%, rgba(242, 210, 150, .2), transparent 38%),
        linear-gradient(145deg, var(--green-800), var(--green-950));
}

.quick-item:hover {
    background: linear-gradient(145deg, #fbf8ef, #eef5f0);
}

.quick-icon {
    border-radius: 14px 14px 14px 5px;
}

.profile-section {
    position: relative;
    background:
        radial-gradient(circle at 92% 15%, rgba(79, 133, 136, .11), transparent 23%),
        linear-gradient(180deg, #f7f3ea, var(--sand-light));
}

.profile-visual::before {
    background: rgba(225, 238, 230, .6);
    border-color: rgba(44, 122, 94, .24);
    border-radius: 28px 8px 28px 8px;
}

.profile-visual img {
    border-radius: 28px 8px 28px 8px;
}

.profile-badge {
    color: var(--green-950);
    background: linear-gradient(135deg, #f5dda9, var(--sand));
    border: 1px solid rgba(130, 86, 24, .1);
    border-radius: 18px 18px 18px 5px;
}

.vision-box {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(44, 122, 94, .13);
    border-left: 4px solid var(--clay);
    border-radius: 5px 18px 18px 5px;
}

.section-kicker {
    color: var(--clay);
}

.section-kicker::before {
    width: 24px;
    height: 1px;
    content: "";
    background: currentColor;
}

.quick-heading .section-kicker::before,
.section-kicker-light::before,
.agenda-intro .section-kicker::before,
.territory-heading .section-kicker::before {
    background: var(--gold-light);
}

.trust-strip {
    background:
        radial-gradient(circle at 15% 0, rgba(242, 210, 150, .13), transparent 27%),
        linear-gradient(115deg, var(--green-950), var(--green-800));
}

.trust-item strong {
    color: #f4d89f;
}

.services-section {
    background:
        radial-gradient(circle at 5% 5%, rgba(79, 133, 136, .09), transparent 23%),
        linear-gradient(rgba(255, 253, 248, .95), rgba(255, 253, 248, .95)),
        radial-gradient(var(--green-800) .65px, transparent .65px);
}

.services-grid {
    gap: 18px;
    border: 0;
}

.service-card {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(16, 69, 54, .11);
    border-radius: 22px 22px 22px 7px;
    box-shadow: 0 13px 38px rgba(16, 69, 54, .055);
}

.service-card::after {
    border-color: rgba(189, 103, 71, .16);
}

.service-icon {
    border-radius: 16px 16px 16px 5px;
}

.service-card-featured {
    background:
        radial-gradient(circle at 100% 100%, rgba(242, 210, 150, .15), transparent 34%),
        linear-gradient(145deg, var(--green-800), var(--green-950));
}

.news-section,
.public-news-section,
.public-article {
    background:
        radial-gradient(circle at 95% 5%, rgba(189, 103, 71, .08), transparent 21%),
        var(--paper);
}

.featured-news,
.public-news-card {
    overflow: hidden;
    border: 1px solid rgba(16, 69, 54, .09);
    border-radius: 24px 24px 24px 8px;
    box-shadow: 0 20px 55px rgba(15, 58, 43, .09);
}

.news-image span {
    background: #f4d79d;
    border-radius: 999px;
}

.news-date {
    background: #fffdf8;
    border-radius: 15px 15px 15px 5px;
}

.row-arrow {
    background: rgba(255, 255, 255, .6);
}

.agenda-section {
    background:
        radial-gradient(circle at 8% 10%, rgba(242, 210, 150, .12), transparent 25%),
        radial-gradient(circle at 92% 100%, rgba(79, 133, 136, .25), transparent 30%),
        linear-gradient(135deg, #0a382c, var(--green-900));
}

.agenda-card {
    background: rgba(255, 255, 255, .075);
    border-color: rgba(242, 210, 150, .15);
    border-radius: 19px 19px 19px 6px;
    backdrop-filter: blur(8px);
}

.agenda-date {
    background: linear-gradient(145deg, #f6dda8, var(--sand));
    border-radius: 15px 15px 15px 5px;
}

.gallery-section {
    background: #fffdf8;
}

.gallery-item {
    border-radius: 24px 24px 24px 7px;
    box-shadow: 0 14px 40px rgba(11, 55, 41, .09);
}

.gallery-item figcaption {
    padding: 7px 11px;
    background: rgba(6, 39, 29, .68);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.contact-section {
    background: #fffdf8;
}

.contact-panel {
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, .32), transparent 28%),
        linear-gradient(135deg, #f2dba9, #e7bd71);
    border: 1px solid rgba(132, 88, 25, .1);
    border-radius: 30px 30px 30px 9px;
    box-shadow: 0 24px 65px rgba(109, 77, 29, .12);
}

.site-footer {
    background:
        radial-gradient(circle at 8% 0, rgba(242, 210, 150, .1), transparent 22%),
        linear-gradient(135deg, #061f19, #0b3328);
}

.brand-light .brand-copy strong {
    color: var(--white);
}

.social-links a {
    border-radius: 13px 13px 13px 4px;
}

.social-links a:hover {
    background: var(--clay);
    border-color: var(--clay);
}

.profile-page-hero-shade {
    background:
        linear-gradient(90deg, rgba(4, 35, 27, .96), rgba(8, 57, 43, .72) 52%, rgba(8, 46, 37, .18)),
        linear-gradient(0deg, rgba(5, 37, 28, .62), transparent 58%);
}

.profile-page-icon {
    background: linear-gradient(145deg, #f6dda8, var(--sand));
    border-radius: 18px 18px 18px 5px;
}

.profile-detail-image img,
.character-item,
.vision-statement,
.mission-list,
.data-stat,
.chart-panel,
.data-territory,
.territory-item,
.public-article-image {
    border-radius: 22px 22px 22px 7px;
}

.data-dashboard {
    background:
        radial-gradient(circle at 92% 5%, rgba(79, 133, 136, .1), transparent 24%),
        var(--paper);
}

.data-stat,
.chart-panel {
    border-color: rgba(16, 69, 54, .1);
    box-shadow: 0 12px 35px rgba(16, 69, 54, .045);
}

.data-territory {
    background:
        radial-gradient(circle at 100% 0, rgba(242, 210, 150, .12), transparent 32%),
        linear-gradient(135deg, var(--green-900), var(--green-800));
}

.public-article-body {
    color: #3e5047;
}

@keyframes heroScale {
    from { transform: scale(1.045); }
    to { transform: scale(1); }
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

@media (max-width: 1060px) {
    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav > a,
    .nav-dropdown-trigger {
        font-size: 12px;
    }

    .header-cta {
        display: none;
    }

    .quick-panel {
        grid-template-columns: 190px 1fr;
    }

    .data-summary-grid,
    .territory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-item:nth-child(2) {
        border-right: 0;
    }

    .quick-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .profile-grid {
        gap: 55px;
    }

    .profile-visual img {
        height: 500px;
    }

    .footer-grid {
        gap: 38px;
    }
}

@media (max-width: 860px) {
    .public-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .utility-links span {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .menu-trigger {
        display: inline-grid;
    }

    .hero,
    .hero-inner {
        min-height: 650px;
    }

    .hero h1 {
        max-width: 590px;
    }

    .hero-note {
        display: none;
    }

    .profile-detail-grid {
        grid-template-columns: 1fr;
    }

    .profile-detail-image {
        width: calc(100% - 25px);
        max-width: 650px;
    }

    .village-character {
        grid-template-columns: 1fr;
        margin-top: 65px;
    }

    .profile-page-navigation-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 30px 0;
    }

    .profile-page-links {
        justify-content: flex-start;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .chart-panel-wide {
        grid-column: auto;
    }

    .quick-access {
        margin-top: -28px;
    }

    .quick-panel {
        grid-template-columns: 1fr;
    }

    .greeting-grid {
        grid-template-columns: 1fr;
    }

    .greeting-official {
        min-height: 420px;
    }

    .greeting-copy {
        min-height: 0;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .vision-statement {
        min-height: 390px;
    }

    .organization-team {
        grid-template-columns: repeat(2, 1fr);
    }

    .organization-connector-wide::after {
        width: 62vw;
    }

    .quick-heading {
        min-height: 110px;
    }

    .profile-grid,
    .news-layout,
    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .profile-grid {
        gap: 65px;
    }

    .profile-visual {
        width: calc(100% - 35px);
        max-width: 620px;
    }

    .profile-badge {
        right: -35px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 18px;
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-heading {
        display: block;
    }

    .split-heading > p {
        max-width: 570px;
    }

    .potential-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 400px 300px 300px;
    }

    .potential-card-large {
        grid-row: auto;
    }

    .news-layout {
        gap: 36px;
    }

    .agenda-grid {
        gap: 45px;
    }

    .gallery-grid {
        grid-auto-rows: 310px;
        grid-template-columns: 1.2fr .8fr;
    }

    .gallery-item:last-child {
        grid-column: 1 / 3;
    }

    .contact-panel {
        align-items: flex-start;
        flex-direction: column;
        padding: 45px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr .7fr;
    }
}

@media (max-width: 600px) {
    .public-news-grid {
        grid-template-columns: 1fr;
    }

    .public-article header h1 {
        font-size: 39px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .utility-inner {
        min-height: 34px;
    }

    .utility-inner p {
        font-size: 10px;
    }

    .utility-links a {
        font-size: 0;
    }

    .utility-links a svg {
        font-size: 14px;
    }

    .header-inner {
        min-height: 68px;
        gap: 12px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .brand-mark svg {
        width: 21px;
        height: 21px;
    }

    .brand-copy strong {
        font-size: 16px;
    }

    .brand-copy small {
        font-size: 7px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions .icon-button {
        width: 38px;
        height: 38px;
    }

    .hero,
    .hero-inner {
        min-height: 630px;
    }

    .hero-media {
        background-position: 61% center;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(5, 27, 19, .9), rgba(5, 27, 19, .44)), linear-gradient(0deg, rgba(4, 22, 16, .6), transparent 55%);
    }

    .profile-page-hero,
    .profile-page-hero-inner {
        min-height: 420px;
    }

    .profile-page-heading {
        padding-left: 0;
    }

    .profile-page-icon {
        position: static;
        width: 52px;
        height: 52px;
        margin-bottom: 17px;
    }

    .breadcrumb {
        margin-bottom: 25px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .profile-page-heading h1 {
        font-size: 47px;
    }

    .profile-page-heading > p {
        font-size: 15px;
    }

    .profile-detail-image {
        width: calc(100% - 15px);
        padding: 0 15px 18px 0;
    }

    .profile-detail-image img {
        height: 380px;
    }

    .profile-detail-caption {
        max-width: 225px;
        padding: 13px 15px;
    }

    .profile-detail-copy h2 {
        font-size: 39px;
    }

    .profile-detail-copy .lead {
        font-size: 17px;
    }

    .character-item {
        min-height: 225px;
        padding: 28px;
    }

    .profile-page-links {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-page-links a {
        text-align: center;
    }

    .data-dashboard {
        padding: 58px 0 75px;
    }

    .data-notice {
        padding: 15px;
    }

    .data-toolbar,
    .territory-heading {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .data-toolbar h2,
    .territory-heading h2 {
        font-size: 33px;
    }

    .year-filter {
        width: 100%;
    }

    .data-summary-grid,
    .territory-grid {
        grid-template-columns: 1fr;
    }

    .data-stat {
        min-height: 145px;
    }

    .data-territory {
        padding: 25px 20px;
    }

    .territory-totals {
        width: 100%;
    }

    .territory-totals > span {
        flex: 1;
    }

    .chart-panel {
        padding: 22px 17px;
    }

    .chart-heading h3 {
        font-size: 21px;
    }

    .chart-wrap,
    .chart-wrap-doughnut,
    .chart-wrap-radar {
        height: 285px;
    }

    .data-footnote {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .data-footnote > span {
        width: 100%;
        padding-left: 28px;
    }

    .hero-inner {
        align-items: flex-end;
        padding-bottom: 98px;
    }

    .hero h1 {
        margin-top: 18px;
        font-size: 49px;
    }

    .hero-copy > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-top: 27px;
    }

    .scroll-cue {
        display: none;
    }

    .quick-access {
        margin-top: -18px;
    }

    .quick-heading {
        min-height: 94px;
        padding: 22px;
    }

    .quick-heading h2 {
        font-size: 22px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .greeting-official {
        min-height: 390px;
        padding: 30px 26px;
    }

    .official-emblem {
        top: 28px;
        left: 26px;
        width: 54px;
        height: 54px;
    }

    .greeting-official h2 {
        font-size: 39px;
    }

    .greeting-copy {
        padding: 45px 27px 40px;
    }

    .greeting-quote {
        top: 24px;
        right: 24px;
    }

    .greeting-quote svg {
        width: 52px;
        height: 52px;
    }

    .greeting-copy blockquote {
        font-size: 22px;
    }

    .vision-statement,
    .mission-list {
        padding: 35px 27px;
    }

    .vision-statement {
        min-height: 360px;
    }

    .vision-statement blockquote {
        font-size: 31px;
    }

    .mission-list li {
        grid-template-columns: 34px 1fr;
    }

    .organization-team {
        grid-template-columns: 1fr;
    }

    .organization-connector-wide::after {
        display: none;
    }

    .organization-role {
        min-height: 135px;
    }

    .organization-field {
        grid-template-columns: auto 1fr;
        padding: 20px;
    }

    .organization-field p {
        grid-column: 1 / 3;
        justify-self: start;
        text-align: left;
    }

    .quick-item,
    .quick-item:nth-child(2) {
        min-height: 94px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 78px 0;
    }

    .profile-visual {
        width: calc(100% - 20px);
        padding: 0 0 18px 18px;
    }

    .profile-visual img {
        height: 390px;
    }

    .profile-badge {
        right: -20px;
        width: 188px;
        padding: 13px;
    }

    .profile-copy h2,
    .section-heading h2,
    .split-heading h2,
    .agenda-intro h2,
    .contact-copy h2 {
        font-size: 38px;
    }

    .profile-copy .lead {
        font-size: 17px;
    }

    .trust-strip {
        padding: 32px 0;
    }

    .trust-item {
        min-height: 64px;
        justify-content: flex-start;
        padding-left: 10px;
    }

    .trust-item strong {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 290px;
        padding: 31px 27px;
    }

    .potential-grid {
        grid-template-rows: repeat(3, 360px);
    }

    .potential-card-large .potential-content {
        padding: 30px;
    }

    .potential-card-large h3 {
        font-size: 30px;
    }

    .potential-card-large .potential-icon {
        top: 28px;
        right: 28px;
    }

    .heading-with-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-image {
        height: 270px;
    }

    .news-content {
        padding: 25px;
    }

    .news-content h3 {
        font-size: 22px;
    }

    .news-row {
        grid-template-columns: 58px 1fr;
        gap: 14px;
        padding: 17px 0;
    }

    .row-arrow {
        display: none;
    }

    .agenda-section {
        padding: 75px 0;
    }

    .agenda-card {
        align-items: flex-start;
        grid-template-columns: 70px 1fr;
        gap: 16px;
        padding: 16px;
    }

    .agenda-date {
        height: 73px;
    }

    .agenda-date span {
        font-size: 29px;
    }

    .agenda-action {
        display: none;
    }

    .agenda-card p {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .gallery-grid {
        grid-auto-rows: 280px;
        grid-template-columns: 1fr;
    }

    .gallery-item:last-child {
        grid-column: auto;
    }

    .contact-section {
        padding-bottom: 70px;
    }

    .contact-panel {
        width: 100%;
        padding: 38px 28px;
    }

    .contact-actions,
    .contact-actions .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
        padding-top: 58px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / 3;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        padding: 16px 0;
    }

    .search-dialog,
    .service-dialog {
        padding: 28px 22px;
    }

    .service-dialog {
        padding-top: 44px;
    }

    .dialog-steps {
        grid-template-columns: 1fr;
    }

    .dialog-steps span {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .toast {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
