:root {
  --green-950: #07413D;
  --green-900: #0B5D57;
  --green-800: #0D6B64;
  --green-700: #0F766E;
  --green-600: #15958B;
  --green-100: #FFF3C4;
  --green-50: #FFFBEA;
  --gold: #F3D77A;
  --gold-dark: #D2B85E;
  --ink: #17312E;
  --muted: #607773;
  --line: #DDE9E6;
  --white: #fff;
  --surface: #F5FAF9;
  --shadow: 0 18px 55px rgba(7, 71, 53, .12);
  --shadow-sm: 0 10px 30px rgba(7, 71, 53, .08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1200px;
  --header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 10000;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: var(--green-950);
  color: rgba(255,255,255,.76);
  transition: opacity .8s ease, visibility .8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__mark {
  width: 82px;
  height: 94px;
  animation: preloaderFloat 1.5s ease-in-out infinite;
}
.preloader__mark img { width: 100%; height: 100%; }
.preloader p { margin: 0; font-size: .83rem; letter-spacing: .12em; text-transform: uppercase; }
.preloader__bar { width: 180px; height: 3px; overflow: hidden; border-radius: 20px; background: rgba(255,255,255,.16); }
.preloader__bar span { display: block; height: 100%; width: 45%; background: var(--gold); animation: loading 2.2s infinite ease-in-out; }
@keyframes preloaderFloat { 50% { transform: translateY(-6px); } }
@keyframes loading { from { transform: translateX(-100%); } to { transform: translateX(330%); } }

.topbar { background: var(--green-950); color: rgba(255,255,255,.82); font-size: .78rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 24px; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--gold); }

.welcome-marquee {
  position: relative;
  z-index: 1001;
  overflow: hidden;
  color: #fff;
  background: #0F766E;
}
.welcome-marquee__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: welcomeMarquee 30s linear infinite;
}
.welcome-marquee__track span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 34px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .035em;
  white-space: nowrap;
}
@keyframes welcomeMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(7,71,53,.08); }
.header__inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 54px; height: 62px; object-fit: contain; }
.brand span { display: grid; line-height: 1.2; }
.brand strong { font-size: 1.08rem; color: var(--green-900); letter-spacing: -.02em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav > a, .nav-dropdown > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #304844;
  font-size: .9rem;
  font-weight: 650;
}
.desktop-nav > a::after, .nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--gold);
  transition: width .25s ease;
}
.desktop-nav > a:hover::after, .desktop-nav > a.active::after, .nav-dropdown:hover > button::after { width: 100%; }
.desktop-nav > a:hover, .desktop-nav > a.active, .nav-dropdown:hover > button { color: var(--green-700); }
.nav-dropdown { position: relative; }
.nav-dropdown button i { font-size: .65rem; transition: transform .2s; }
.nav-dropdown:hover button i { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -24px;
  width: 220px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--muted); font-size: .86rem; font-weight: 600; }
.dropdown-menu a:hover { background: var(--green-50); color: var(--green-700); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 10px; background: var(--green-900); transition: .25s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 750;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: .82rem; }
.btn--primary { color: #fff; background: var(--green-700); box-shadow: 0 10px 24px rgba(11,107,72,.2); }
.btn--primary:hover { background: var(--green-800); box-shadow: 0 14px 30px rgba(11,107,72,.28); }
.btn--accent { color: #273B37; background: var(--gold); box-shadow: 0 12px 28px rgba(245,189,47,.2); }
.btn--accent:hover { background: #F8E39A; }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); }
.btn--outline { color: var(--green-700); border-color: #9CCBC5; background: transparent; }
.btn--outline:hover { color: #fff; border-color: var(--green-700); background: var(--green-700); }
.btn--full { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--green-700);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 10px; background: var(--gold); }
.eyebrow--light { color: rgba(255,255,255,.88); }

.hero { position: relative; height: min(760px, calc(100vh - 40px)); min-height: 620px; overflow: hidden; background: var(--green-950); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 7s ease; }
.hero-slide.active > img { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,34,25,.84) 0%, rgba(4,34,25,.56) 43%, rgba(4,34,25,.16) 78%); }
.hero-overlay--green { background: linear-gradient(90deg, rgba(4,53,35,.89) 0%, rgba(5,73,46,.62) 48%, rgba(5,73,46,.15) 80%); }
.hero-overlay--dark { background: linear-gradient(90deg, rgba(10,20,16,.88) 0%, rgba(10,20,16,.55) 52%, rgba(10,20,16,.18) 80%); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-bottom: 55px; color: #fff; }
.hero-content h1, .hero-content h2 { max-width: 770px; margin: 0 0 22px; font-size: clamp(3.2rem, 6.5vw, 6.4rem); line-height: .99; letter-spacing: -.065em; font-weight: 800; }
.hero-content h2 { font-size: clamp(3rem, 6vw, 5.7rem); }
.hero-content h1 em, .hero-content h2 em { color: var(--gold); font-style: normal; }
.hero-content p { max-width: 640px; margin: 0 0 32px; color: rgba(255,255,255,.82); font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-controls { position: absolute; z-index: 3; right: 0; bottom: 45px; left: 0; display: flex; align-items: center; justify-content: flex-end; gap: 28px; pointer-events: none; }
.hero-dots, .hero-arrows { display: flex; align-items: center; gap: 10px; pointer-events: auto; }
.hero-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); transition: .25s ease; }
.hero-dots button.active { width: 28px; border-radius: 12px; background: var(--gold); }
.hero-arrows button { width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #fff; background: rgba(5,45,32,.3); backdrop-filter: blur(8px); }
.hero-arrows button:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.hero-side-label { position: absolute; z-index: 2; right: 20px; top: 50%; color: rgba(255,255,255,.48); font-size: .67rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; transform: translateY(-50%) rotate(180deg); }

.quick-services { position: relative; z-index: 4; margin-top: -38px; }
.quick-services__grid { display: grid; grid-template-columns: repeat(8, 1fr); background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.quick-services__grid a { position: relative; min-width: 0; padding: 28px 12px 25px; text-align: center; border-right: 1px solid var(--line); transition: background .22s, transform .22s; }
.quick-services__grid a:last-child { border-right: 0; }
.quick-services__grid a:hover { z-index: 1; background: var(--green-700); color: #fff; transform: translateY(-4px); }
.quick-services__grid a > span { display: grid; place-items: center; width: 50px; height: 50px; margin: 0 auto 13px; border-radius: 15px; color: var(--green-700); background: var(--green-50); font-size: 1.15rem; transition: .22s; }
.quick-services__grid a:hover > span { color: var(--ink); background: var(--gold); }
.quick-services__grid strong { display: block; margin-bottom: 4px; font-size: .83rem; }
.quick-services__grid small { display: block; color: var(--muted); font-size: .66rem; line-height: 1.4; }
.quick-services__grid a:hover small { color: rgba(255,255,255,.68); }

.section-heading { max-width: 680px; margin-bottom: 46px; }
.section-heading h2, .explore__content h2, .welcome__copy h2, .budget__content h2, .complaint__copy h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.14; letter-spacing: -.045em; }
.section-heading p, .explore__content p, .budget__content > p, .complaint__copy > p { margin: 0; color: var(--muted); }
.section-heading--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-heading--split > div { max-width: 670px; }
.section-heading--split > p { max-width: 430px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--light { color: #fff; }
.section-heading--light p { color: rgba(255,255,255,.72); }

.explore { padding-top: 130px; background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); }
.explore__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }
.explore__visual { position: relative; min-height: 590px; }
.explore__main-image { position: absolute; inset: 0 75px 60px 0; overflow: hidden; border-radius: 80px 18px 18px 18px; box-shadow: var(--shadow); }
.explore__main-image img, .explore__small-image img { width: 100%; height: 100%; object-fit: cover; }
.explore__small-image { position: absolute; right: 0; bottom: 0; width: 250px; height: 270px; overflow: hidden; border: 10px solid #fff; border-radius: 24px; box-shadow: var(--shadow); }
.floating-stat { position: absolute; top: 28px; right: 10px; display: grid; place-content: center; width: 150px; height: 150px; padding: 20px; text-align: center; border-radius: 50%; color: #fff; background: var(--green-700); box-shadow: var(--shadow); }
.floating-stat strong { max-width: 100%; font-size: 1.65rem; line-height: 1; letter-spacing: -.035em; white-space: nowrap; }
.floating-stat span { margin-top: 7px; font-size: .72rem; }
.pattern--dots { position: absolute; left: -22px; bottom: 8px; width: 110px; height: 110px; opacity: .45; background-image: radial-gradient(var(--gold) 2px, transparent 2px); background-size: 14px 14px; }
.explore__content p + p { margin-top: 16px; }
.explore__facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0 26px; }
.explore__facts > div { display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.explore__facts i { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--green-700); background: var(--green-50); }
.explore__facts span { display: grid; }
.explore__facts strong { font-size: .82rem; }
.explore__facts small { color: var(--muted); font-size: .7rem; }
.text-link, .read-more { display: inline-flex; align-items: center; gap: 9px; color: var(--green-700); font-size: .86rem; font-weight: 800; }
.text-link i, .read-more i { transition: transform .2s; }
.text-link:hover i, .read-more:hover i { transform: translateX(4px); }

.welcome { padding-bottom: 0; color: #fff; background: var(--green-900); overflow: hidden; }
.welcome__grid { display: grid; grid-template-columns: 1fr .88fr; align-items: end; gap: 70px; min-height: 620px; }
.welcome__copy { align-self: center; padding: 80px 0 105px; }
.welcome__copy blockquote { margin: 28px 0 20px; padding-left: 24px; border-left: 3px solid var(--gold); color: #fff; font-size: 1.17rem; font-weight: 650; line-height: 1.7; }
.welcome__copy > p { color: rgba(255,255,255,.7); }
.signature { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.signature__line { width: 42px; height: 2px; background: var(--gold); }
.signature div { display: grid; }
.signature small { color: rgba(255,255,255,.58); }
.welcome__portrait { position: relative; height: 620px; }
.welcome__portrait::before { content: ""; position: absolute; left: 10%; right: -16%; bottom: 0; height: 78%; border-radius: 50% 50% 0 0; background: #0D6B64; }
.welcome__portrait img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(.88); mix-blend-mode: luminosity; }
.welcome__badge { position: absolute; z-index: 2; right: 0; bottom: 38px; display: flex; align-items: center; gap: 13px; max-width: 260px; padding: 18px; border-radius: 16px; color: var(--ink); background: var(--gold); box-shadow: var(--shadow); }
.welcome__badge i { font-size: 1.35rem; }
.welcome__badge span { font-size: .78rem; font-weight: 750; line-height: 1.5; }

.map-section { background: #fff; }
.map-card { display: grid; grid-template-columns: 1.45fr .55fr; min-height: 500px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
.map-card iframe { width: 100%; height: 100%; min-height: 500px; border: 0; filter: saturate(.75) contrast(.95); }
.map-info { padding: 50px 40px; color: #fff; background: var(--green-900); }
.map-info__label { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--ink); background: var(--gold); font-size: .66rem; font-weight: 800; text-transform: uppercase; }
.map-info h3 { margin: 20px 0 12px; font-size: 1.75rem; line-height: 1.25; }
.map-info p { color: rgba(255,255,255,.66); font-size: .88rem; }
.map-info ul { display: grid; gap: 13px; margin: 24px 0 30px; padding: 0; list-style: none; }
.map-info li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: .82rem; }
.map-info li i { width: 18px; color: var(--gold); }

.government { background: var(--surface); }
.team-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 20px;
}
.team-marquee::before, .team-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}
.team-marquee::before { left: 0; background: linear-gradient(90deg, var(--surface), rgba(247,250,248,0)); }
.team-marquee::after { right: 0; background: linear-gradient(270deg, var(--surface), rgba(247,250,248,0)); }
.team-marquee__track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding-inline: 11px;
  animation: teamMarquee 28s linear infinite;
  will-change: transform;
}
.team-marquee:hover .team-marquee__track { animation-play-state: paused; }
@keyframes teamMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}
.team-card {
  flex: 0 0 310px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 14px 34px rgba(7,71,53,.14);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(7,71,53,.2); }
.team-card__image { height: 310px; overflow: hidden; background: var(--green-100); }
.team-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .5s ease; }
.team-card:hover .team-card__image img { transform: scale(1.04); }
.team-card__body { padding: 21px 22px 23px; text-align: center; }
.team-card__body h3 { margin: 0 0 5px; color: #fff; font-size: 1.12rem; }
.team-card__body p { min-height: 0; margin: 0; color: rgba(255,255,255,.76); font-size: .8rem; font-weight: 650; }
.center-action { margin-top: 34px; text-align: center; }

.population { position: relative; padding: 115px 0; overflow: hidden; }
.population__bg, .population__overlay { position: absolute; inset: 0; }
.population__bg img { width: 100%; height: 100%; object-fit: cover; }
.population__overlay { background: linear-gradient(110deg, rgba(5,54,39,.96), rgba(7,72,50,.86)); }
.population__content { position: relative; z-index: 1; }
.stat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.stat-card { padding: 28px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.stat-card i { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 24px; border-radius: 12px; color: var(--ink); background: var(--gold); }
.stat-card strong { display: block; margin-bottom: 5px; font-size: 2rem; line-height: 1; letter-spacing: -.04em; }
.stat-card span { color: rgba(255,255,255,.64); font-size: .72rem; }
.data-note { margin: 22px 0 0; color: rgba(255,255,255,.6); font-size: .72rem; }
.data-note i { margin-right: 7px; color: var(--gold); }

.budget { background: #fff; }
.budget__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 85px; }
.budget-total { display: grid; gap: 5px; margin: 28px 0; padding: 22px 24px; border-left: 4px solid var(--gold); border-radius: 0 16px 16px 0; background: var(--green-50); }
.budget-total small { color: var(--muted); font-size: .74rem; }
.budget-total strong { color: var(--green-800); font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -.04em; }
.budget-total span { color: var(--green-700); font-size: .7rem; font-weight: 650; }
.budget__dashboard { display: grid; grid-template-columns: .72fr 1.28fr; gap: 28px; padding: 35px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-sm); }
.budget-ring { --value: 72; display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(var(--green-700) calc(var(--value) * 1%), #dce8e2 0); }
.budget-ring::before { content: ""; grid-area: 1/1; width: 72%; aspect-ratio: 1; border-radius: 50%; background: var(--surface); }
.budget-ring > div { z-index: 1; grid-area: 1/1; display: grid; text-align: center; }
.budget-ring strong { color: var(--green-800); font-size: 2.25rem; line-height: 1; }
.budget-ring span { margin-top: 5px; color: var(--muted); font-size: .65rem; }
.budget-bars { display: grid; align-content: center; gap: 21px; }
.budget-label { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 7px; font-size: .72rem; }
.budget-label span { color: var(--muted); }
.budget-label strong { color: var(--green-800); }
.bar { height: 7px; overflow: hidden; border-radius: 10px; background: #dce8e2; }
.bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green-700), #25A89A); }
.budget-mini-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.budget-mini-grid > div { display: flex; align-items: center; gap: 12px; padding: 15px; border-radius: 13px; background: #fff; }
.budget-mini-grid i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: var(--green-700); background: var(--green-50); }
.budget-mini-grid span { display: grid; color: var(--muted); font-size: .62rem; }
.budget-mini-grid strong { color: var(--ink); font-size: .9rem; }

.news { background: var(--surface); }
.news-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 22px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.news-card__image { position: relative; display: block; height: 240px; overflow: hidden; }
.news-card--featured .news-card__image { height: 315px; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-card__image img { transform: scale(1.05); }
.news-card__image > span { position: absolute; left: 16px; top: 16px; padding: 7px 11px; border-radius: 999px; color: var(--ink); background: var(--gold); font-size: .65rem; font-weight: 800; }
.news-card__body { padding: 22px; }
.meta { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; color: #80918D; font-size: .67rem; }
.meta span { display: inline-flex; align-items: center; gap: 6px; }
.news-card h3 { margin: 0 0 14px; font-size: 1.02rem; line-height: 1.48; letter-spacing: -.02em; }
.news-card--featured h3 { font-size: 1.35rem; }
.news-card h3 a:hover { color: var(--green-700); }
.news-card p { margin: 0 0 17px; color: var(--muted); font-size: .82rem; }
.read-more { font-size: .74rem; }

.potential { background: #fff; }
.potential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.potential-card { position: relative; min-height: 500px; overflow: hidden; border-radius: 24px; color: #fff; }
.potential-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.potential-card:hover > img { transform: scale(1.07); }
.potential-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(4,35,25,.92) 100%); }
.potential-card__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; }
.potential-card__content > span { position: absolute; right: 24px; top: 18px; color: rgba(255,255,255,.4); font-size: 3.4rem; font-weight: 800; letter-spacing: -.08em; }
.potential-card__content > i { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 14px; color: var(--ink); background: var(--gold); font-size: 1.1rem; }
.potential-card h3 { margin: 0 0 8px; font-size: 1.5rem; }
.potential-card p { min-height: 64px; margin: 0 0 18px; color: rgba(255,255,255,.7); font-size: .8rem; }
.potential-card a { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 800; }

.tourism { position: relative; min-height: 720px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.tourism__image, .tourism__overlay { position: absolute; inset: 0; }
.tourism__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.tourism__overlay { background: linear-gradient(90deg, rgba(4,38,27,.92) 0%, rgba(4,38,27,.72) 48%, rgba(4,38,27,.18) 80%); }
.tourism__content { position: relative; z-index: 2; padding-bottom: 80px; }
.tourism__content h2 { max-width: 760px; margin: 0 0 20px; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.08; letter-spacing: -.055em; }
.tourism__content p { max-width: 660px; margin: 0 0 30px; color: rgba(255,255,255,.72); }
.tourism__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.tourism__facts { position: absolute; z-index: 3; left: 50%; bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); width: min(900px, calc(100% - 40px)); transform: translateX(-50%); border-radius: 22px 22px 0 0; color: var(--ink); background: #fff; box-shadow: var(--shadow); }
.tourism__facts div { display: grid; padding: 24px 30px; text-align: center; border-right: 1px solid var(--line); }
.tourism__facts div:last-child { border-right: 0; }
.tourism__facts strong { color: var(--green-700); font-size: 1.5rem; }
.tourism__facts span { color: var(--muted); font-size: .7rem; }

.products { background: var(--surface); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.product-card__image { position: relative; height: 260px; overflow: hidden; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__image > span { position: absolute; left: 14px; top: 14px; padding: 6px 9px; border-radius: 999px; color: var(--ink); background: var(--gold); font-size: .59rem; font-weight: 800; }
.product-card__image > button { position: absolute; right: 14px; top: 14px; display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 0; border-radius: 50%; color: var(--green-800); background: rgba(255,255,255,.9); }
.product-card__body { padding: 20px; }
.product-card__body > small { color: var(--green-700); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.product-card h3 { margin: 6px 0 18px; font-size: .98rem; }
.product-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card__bottom > strong { color: var(--green-800); font-size: .98rem; }
.product-card__bottom > strong small { color: var(--muted); font-size: .58rem; font-weight: 500; }
.product-card__bottom > a { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; color: var(--ink); background: var(--gold); }

.gallery { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border: 0; border-radius: 16px; padding: 0; background: #ddd; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .5s; }
.gallery-item span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(5,55,39,.4); opacity: 0; transition: opacity .25s; }
.gallery-item span i { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; backdrop-filter: blur(8px); }
.gallery-item:hover img { transform: scale(1.05); filter: saturate(.8); }
.gallery-item:hover span { opacity: 1; }

.complaint { padding: 110px 0; color: #fff; background: var(--green-900); }
.complaint__grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 80px; }
.complaint__copy > p { color: rgba(255,255,255,.68); }
.complaint__contact { display: grid; gap: 12px; margin-top: 30px; }
.complaint__contact a { display: flex; align-items: center; gap: 13px; }
.complaint__contact i { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 12px; color: var(--ink); background: var(--gold); }
.complaint__contact span { display: grid; }
.complaint__contact small { color: rgba(255,255,255,.55); font-size: .65rem; }
.complaint__contact strong { font-size: .82rem; }
.complaint-form { padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.07); backdrop-filter: blur(15px); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.complaint-form label { display: grid; gap: 8px; margin-bottom: 14px; color: rgba(255,255,255,.82); font-size: .72rem; font-weight: 650; }
.complaint-form input, .complaint-form select, .complaint-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; outline: none; color: #fff; background: rgba(255,255,255,.08); }
.complaint-form input, .complaint-form select { height: 48px; padding: 0 14px; }
.complaint-form textarea { resize: vertical; padding: 12px 14px; }
.complaint-form input::placeholder, .complaint-form textarea::placeholder { color: rgba(255,255,255,.38); }
.complaint-form select option { color: var(--ink); background: #fff; }
.complaint-form input:focus, .complaint-form select:focus, .complaint-form textarea:focus { border-color: var(--gold); }
.form-status { min-height: 20px; margin: 12px 0 0; color: #E6F7F3; font-size: .72rem; text-align: center; }

.footer { color: rgba(255,255,255,.7); background: #053C38; }
.footer__top { padding: 75px 0 60px; }
.footer__grid { display: grid; grid-template-columns: 1.35fr .7fr .7fr 1.1fr; gap: 50px; }
.brand--footer strong { color: #fff; }
.brand--footer small { color: rgba(255,255,255,.5); }
.footer__brand > p { max-width: 360px; margin: 20px 0; font-size: .79rem; }
.social-links { display: flex; gap: 9px; }
.social-links a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 11px; }
.social-links a:hover { color: var(--ink); border-color: var(--gold); background: var(--gold); }
.footer h3 { margin: 5px 0 22px; color: #fff; font-size: .92rem; }
.footer__links { display: grid; align-content: start; gap: 12px; }
.footer__links a { font-size: .76rem; }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold); }
.footer__contact { display: grid; align-content: start; gap: 13px; }
.footer__contact p { display: flex; gap: 11px; margin: 0; font-size: .76rem; }
.footer__contact i { width: 18px; margin-top: 5px; color: var(--gold); }
.footer__stats { border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__stats .container { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 42px; font-size: .7rem; }
.footer__stats strong { color: #fff; }
.footer__stats i { margin-right: 7px; color: var(--gold); }
.footer__bottom .container { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .68rem; }
.footer__bottom a { color: var(--gold); }

.mobile-bottom-nav { display: none; }
.back-to-top { position: fixed; z-index: 900; right: 22px; bottom: 24px; display: grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--ink); background: var(--gold); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 40px; background: rgba(2,20,14,.92); opacity: 0; visibility: hidden; transition: .25s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 16px; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.lightbox__close { position: absolute; right: 25px; top: 25px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #fff; background: transparent; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 17px; }
  .desktop-nav > a, .nav-dropdown > button { font-size: .8rem; }
  .desktop-complaint { display: none; }
  .quick-services__grid { grid-template-columns: repeat(4, 1fr); }
  .quick-services__grid a:nth-child(4) { border-right: 0; }
  .quick-services__grid a:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .explore__grid { gap: 55px; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .topbar__right { display: none; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: absolute;
    inset: 100% 0 auto 0;
    z-index: 999;
    display: grid;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(7,71,53,.1);
    transition: max-height .35s ease, padding .35s ease;
  }
  .mobile-menu.open { max-height: calc(100vh - var(--header-h)); padding-top: 12px; padding-bottom: 24px; overflow-y: auto; }
  .mobile-menu a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: .88rem; font-weight: 700; }
  .mobile-menu .mobile-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    justify-self: start;
    gap: 8px;
    min-height: 42px;
    margin-top: 12px;
    padding: 0 16px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--green-700);
    box-shadow: 0 10px 22px rgba(11,107,72,.2);
    font-size: .78rem;
    font-weight: 750;
  }
  .hero { min-height: 650px; height: 76vh; }
  .hero-content h1, .hero-content h2 { max-width: 620px; }
  .hero-side-label { display: none; }
  .quick-services { margin-top: -25px; }
  .explore__grid, .welcome__grid, .budget__grid, .complaint__grid { grid-template-columns: 1fr; }
  .explore__grid { gap: 55px; }
  .explore__visual { min-height: 520px; }
  .welcome__grid { gap: 0; }
  .welcome__copy { padding-bottom: 40px; }
  .welcome__portrait { max-width: 600px; width: 100%; margin-inline: auto; }
  .map-card { grid-template-columns: 1fr; }
  .map-card iframe { min-height: 420px; }
  .budget__grid { gap: 45px; }
  .budget__dashboard { max-width: 720px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: 1 / -1; }
  .potential-grid { grid-template-columns: 1fr; }
  .potential-card { min-height: 430px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.3fr .7fr .7fr; }
}

@media (max-width: 680px) {
  :root { --radius-xl: 22px; --radius-lg: 17px; }
  html { scroll-padding-top: 82px; }
  body { padding-bottom: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .topbar { display: none; }
  .brand img { width: 43px; height: 50px; }
  .brand strong { font-size: .94rem; }
  .brand small { font-size: .58rem; }
  .welcome-marquee__track { animation-duration: 23s; }
  .welcome-marquee__track span { min-height: 32px; padding-inline: 24px; font-size: .66rem; }
  .hero { min-height: 520px; height: 590px; }
  .hero-slide > img { object-position: 58% center; }
  .hero-overlay, .hero-overlay--green, .hero-overlay--dark { background: linear-gradient(180deg, rgba(4,34,25,.24) 0%, rgba(4,34,25,.55) 42%, rgba(4,34,25,.95) 100%); }
  .hero-content { justify-content: center; padding-top: 24px; padding-bottom: 54px; }
  .hero-content h1, .hero-content h2 { margin-bottom: 14px; font-size: clamp(2rem, 9.3vw, 2.75rem); line-height: 1.04; letter-spacing: -.055em; }
  .hero-content p { margin-bottom: 20px; font-size: .82rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; min-width: 0; padding-inline: 13px; font-size: .72rem; }
  .hero-controls { bottom: 20px; justify-content: space-between; }
  .hero-arrows button { width: 38px; height: 38px; }
  .quick-services { margin-top: 0; padding: 20px 0 0; background: #fff; }
  .quick-services__grid { grid-template-columns: repeat(4, 1fr); border-radius: 16px; box-shadow: var(--shadow-sm); }
  .quick-services__grid a { padding: 17px 6px 15px; }
  .quick-services__grid a > span { width: 40px; height: 40px; margin-bottom: 8px; border-radius: 11px; font-size: .95rem; }
  .quick-services__grid strong { font-size: .64rem; }
  .quick-services__grid small { display: none; }
  .explore { padding-top: 80px; }
  .explore__visual { min-height: 390px; }
  .explore__main-image { inset: 0 35px 42px 0; border-radius: 52px 16px 16px 16px; }
  .explore__small-image { width: 155px; height: 170px; border-width: 6px; }
  .floating-stat { top: 18px; right: 0; width: 105px; height: 105px; }
  .floating-stat strong { font-size: 1.12rem; letter-spacing: -.04em; }
  .floating-stat span { font-size: .56rem; }
  .pattern--dots { display: none; }
  .section-heading h2, .explore__content h2, .welcome__copy h2, .budget__content h2, .complaint__copy h2 { font-size: 2rem; }
  .section-heading--split { display: block; }
  .section-heading--split > p, .section-heading--split > a { margin-top: 18px; }
  .explore__facts { grid-template-columns: 1fr; }
  .welcome__copy { padding: 70px 0 28px; }
  .welcome__copy blockquote { font-size: .96rem; }
  .welcome__portrait { height: 470px; }
  .welcome__badge { right: 5px; max-width: 220px; }
  .map-card iframe { min-height: 330px; }
  .map-info { padding: 32px 24px; }
  .team-marquee::before, .team-marquee::after { width: 34px; }
  .team-marquee__track { gap: 14px; padding-inline: 7px; animation-name: teamMarqueeMobile; animation-duration: 22s; }
  @keyframes teamMarqueeMobile {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 7px)); }
  }
  .team-card { flex-basis: min(76vw, 270px); border-radius: 17px; }
  .team-card__image { height: 285px; }
  .team-card__body { padding: 18px 18px 20px; }
  .team-card__body h3 { font-size: 1rem; }
  .population { padding: 80px 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 22px 15px; }
  .stat-card i { margin-bottom: 18px; }
  .stat-card strong { font-size: 1.55rem; }
  .budget__dashboard { grid-template-columns: 1fr; padding: 22px; }
  .budget-ring { width: 200px; margin-inline: auto; }
  .budget-mini-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: auto; }
  .news-card--featured .news-card__image, .news-card__image { height: 245px; }
  .potential-card { min-height: 410px; }
  .tourism { min-height: 720px; padding-bottom: 120px; align-items: flex-end; }
  .tourism__overlay { background: linear-gradient(180deg, rgba(4,38,27,.15), rgba(4,38,27,.95) 68%); }
  .tourism__content { padding-bottom: 30px; }
  .tourism__content h2 { font-size: 2.55rem; }
  .tourism__actions .btn { flex: 1; min-width: 0; padding-inline: 12px; font-size: .7rem; }
  .tourism__facts { grid-template-columns: repeat(3, 1fr); width: calc(100% - 28px); }
  .tourism__facts div { padding: 17px 8px; }
  .tourism__facts strong { font-size: 1rem; }
  .tourism__facts span { font-size: .52rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__image { height: 190px; }
  .product-card__body { padding: 15px; }
  .product-card h3 { min-height: 42px; font-size: .82rem; }
  .product-card__bottom { align-items: flex-end; }
  .product-card__bottom > strong { font-size: .78rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 155px; gap: 9px; }
  .gallery-item--wide { grid-column: span 2; }
  .complaint { padding: 78px 0; }
  .complaint__grid { gap: 40px; }
  .complaint-form { padding: 23px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__top { padding: 60px 0 45px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer__brand, .footer__contact { grid-column: 1 / -1; }
  .footer__stats .container { flex-wrap: wrap; gap: 8px 20px; padding-block: 14px; }
  .footer__bottom .container { display: grid; justify-content: center; text-align: center; padding: 18px 0; }
  .footer__bottom p { margin: 0; }
  .mobile-bottom-nav { position: fixed; z-index: 1200; right: 10px; bottom: 10px; left: 10px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 8px 6px calc(8px + env(safe-area-inset-bottom)); border: 1px solid rgba(220,232,226,.9); border-radius: 18px; background: rgba(255,255,255,.95); box-shadow: 0 15px 40px rgba(6,59,46,.18); backdrop-filter: blur(18px); }
  .mobile-bottom-nav a { display: grid; place-items: center; gap: 4px; color: #748783; font-size: .55rem; }
  .mobile-bottom-nav i { font-size: 1rem; }
  .mobile-bottom-nav a.active { color: var(--green-700); }
  .back-to-top { right: 16px; bottom: 94px; }
}

@media (max-width: 390px) {
  .hero-actions .btn { font-size: .66rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__image { height: 250px; }
  .quick-services__grid { grid-template-columns: repeat(2, 1fr); }
  .quick-services__grid a { border-bottom: 1px solid var(--line); }
  .quick-services__grid a:nth-child(even) { border-right: 0; }
}

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


/* Multi-page extension */
body.home .welcome-marquee { position: sticky; top: 0; }
body.home .site-header { top: 34px; }
.team-marquee::before, .team-marquee::after { display: none !important; content: none !important; }
.nav-dropdown.active > button, .nav-dropdown.active > button i { color: var(--green-700); }
.nav-dropdown.active > button::after { width: 100%; }

.page-hero { position: relative; min-height: 430px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--green-950); }
.page-hero > img, .page-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero > img { object-fit: cover; }
.page-hero__overlay { background: linear-gradient(90deg, rgba(4,38,27,.92), rgba(4,38,27,.57) 55%, rgba(4,38,27,.26)); }
.page-hero__content { position: relative; z-index: 2; padding: 100px 0 70px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; color: rgba(255,255,255,.7); font-size: .72rem; }
.breadcrumb i { font-size: .55rem; }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { max-width: 850px; margin: 0 0 15px; font-size: clamp(2.8rem,5vw,5.4rem); line-height: 1.02; letter-spacing: -.06em; }
.page-hero p { max-width: 690px; margin: 0; color: rgba(255,255,255,.78); }
.inner-section { padding-top: 100px; }
.alt-section { background: var(--surface); }
.detail-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.detail-split--reverse .prose { order: 1; }
.detail-split--reverse .detail-media { order: 2; }
.detail-media { position: relative; min-height: 510px; }
.detail-media > img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; border-radius: 28px; }
.media-badge { position: absolute; right: -24px; bottom: 28px; display: grid; padding: 19px 24px; border-radius: 15px; color: #fff; background: var(--green-700); box-shadow: var(--shadow); }
.media-badge strong { font-size: 1rem; }
.media-badge span { color: rgba(255,255,255,.7); font-size: .65rem; }
.prose h2, .article-prose h2 { margin: 0 0 22px; font-size: clamp(2rem,3.6vw,3.5rem); line-height: 1.13; letter-spacing: -.045em; }
.prose p, .article-prose p { color: var(--muted); }
.info-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 30px 0; }
.info-list > div, .visit-info > div { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; }
.info-list i, .visit-info i { color: var(--green-700); }
.info-list span, .visit-info span { display: grid; }
.info-list small, .visit-info small { color: var(--muted); font-size: .58rem; }
.info-list strong, .visit-info strong { font-size: .73rem; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-panel { padding: 42px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.feature-panel > i { display: grid; place-items: center; width: 55px; height: 55px; margin-bottom: 25px; border-radius: 16px; color: var(--ink); background: var(--gold); }
.feature-panel > span { color: var(--green-700); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.feature-panel h3 { margin: 10px 0 16px; font-size: 1.45rem; line-height: 1.3; }
.feature-panel p { color: var(--muted); }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; color: var(--muted); }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; color: #fff; background: var(--green-700); font-size: .6rem; font-weight: 900; }
.timeline { position: relative; display: grid; gap: 22px; max-width: 900px; margin: 45px auto 0; }
.timeline::before { content: ""; position: absolute; left: 59px; top: 15px; bottom: 15px; width: 2px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 120px 1fr; align-items: start; }
.timeline-item > span { position: relative; z-index: 2; display: grid; place-items: center; width: 78px; min-height: 42px; border-radius: 999px; color: #fff; background: var(--green-700); font-weight: 800; }
.timeline-item > div { padding: 4px 0 28px; }
.timeline-item h3 { margin: 0 0 5px; }
.timeline-item p { margin: 0; color: var(--muted); }
.boundary-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.boundary-card { display: grid; gap: 8px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.boundary-card small { color: var(--green-700); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.boundary-card strong { line-height: 1.45; }
.leader-message { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 80px; }
.leader-message__photo { position: sticky; top: 130px; }
.leader-message__photo > img { width: 100%; height: 580px; object-fit: cover; border-radius: 28px; }
.leader-message__photo > div { display: grid; width: calc(100% - 50px); margin: -40px auto 0; position: relative; padding: 18px 22px; border-radius: 15px; color: #fff; background: var(--green-700); }
.leader-message__photo span { color: rgba(255,255,255,.7); font-size: .68rem; }
.article-prose { font-size: .98rem; }
.article-prose blockquote { margin: 34px 0; padding: 28px 30px; border-left: 4px solid var(--gold); border-radius: 0 18px 18px 0; color: var(--green-900); background: var(--green-50); font-size: 1.1rem; font-weight: 650; }
.article-sign { display: grid; justify-content: end; margin-top: 45px; text-align: center; }
.article-sign span, .article-sign small { color: var(--muted); font-size: .7rem; }
.article-sign strong { margin: 36px 0 2px; font-size: 1.1rem; }
.icon-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.icon-feature { padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.icon-feature i { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 20px; border-radius: 14px; color: var(--ink); background: var(--gold); }
.icon-feature h3 { margin: 0 0 8px; }
.icon-feature p { margin: 0; color: var(--muted); }
.people-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.person-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.person-card__photo { height: 330px; background: var(--green-50); }
.person-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.person-card > div:last-child { padding: 24px; }
.person-card span { color: var(--green-700); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.person-card h3 { margin: 6px 0 8px; }
.person-card p { margin: 0; color: var(--muted); font-size: .78rem; }
.org-chart { display: grid; justify-items: center; gap: 0; margin-top: 45px; overflow-x: auto; }
.org-level { display: flex; justify-content: center; gap: 18px; min-width: 800px; }
.org-level span { min-width: 180px; padding: 16px 22px; border-radius: 12px; text-align: center; font-weight: 750; border: 1px solid var(--line); background: #fff; }
.org-level--one span { color: #fff; border-color: var(--green-700); background: var(--green-700); }
.org-level--two span { border-color: #BFE0DA; background: var(--green-50); }
.org-line { width: 2px; height: 34px; background: #AFCFC9; }
.service-hours { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.hours-card { display: flex; align-items: center; gap: 16px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; }
.hours-card > i { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; color: var(--ink); background: var(--gold); }
.hours-card span { display: grid; }
.hours-card small { color: var(--muted); }
.map-card--page iframe { min-height: 600px; }
.location-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.location-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.location-card > i { color: var(--green-700); font-size: 1.7rem; }
.location-card h3 { margin: 17px 0 8px; }
.location-card p { color: var(--muted); font-size: .78rem; }
.location-card span { color: var(--green-700); font-size: .68rem; font-weight: 800; }
.stat-grid--page .stat-card { color: var(--ink); border: 1px solid var(--line); background: #fff; }
.stat-grid--page .stat-card::before { border-color: rgba(11,107,72,.15); }
.stat-grid--page .stat-card span { color: var(--muted); }
.data-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.data-panel { padding: 36px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.data-panel h3 { margin: 0 0 28px; font-size: 1.45rem; }
.data-bars { display: grid; gap: 22px; }
.data-bars > div > div { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .75rem; }
.data-bars i { display: block; height: 10px; overflow: hidden; border-radius: 99px; background: var(--green-50); }
.data-bars b { display: block; height: 100%; border-radius: inherit; background: var(--green-700); }
.donut-wrap { display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: 25px; }
.donut-chart { width: 180px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--green-700) 0 78%, var(--gold) 78% 88%, var(--green-100) 88%); }
.donut-chart::before { content: ""; grid-area: 1/1; width: 125px; aspect-ratio: 1; border-radius: 50%; background: #fff; }
.donut-chart span { position: relative; z-index: 2; grid-area: 1/1; display: grid; text-align: center; }
.donut-chart strong { color: var(--green-700); font-size: 1.5rem; }
.donut-chart small { color: var(--muted); font-size: .57rem; }
.legend { display: grid; gap: 10px; padding: 0; list-style: none; font-size: .7rem; }
.legend li { display: flex; align-items: center; gap: 8px; }
.legend i { width: 9px; height: 9px; border-radius: 50%; background: var(--green-700); }
.legend strong { margin-left: auto; }
.occupation-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.occupation-card { display: grid; justify-items: center; padding: 28px 15px; border: 1px solid var(--line); border-radius: 18px; text-align: center; }
.occupation-card i { color: var(--green-700); font-size: 1.4rem; }
.occupation-card strong { margin-top: 12px; font-size: 1.55rem; }
.occupation-card span { color: var(--muted); font-size: .68rem; }
.budget-summary { display: grid; grid-template-columns: 1.5fr .7fr 1fr; overflow: hidden; border-radius: 24px; color: #fff; background: var(--green-800); box-shadow: var(--shadow); }
.budget-summary > div { display: grid; padding: 38px; border-right: 1px solid rgba(255,255,255,.13); }
.budget-summary > div:last-child { border-right: 0; }
.budget-summary span { color: rgba(255,255,255,.65); font-size: .7rem; }
.budget-summary strong { margin: 8px 0; color: var(--gold); font-size: clamp(1.5rem,3vw,2.6rem); }
.budget-summary small { color: rgba(255,255,255,.7); }
.finance-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: var(--line); }
.finance-list > div { display: flex; justify-content: space-between; gap: 20px; padding: 17px; background: #fff; font-size: .75rem; }
.finance-list__total { color: var(--green-800); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
.data-table { width: 100%; min-width: 850px; border-collapse: collapse; }
.data-table th, .data-table td { padding: 17px 20px; border-bottom: 1px solid var(--line); text-align: left; font-size: .73rem; }
.data-table th { color: var(--green-800); background: var(--green-50); }
.status { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: .58rem; font-weight: 800; }
.status--progress { color: #7A6419; background: #FFF3C4; }
.status--done { color: #087242; background: #dff5e9; }
.data-update { color: var(--muted); font-size: .72rem; }
.filter-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 45px; }
.filter-pills button { min-height: 40px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: #fff; font-size: .7rem; font-weight: 750; }
.filter-pills button.active, .filter-pills button:hover { color: #fff; border-color: var(--green-700); background: var(--green-700); }
.news-grid--listing { grid-template-columns: repeat(3,1fr); }
.news-grid--listing .news-card p { color: var(--muted); font-size: .75rem; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination button { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.pagination a.active { color: #fff; border-color: var(--green-700); background: var(--green-700); }
.article-section { padding-top: 80px; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 310px; align-items: start; gap: 60px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 24px; color: var(--muted); font-size: .7rem; }
.article-meta > span:first-child { padding: 5px 10px; border-radius: 999px; color: var(--green-800); background: var(--green-100); font-weight: 800; }
.article-cover { width: 100%; height: 490px; object-fit: cover; margin-bottom: 38px; border-radius: 24px; }
.article-prose .lead { color: var(--ink); font-size: 1.07rem; font-weight: 650; }
.article-share { display: flex; align-items: center; gap: 8px; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--line); }
.article-share strong { margin-right: 8px; font-size: .75rem; }
.article-share a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; }
.article-sidebar { position: sticky; top: 130px; display: grid; gap: 18px; }
.sidebar-card { display: grid; gap: 12px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; }
.sidebar-card h3 { margin: 0 0 7px; }
.sidebar-card > div { display: grid; padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.sidebar-card small { color: var(--muted); font-size: .6rem; }
.sidebar-card strong { font-size: .75rem; }
.sidebar-card > a { display: flex; justify-content: space-between; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: .7rem; font-weight: 700; }
.commodity-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.commodity-card { display: flex; gap: 22px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.commodity-card > i { display: grid; place-items: center; flex: 0 0 54px; height: 54px; border-radius: 15px; color: var(--ink); background: var(--gold); }
.commodity-card div { display: grid; }
.commodity-card strong { font-size: 1rem; }
.commodity-card span { color: var(--green-700); font-size: .67rem; font-weight: 800; }
.commodity-card p { margin: 8px 0 0; color: var(--muted); font-size: .75rem; }
.destination-grid { display: grid; grid-template-columns: repeat(2,1fr); grid-auto-rows: 330px; gap: 18px; }
.destination-card { position: relative; overflow: hidden; border-radius: 22px; color: #fff; }
.destination-card--large { grid-row: span 2; }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.destination-card:hover img { transform: scale(1.05); }
.destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 20%,rgba(3,31,22,.9)); }
.destination-card > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; }
.destination-card span { color: var(--gold); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.destination-card h2, .destination-card h3 { margin: 7px 0; }
.destination-card p { margin: 0; color: rgba(255,255,255,.7); font-size: .76rem; }
.destination-card a { display: inline-flex; gap: 8px; margin-top: 15px; font-size: .7rem; font-weight: 800; }
.visit-info { display: grid; gap: 10px; margin: 25px 0; }
.itinerary { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.itinerary-item { padding: 28px; border: 1px solid var(--line); border-radius: 18px; }
.itinerary-item > span { color: var(--green-700); font-weight: 850; }
.itinerary-item h3 { margin: 13px 0 7px; font-size: .95rem; }
.itinerary-item p { margin: 0; color: var(--muted); font-size: .7rem; }
.product-grid--listing { grid-template-columns: repeat(4,1fr); }
.product-excerpt { min-height: 62px; color: var(--muted); font-size: .7rem; }
.seller-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 55px; padding: 38px; border-radius: 22px; color: #fff; background: var(--green-800); }
.seller-cta span { color: var(--gold); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.seller-cta h2 { margin: 5px 0 0; font-size: 1.55rem; }
.product-detail-section { padding-top: 85px; }
.product-detail { display: grid; grid-template-columns: 1.08fr .92fr; gap: 65px; align-items: start; }
.product-main-image { height: 590px; overflow: hidden; border-radius: 26px; background: var(--surface); }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.product-thumbs button { height: 105px; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 13px; background: transparent; }
.product-thumbs button.active { border-color: var(--green-700); }
.product-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-category { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: var(--green-800); background: var(--green-100); font-size: .63rem; font-weight: 800; text-transform: uppercase; }
.product-info h1 { margin: 16px 0 10px; font-size: clamp(2.2rem,4vw,4rem); line-height: 1.05; letter-spacing: -.055em; }
.product-price { color: var(--green-700); font-size: 1.9rem; font-weight: 850; }
.product-price small { color: var(--muted); font-size: .7rem; font-weight: 500; }
.product-info > p:not(.product-price,.order-note) { color: var(--muted); }
.seller-box { display: flex; gap: 16px; margin: 30px 0; padding: 20px; border: 1px solid var(--line); border-radius: 16px; }
.seller-box > i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; color: var(--ink); background: var(--gold); }
.seller-box > div { display: grid; }
.seller-box small, .seller-box span { color: var(--muted); font-size: .62rem; }
.seller-box span i { color: var(--green-600); }
.order-actions { display: flex; gap: 10px; }
.order-note { color: var(--muted); font-size: .67rem; }
.product-description-grid { display: grid; grid-template-columns: 1fr 380px; gap: 70px; }
.spec-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.spec-card h3 { margin: 0 0 20px; }
.spec-card ul { display: grid; gap: 13px; padding: 0; list-style: none; font-size: .73rem; }
.spec-card i { margin-right: 10px; color: var(--green-700); }
.related-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.related-products a { display: grid; grid-template-columns: 100px 1fr; gap: 14px; padding: 10px; border: 1px solid var(--line); border-radius: 15px; }
.related-products img { width: 100px; height: 90px; object-fit: cover; border-radius: 10px; }
.related-products span { display: grid; align-content: center; }
.related-products small { color: var(--green-700); font-size: .57rem; }
.related-products strong { font-size: .76rem; }
.related-products b { color: var(--green-700); font-size: .7rem; }
.gallery-grid--page { grid-auto-rows: 250px; }
.complaint-page { background: #fff; }
.complaint-page .complaint__copy { color: var(--ink); }
.complaint-page .complaint__copy > p { color: var(--muted); }
.complaint-page .complaint__contact small { color: var(--muted); }
.complaint-form--light { border-color: var(--line); background: var(--green-800); box-shadow: var(--shadow); }
.response-note { display: flex; gap: 13px; margin-top: 28px; padding: 18px; border-radius: 14px; background: var(--green-50); }
.response-note > i { color: var(--green-700); }
.response-note p { display: grid; margin: 0; }
.response-note span { color: var(--muted); font-size: .7rem; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.process-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.process-card > span { position: absolute; right: 18px; top: 10px; color: var(--green-100); font-size: 2.7rem; font-weight: 850; }
.process-card > i { color: var(--green-700); font-size: 1.5rem; }
.process-card h3 { margin: 19px 0 8px; }
.process-card p { margin: 0; color: var(--muted); font-size: .73rem; }

@media (max-width: 1100px) {
  .people-grid, .news-grid--listing { grid-template-columns: repeat(2,1fr); }
  .location-grid, .occupation-grid, .product-grid--listing, .itinerary, .process-grid { grid-template-columns: repeat(2,1fr); }
  .article-layout { grid-template-columns: 1fr 280px; gap: 35px; }
  .product-detail { gap: 35px; }
}
@media (max-width: 900px) {
  .detail-split, .leader-message, .data-two-col, .product-detail, .product-description-grid { grid-template-columns: 1fr; gap: 45px; }
  .detail-split--reverse .prose, .detail-split--reverse .detail-media { order: initial; }
  .leader-message__photo, .article-sidebar { position: static; }
  .leader-message__photo { max-width: 580px; margin-inline: auto; }
  .vision-grid, .commodity-grid { grid-template-columns: 1fr; }
  .boundary-grid { grid-template-columns: repeat(2,1fr); }
  .icon-feature-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: 1fr 1fr; }
  .budget-summary { grid-template-columns: 1fr; }
  .budget-summary > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .destination-grid { grid-auto-rows: 300px; }
  .product-main-image { height: 520px; }
}
@media (max-width: 680px) {
  body.home .site-header { top: 32px; }
  .hero { min-height: 470px; height: 530px; }
  .hero-content { padding-top: 10px; padding-bottom: 48px; }
  .hero-content h1, .hero-content h2 { font-size: clamp(1.85rem,8.2vw,2.4rem); }
  .page-hero { min-height: 350px; }
  .page-hero__content { padding: 70px 0 45px; }
  .page-hero h1 { font-size: 2.45rem; }
  .page-hero p { font-size: .8rem; }
  .breadcrumb { margin-bottom: 18px; }
  .inner-section { padding-top: 72px; }
  .detail-media, .detail-media > img { min-height: 390px; }
  .media-badge { right: 12px; bottom: 16px; }
  .info-list { grid-template-columns: 1fr; }
  .feature-panel { padding: 28px; }
  .timeline::before { left: 34px; }
  .timeline-item { grid-template-columns: 78px 1fr; gap: 10px; }
  .timeline-item > span { width: 68px; font-size: .72rem; }
  .boundary-grid, .people-grid, .location-grid, .occupation-grid, .news-grid--listing, .product-grid--listing, .itinerary, .process-grid, .article-sidebar { grid-template-columns: 1fr; }
  .leader-message__photo > img { height: 460px; }
  .person-card__photo { height: 360px; }
  .service-hours { grid-template-columns: 1fr; }
  .map-card--page iframe { min-height: 390px; }
  .data-panel { padding: 24px; }
  .donut-wrap { grid-template-columns: 1fr; justify-items: center; }
  .budget-summary > div { padding: 26px; }
  .article-cover { height: 300px; border-radius: 18px; }
  .article-section { padding-top: 60px; }
  .destination-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .destination-card--large { grid-row: auto; }
  .seller-cta { display: grid; padding: 27px; }
  .seller-cta h2 { font-size: 1.25rem; }
  .product-detail-section { padding-top: 60px; }
  .product-main-image { height: 390px; }
  .product-thumbs button { height: 80px; }
  .order-actions { display: grid; }
  .related-products { grid-template-columns: 1fr; }
  .gallery-grid--page { grid-auto-rows: 180px; }
}

/* Integrasi Kelurahan Benteng: mempertahankan layout asli, hanya perilaku sticky yang diminta. */
body.home .welcome-marquee{position:sticky;top:0;z-index:1002}
body.home .site-header{top:34px}
body:not(.home) .welcome-marquee{position:relative}
@media (max-width:680px){body.home .site-header{top:34px}}
