/* ==========================================================================
   Etinion Properti Lancar — Stylesheet utama
   --------------------------------------------------------------------------
   Gaya: editorial premium — latar krem, aksen hijau teal, heading serif
   (Newsreader) + body Manrope. Vanilla CSS, mobile-first. Warna utama
   di-override oleh CSS variables dari Customizer (etinion_pl_css_vars()).

   Daftar isi:
   1. Design tokens        6. Hero
   2. Reset & dasar        7. Section & grid
   3. Aksesibilitas        8. Komponen (card, kategori, feature, testimoni, CTA)
   4. Tombol & badge       9. Footer
   5. Header & navigasi   10. Konten laman, arsip, 404, utilitas
   ========================================================================== */

/* 1. Design tokens
   ========================================================================== */
:root {
	/* Warna aksi — nilai default; Customizer meng-override lewat inline style. */
	--ep-primary: #0d5c4d;
	--ep-primary-hover: #0a463b;
	--ep-link: #0d5c4d;
	--ep-link-hover: #0a463b;
	--ep-btn-bg: #0d5c4d;
	--ep-btn-text: #ffffff;
	--ep-btn-bg-hover: #0a463b;

	/* Gradien hijau (hero frame & CTA band) */
	--ep-grad-1: #0f6553;
	--ep-grad-2: #0a4234;

	/* Netral & permukaan */
	--ep-ink: #17211d;
	--ep-body: #f5f3ee;
	--ep-white: #ffffff;
	--ep-soft: #f8faf9;
	--ep-muted: #4c5a53;
	--ep-muted-2: #6a776f;
	--ep-pill: #e4efe9;
	--ep-border: rgba(23, 33, 29, 0.09);
	--ep-border-2: rgba(23, 33, 29, 0.07);

	/* Footer & aksen */
	--ep-footer-bg: #0c1512;
	--ep-footer-accent: #4fb89f;
	--ep-star: #d9a441;

	/* Bentuk & bayangan */
	--ep-radius: 18px;
	--ep-radius-sm: 12px;
	--ep-radius-lg: 26px;
	--ep-shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
	--ep-shadow-md: 0 10px 30px -12px rgba(0, 0, 0, 0.25);
	--ep-shadow-card: 0 24px 44px -28px rgba(13, 92, 77, 0.4);
	--ep-shadow-hero: 0 30px 60px -30px rgba(13, 92, 77, 0.55);

	/* Tipografi & layout */
	--ep-font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
		Roboto, Arial, sans-serif;
	--ep-serif: "Newsreader", ui-serif, Georgia, "Times New Roman", serif;
	--ep-container: 1200px;
	--ep-gutter: clamp(20px, 5vw, 44px);
	--ep-header-h: 72px;
}

/* 2. Reset & dasar
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--ep-header-h) + 16px);
}

body {
	margin: 0;
	font-family: var(--ep-font);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ep-ink);
	background: var(--ep-body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.18s ease;
}

.entry-content a,
a.tlink {
	color: var(--ep-link);
}

.entry-content a:hover,
a.tlink:hover {
	color: var(--ep-link-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.01em;
	overflow-wrap: break-word;
}

p {
	margin: 0 0 1em;
}

ul,
ol {
	margin: 0 0 1em;
	padding-left: 1.3em;
}

figure,
blockquote {
	margin: 0;
}

button {
	font: inherit;
	cursor: pointer;
}

::selection {
	background: #c9e0d7;
	color: var(--ep-ink);
}

:focus-visible {
	outline: 2px solid var(--ep-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

.icon {
	flex-shrink: 0;
	vertical-align: middle;
}

/* Pola garis diagonal halus (dekoratif) */
.stripes {
	background-image: repeating-linear-gradient(
		135deg,
		color-mix(in srgb, var(--ep-primary) 6%, transparent) 0 12px,
		transparent 12px 24px
	);
}

/* 3. Aksesibilitas
   ========================================================================== */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 8px;
	left: 8px;
	z-index: 9999;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.7rem 1.2rem;
	clip: auto;
	background: var(--ep-primary);
	color: #fff;
	border-radius: var(--ep-radius-sm);
	font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* Layout dasar */
.container {
	width: 100%;
	max-width: var(--ep-container);
	margin-inline: auto;
	padding-inline: var(--ep-gutter);
}

.container--narrow {
	max-width: 760px;
}

/* 4. Tombol & badge
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 15px 26px;
	border: 1px solid transparent;
	border-radius: var(--ep-radius-sm);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	transition: background-color 0.2s ease, color 0.2s ease,
		border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--sm {
	padding: 11px 20px;
	font-size: 14px;
	border-radius: 10px;
}

.btn--primary {
	background: var(--ep-btn-bg);
	color: var(--ep-btn-text);
}

.btn--primary:hover {
	background: var(--ep-btn-bg-hover);
	color: var(--ep-btn-text);
	box-shadow: var(--ep-shadow-card);
}

.btn--ghost {
	background: var(--ep-white);
	border-color: var(--ep-border);
	color: var(--ep-ink);
}

.btn--ghost:hover {
	border-color: var(--ep-primary);
	color: var(--ep-primary);
}

/* Tombol di atas latar gelap (CTA band) */
.btn--light {
	background: #fff;
	color: var(--ep-primary);
	font-weight: 700;
}

.btn--light:hover {
	background: #eef4f2;
	color: var(--ep-primary-hover);
}

.btn--translucent {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.btn--translucent:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

/* Eyebrow section & badge hero */
.eyebrow {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--ep-primary);
}

/* 5. Header & navigasi
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: color-mix(in srgb, var(--ep-body) 82%, transparent);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--ep-border-2);
	transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
	box-shadow: var(--ep-shadow-sm);
}

/* Jangan tertutup admin bar WordPress saat login. */
.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--ep-header-h);
	padding-block: 14px;
}

/* Brand (logo teks) */
.site-branding__text {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: var(--ep-primary);
	color: #fff;
	flex: none;
}

.brand-name {
	font-family: var(--ep-serif);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.2px;
	color: var(--ep-ink);
}

.custom-logo-link {
	display: inline-flex;
}

.custom-logo {
	max-height: 46px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.4vw, 34px);
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.4vw, 34px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list li {
	position: relative;
}

.site-nav__list a {
	display: inline-block;
	font-size: 14.5px;
	font-weight: 500;
	color: #3a463f;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	color: var(--ep-primary);
}

/* Dropdown level 2 (desktop) */
.site-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: -1rem;
	z-index: 50;
	min-width: 210px;
	margin-top: 0.75rem;
	padding: 0.5rem;
	list-style: none;
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: var(--ep-radius-sm);
	box-shadow: var(--ep-shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.site-nav__list li:hover > .sub-menu,
.site-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-nav__list .sub-menu a {
	display: block;
	padding: 0.5rem 0.8rem;
	border-radius: 8px;
	font-size: 14px;
}

.site-nav__list .sub-menu a:hover {
	background: var(--ep-soft);
}

/* Toggle mobile */
.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: 1px solid rgba(23, 33, 29, 0.15);
	border-radius: 10px;
	color: var(--ep-ink);
}

.nav-toggle__close {
	display: none;
}

body.nav-open .nav-toggle__open {
	display: none;
}

body.nav-open .nav-toggle__close {
	display: inline-flex;
}

@media (max-width: 900px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		padding: 8px var(--ep-gutter) 18px;
		background: var(--ep-body);
		border-top: 1px solid var(--ep-border-2);
		box-shadow: var(--ep-shadow-md);
	}

	body.nav-open .site-nav {
		display: flex;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav__list a {
		display: block;
		padding: 12px 4px;
		font-size: 15px;
		border-bottom: 1px solid var(--ep-border-2);
	}

	.site-nav__list .sub-menu {
		position: static;
		min-width: 0;
		margin: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
		box-shadow: none;
		padding: 0 0 0 1rem;
	}

	.site-nav__cta {
		margin-top: 12px;
	}
}

/* 6. Hero
   ========================================================================== */
.hero {
	padding-block: clamp(44px, 7vw, 84px);
}

.hero__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: clamp(32px, 5vw, 60px);
	align-items: center;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--ep-primary);
	background: var(--ep-pill);
	padding: 8px 14px;
	border-radius: 999px;
}

.hero__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ep-primary);
}

.hero__title {
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: clamp(38px, 6vw, 62px);
	line-height: 1.04;
	letter-spacing: -0.5px;
	margin: 22px 0 0;
}

.hero__title-accent {
	font-style: italic;
	color: var(--ep-primary);
}

.hero__subtitle {
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.65;
	color: var(--ep-muted);
	max-width: 480px;
	margin: 20px 0 0;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(26px, 4vw, 48px);
	margin-top: 44px;
}

.hero__stat-value {
	font-family: var(--ep-serif);
	font-size: 36px;
	font-weight: 500;
	color: var(--ep-primary);
	line-height: 1;
}

.hero__stat-label {
	font-size: 13px;
	color: var(--ep-muted-2);
	margin-top: 6px;
	font-weight: 500;
}

.hero__frame {
	position: relative;
	aspect-ratio: 4 / 3.4;
	border-radius: 22px;
	background: linear-gradient(155deg, var(--ep-grad-1), var(--ep-grad-2));
	overflow: hidden;
	box-shadow: var(--ep-shadow-hero);
}

.hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
}

.hero__placeholder span {
	font-family: ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.5px;
}

.hero__card {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	display: flex;
	align-items: center;
	gap: 13px;
	background: #fff;
	border-radius: 14px;
	padding: 14px 16px;
	box-shadow: var(--ep-shadow-md);
}

.hero__card-icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: var(--ep-pill);
	color: var(--ep-primary);
	flex: none;
}

.hero__card-text {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.hero__card-text strong {
	font-size: 14.5px;
	font-weight: 700;
}

.hero__card-text span {
	font-size: 12.5px;
	color: var(--ep-muted-2);
}

/* 7. Section & grid
   ========================================================================== */
.pl-section {
	padding-block: clamp(44px, 7vw, 84px);
}

.pl-section--white {
	background: var(--ep-white);
	border-block: 1px solid var(--ep-border-2);
}

.section__head {
	max-width: 640px;
	margin: 0 auto clamp(32px, 4vw, 52px);
	text-align: center;
}

.section__title {
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: clamp(30px, 4.4vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.4px;
	margin: 12px 0 0;
}

.section__desc {
	font-size: 16px;
	line-height: 1.6;
	color: var(--ep-muted);
	margin: 16px 0 0;
}

.section__more {
	margin-top: clamp(28px, 4vw, 44px);
	text-align: center;
}

.section__note {
	margin: 2rem auto 0;
	max-width: 640px;
	padding: 0.8rem 1.1rem;
	border: 1.5px dashed var(--ep-border);
	border-radius: var(--ep-radius-sm);
	text-align: center;
	font-size: 0.85rem;
	color: var(--ep-muted-2);
}

/* Grid utilitas */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 24px;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: clamp(24px, 3vw, 40px);
}

/* 8. Komponen
   ========================================================================== */

/* Card properti — dipakai homepage & (nanti) archive katalog. */
.property-card {
	display: flex;
	flex-direction: column;
	background: var(--ep-white);
	border: 1px solid var(--ep-border-2);
	border-radius: var(--ep-radius);
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.property-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ep-shadow-card);
}

.property-card__media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 11;
	background: #eef1ee;
	overflow: hidden;
}

.property-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.property-card:hover .property-card__media img {
	transform: scale(1.04);
}

.property-card__thumb-placeholder {
	display: grid;
	justify-items: center;
	gap: 8px;
	color: #9aa8a0;
	text-align: center;
}

.property-card__thumb-label {
	font-family: ui-monospace, Menlo, monospace;
	font-size: 10px;
}

.property-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	background: var(--ep-pill);
	color: var(--ep-primary);
}

.property-card__badge--indent {
	background: #fbeede;
	color: #b06d1a;
}

.property-card__badge--terjual {
	background: #f6e0df;
	color: #b3403a;
}

.property-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px;
}

.property-card__price {
	font-family: var(--ep-serif);
	font-size: 24px;
	font-weight: 500;
	color: var(--ep-primary);
	line-height: 1.1;
}

.property-card__title {
	margin: 6px 0 0;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.property-card__title a {
	color: var(--ep-ink);
}

.property-card__title a:hover {
	color: var(--ep-primary);
}

.property-card__location {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 7px 0 0;
	font-size: 13.5px;
	color: var(--ep-muted-2);
}

.property-card__location .icon {
	color: var(--ep-primary);
}

.property-card__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 16px 0 0;
	padding: 16px 0 0;
	border-top: 1px solid var(--ep-border);
	list-style: none;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--ep-muted);
}

.property-card__specs li {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.property-card__specs .icon {
	color: var(--ep-primary);
}

/* Card kategori (link) */
.category-card {
	display: block;
	border: 1px solid var(--ep-border);
	border-radius: 16px;
	padding: 26px;
	transition: border-color 0.25s ease, background-color 0.25s ease,
		transform 0.25s ease;
}

.category-card:hover {
	border-color: var(--ep-primary);
	background: var(--ep-soft);
	transform: translateY(-3px);
}

.category-card__icon,
.feature__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 13px;
	background: var(--ep-pill);
	color: var(--ep-primary);
}

.category-card__title {
	margin: 18px 0 0;
	font-size: 18px;
	font-weight: 700;
}

.category-card__desc {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--ep-muted-2);
}

/* Feature (kenapa kami) — ikon kotak solid teal */
.feature__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--ep-primary);
	color: #fff;
}

.feature__title {
	margin: 18px 0 0;
	font-size: 18px;
	font-weight: 700;
}

.feature__desc {
	margin: 8px 0 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: #5c6b64;
}

/* Testimoni */
.testimonial {
	display: flex;
	flex-direction: column;
	gap: 18px;
	background: var(--ep-soft);
	border: 1px solid var(--ep-border-2);
	border-radius: var(--ep-radius);
	padding: 28px;
}

.testimonial__stars {
	display: flex;
	gap: 3px;
	color: var(--ep-star);
}

.testimonial__quote {
	flex: 1;
}

.testimonial__quote p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #39453f;
}

.testimonial__author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 6px;
}

.testimonial__avatar {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ep-primary);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	flex: none;
}

.testimonial__meta {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
}

.testimonial__meta strong {
	font-size: 15px;
	font-weight: 700;
}

.testimonial__role {
	font-size: 13px;
	color: var(--ep-muted-2);
}

/* CTA band */
.cta-band {
	border-radius: var(--ep-radius-lg);
	background: linear-gradient(150deg, var(--ep-grad-1), var(--ep-grad-2));
	padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 64px);
	text-align: center;
	color: #fff;
	box-shadow: 0 34px 64px -34px rgba(13, 92, 77, 0.6);
}

.cta-band__title {
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: clamp(30px, 4.6vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.4px;
	margin: 0 auto;
	max-width: 640px;
	color: #fff;
}

.cta-band__text {
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	max-width: 560px;
	margin: 18px auto 0;
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 32px;
}

.cta-band__hint {
	margin: 18px 0 0;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.72);
}

/* 9. Footer
   ========================================================================== */
.site-footer {
	background: var(--ep-footer-bg);
	color: rgba(255, 255, 255, 0.72);
	padding-block: clamp(48px, 6vw, 72px);
	font-size: 14.5px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(32px, 4vw, 56px);
}

.site-footer__brand {
	max-width: 340px;
}

.site-footer .brand-name {
	color: #fff;
}

.site-footer .brand-mark {
	background: var(--ep-grad-1);
}

.site-footer__about {
	font-size: 14px;
	line-height: 1.7;
	margin: 18px 0 0;
}

.site-footer__socials {
	display: flex;
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.site-footer__socials a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.8);
	transition: background-color 0.18s ease, border-color 0.18s ease,
		color 0.18s ease;
}

.site-footer__socials a:hover {
	background: var(--ep-grad-1);
	border-color: var(--ep-grad-1);
	color: #fff;
}

.site-footer__title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin: 0 0 18px;
}

.site-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__menu a,
.site-footer__contact a {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__menu a:hover,
.site-footer__contact a:hover {
	color: #fff;
}

.site-footer__contact {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.site-footer__hint {
	margin: 0;
	padding: 12px 14px;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: var(--ep-radius-sm);
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.5;
}

.site-footer__contact .icon {
	margin-top: 2px;
	color: var(--ep-footer-accent);
	flex: none;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	margin-top: clamp(36px, 4vw, 52px);
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer__top {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, 0.72);
	font-weight: 500;
}

.site-footer__top:hover {
	color: #fff;
}

/* 10. Konten laman, arsip, 404, utilitas
   ========================================================================== */
.page-header {
	padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}

.page-title {
	margin: 0;
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	line-height: 1.1;
	letter-spacing: -0.4px;
}

.page-title span {
	font-style: italic;
	color: var(--ep-primary);
}

.page-description {
	margin-top: 0.5rem;
	color: var(--ep-muted);
}

.page-thumbnail img {
	border-radius: var(--ep-radius);
	margin-bottom: 2rem;
}

.page-single,
.section--list {
	padding-bottom: clamp(3rem, 7vw, 5rem);
}

/* Konten dari editor Gutenberg */
.entry-content {
	font-size: 1.02rem;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.25em;
}

.entry-content h2,
.entry-content h3 {
	font-family: var(--ep-serif);
	font-weight: 500;
}

.entry-content h2 {
	margin-top: 1.8em;
	font-size: 1.7rem;
}

.entry-content h3 {
	margin-top: 1.5em;
	font-size: 1.3rem;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content img {
	border-radius: var(--ep-radius-sm);
}

.entry-content blockquote {
	margin: 1.5em 0;
	padding: 0.5em 0 0.5em 1.25em;
	border-left: 3px solid var(--ep-primary);
	color: var(--ep-muted);
	font-style: italic;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 0.6em 0.8em;
	border: 1px solid var(--ep-border);
	text-align: left;
}

.entry-content .alignwide {
	width: min(100vw - 2.5rem, 1160px);
	margin-left: 50%;
	transform: translateX(-50%);
}

/* Daftar artikel (index.php) */
.post-list {
	display: grid;
	gap: 2rem;
	padding-top: 1rem;
}

.post-list__item {
	display: grid;
	gap: 1.25rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--ep-border);
}

@media (min-width: 640px) {
	.post-list__item {
		grid-template-columns: 260px 1fr;
		align-items: start;
	}
}

.post-list__thumb img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--ep-radius-sm);
}

.post-list__title {
	margin: 0 0 0.3rem;
	font-family: var(--ep-serif);
	font-weight: 500;
	font-size: 1.4rem;
}

.post-list__title a {
	color: var(--ep-ink);
}

.post-list__title a:hover {
	color: var(--ep-primary);
}

.post-list__meta {
	margin: 0 0 0.6rem;
	font-size: 0.85rem;
	color: var(--ep-muted-2);
}

.post-list__excerpt {
	color: var(--ep-muted);
	font-size: 0.95rem;
}

/* Pagination */
.pagination {
	margin-top: 2.5rem;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
}

.pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.7rem;
	border: 1px solid var(--ep-border);
	border-radius: var(--ep-radius-sm);
	color: var(--ep-ink);
	font-weight: 600;
	font-size: 0.9rem;
	background: #fff;
}

.pagination .page-numbers.current {
	background: var(--ep-primary);
	border-color: var(--ep-primary);
	color: #fff;
}

.pagination .page-numbers:hover:not(.current) {
	border-color: var(--ep-primary);
	color: var(--ep-primary);
}

/* Empty state & 404 */
.empty-state,
.error-404 {
	padding: clamp(3rem, 8vw, 6rem) 0;
	text-align: center;
}

.empty-state p,
.error-404__text {
	color: var(--ep-muted);
	max-width: 460px;
	margin: 0 auto 1.5rem;
}

.error-404__code {
	margin: 0;
	font-family: var(--ep-serif);
	font-size: clamp(4.5rem, 12vw, 7rem);
	font-weight: 500;
	line-height: 1;
	color: var(--ep-primary);
	letter-spacing: -0.04em;
}

.error-404__title {
	margin: 0.5rem 0 0.75rem;
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
}

/* 11. Halaman Katalog / Detail Properti (mockup)
   ========================================================================== */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding-top: 22px;
	font-size: 13px;
	color: var(--ep-muted-2);
}

.breadcrumb a {
	color: var(--ep-muted-2);
}

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

.breadcrumb__current {
	color: var(--ep-ink);
	font-weight: 600;
}

/* Hero listing */
.listing-hero {
	padding: 24px 0 clamp(32px, 4vw, 52px);
}

.listing-hero__top {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: flex-start;
	justify-content: space-between;
}

.listing-hero__intro {
	max-width: 640px;
}

.listing-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.listing-hero__title {
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: clamp(34px, 5vw, 54px);
	line-height: 1.05;
	letter-spacing: -0.5px;
	margin: 14px 0 0;
}

.listing-hero__subtitle {
	font-size: clamp(15px, 1.7vw, 18px);
	color: var(--ep-primary);
	font-weight: 600;
	margin: 10px 0 0;
}

.listing-hero__price-wrap {
	text-align: right;
	min-width: 200px;
}

.listing-hero__price-label,
.listing-hero__price-note {
	font-size: 13px;
	color: var(--ep-muted-2);
}

.listing-hero__price {
	font-family: var(--ep-serif);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 500;
	color: var(--ep-primary);
	line-height: 1.1;
}

.listing-hero__price-note {
	margin-top: 2px;
}

.meta-loc {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--ep-muted-2);
}

.badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--ep-pill);
	color: var(--ep-primary);
}

.badge--indent {
	background: #fbeede;
	color: #b06d1a;
}

.badge--terjual {
	background: #f6e0df;
	color: #b3403a;
}

/* Galeri */
.gallery {
	display: flex;
	gap: 12px;
	height: clamp(280px, 36vw, 420px);
	margin-top: 24px;
}

.gallery__main {
	flex: 2;
}

.gallery__side {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gallery__main,
.gallery__cell {
	position: relative;
	border-radius: 18px;
	background: #eef1ee;
	display: grid;
	place-items: center;
	color: #9aa8a0;
	overflow: hidden;
}

.gallery__cell {
	flex: 1;
}

.gallery__ph {
	display: grid;
	justify-items: center;
	gap: 8px;
	text-align: center;
}

.gallery__ph span {
	font-family: ui-monospace, Menlo, monospace;
	font-size: 11px;
}

.gallery__ph-sm {
	font-family: ui-monospace, Menlo, monospace;
	font-size: 10px;
	text-align: center;
}

.gallery__more {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(13, 92, 77, 0.55);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 560px) {
	.gallery {
		flex-direction: column;
		height: auto;
	}

	.gallery__main {
		aspect-ratio: 16 / 10;
	}

	.gallery__side {
		flex-direction: row;
	}

	.gallery__cell {
		aspect-ratio: 4 / 3;
	}
}

/* Quick specs */
.quick-specs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	background: var(--ep-border);
	border: 1px solid var(--ep-border);
	border-radius: 16px;
	overflow: hidden;
	margin-top: 16px;
}

.quick-specs__item {
	background: #fff;
	padding: 18px 20px;
}

.quick-specs__label {
	font-size: 12px;
	color: var(--ep-muted-2);
}

.quick-specs__value {
	font-size: 16px;
	font-weight: 700;
	margin-top: 4px;
}

/* Grid konten + sidebar */
.listing-body {
	padding-bottom: clamp(40px, 5vw, 64px);
}

.listing-grid {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(28px, 4vw, 56px);
	align-items: flex-start;
}

.listing-main {
	flex: 1 1 460px;
	min-width: min(100%, 300px);
}

.listing-aside {
	position: sticky;
	top: 96px;
	flex: 1 1 300px;
	max-width: 380px;
	min-width: min(100%, 280px);
}

.listing-heading {
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: 28px;
	margin: 0;
}

.listing-text {
	font-size: 15.5px;
	line-height: 1.75;
	color: #3f4d46;
	margin: 14px 0 0;
}

/* Kartu info (alamat, kontak, lokasi terdekat) */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 32px;
}

.info-card {
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: 14px;
	padding: 20px;
}

.info-card--wide {
	padding: 22px;
	margin-top: 16px;
}

.info-card__label {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--ep-primary);
}

.info-card__label .icon {
	color: var(--ep-primary);
}

.info-card__text {
	font-size: 14.5px;
	line-height: 1.6;
	color: #3f4d46;
	margin: 12px 0 0;
}

.info-card__lines {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 12px;
	font-size: 14.5px;
	color: #3f4d46;
}

.info-card__strong {
	font-weight: 600;
}

/* Lokasi terdekat */
.nearby {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2px 24px;
	margin-top: 14px;
}

.nearby__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid var(--ep-border-2);
}

.nearby__name {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #3f4d46;
}

.nearby__ico {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--ep-pill);
	color: var(--ep-primary);
	flex: none;
}

.nearby__dist {
	font-size: 13px;
	font-weight: 600;
	color: var(--ep-primary);
	white-space: nowrap;
}

/* Kartu booking (sticky) */
.booking-card {
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: 20px;
	padding: 26px;
	box-shadow: 0 20px 44px -30px rgba(13, 92, 77, 0.4);
}

.booking-card__label,
.booking-card__note {
	font-size: 13px;
	color: var(--ep-muted-2);
}

.booking-card__price {
	font-family: var(--ep-serif);
	font-size: 34px;
	font-weight: 500;
	color: var(--ep-primary);
	line-height: 1.1;
}

.booking-card__note {
	margin-top: 2px;
}

.booking-card__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 22px;
}

.booking-card__trust {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--ep-border);
	font-size: 13.5px;
	color: #3f4d46;
}

.booking-card__trust > div {
	display: flex;
	align-items: center;
	gap: 9px;
}

.booking-card__trust .icon {
	color: var(--ep-primary);
	flex: none;
}

.btn--block {
	width: 100%;
}

.btn--soft {
	background: var(--ep-body);
	border-color: rgba(23, 33, 29, 0.1);
	color: var(--ep-ink);
}

.btn--soft:hover {
	border-color: var(--ep-primary);
	color: var(--ep-primary);
}

/* Section pembungkus carousel */
.listing-section {
	padding-block: clamp(28px, 4vw, 44px);
}

/* Carousel (fasilitas & tipe unit) */
.carousel__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.carousel__subtitle {
	font-size: 14.5px;
	color: var(--ep-muted-2);
	margin: 6px 0 0;
}

.carousel__nav {
	display: flex;
	gap: 8px;
	flex: none;
}

.carousel__btn {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 11px;
	border: 1px solid rgba(23, 33, 29, 0.14);
	background: #fff;
	color: var(--ep-ink);
	transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.carousel__btn:hover {
	border-color: var(--ep-primary);
	color: var(--ep-primary);
}

.carousel__btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.carousel__track {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	padding-bottom: 8px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.carousel__track::-webkit-scrollbar {
	display: none;
}

/* Kartu fasilitas */
.facility-card {
	flex: 0 0 clamp(220px, 24vw, 300px);
	scroll-snap-align: start;
}

.facility-card__media {
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	background: #eef1ee;
	display: grid;
	place-items: center;
	color: #9aa8a0;
}

.facility-card__name {
	font-size: 15px;
	font-weight: 700;
	margin-top: 12px;
}

.facility-card__desc {
	font-size: 13px;
	color: var(--ep-muted-2);
	margin-top: 2px;
}

/* Kartu tipe unit */
.unit-card {
	flex: 0 0 clamp(240px, 25vw, 330px);
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: 18px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.unit-card:hover {
	border-color: var(--ep-primary);
	box-shadow: 0 20px 40px -28px rgba(13, 92, 77, 0.4);
}

.unit-card__media {
	aspect-ratio: 16 / 11;
	background: #eef1ee;
	display: grid;
	place-items: center;
	color: #9aa8a0;
}

.unit-card__body {
	padding: 20px;
}

.unit-card__head {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

.unit-card__name {
	font-size: 19px;
	font-weight: 700;
}

.unit-card__dim {
	font-size: 13px;
	color: var(--ep-muted-2);
}

.unit-card__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	font-weight: 500;
	color: var(--ep-muted);
}

.unit-card__specs li {
	display: flex;
	align-items: center;
	gap: 5px;
}

.unit-card__specs .icon {
	color: var(--ep-primary);
}

.unit-card__foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--ep-border);
}

.unit-card__price-label {
	font-size: 12px;
	color: var(--ep-muted-2);
}

.unit-card__price {
	font-family: var(--ep-serif);
	font-size: 24px;
	font-weight: 500;
	color: var(--ep-primary);
}

.unit-card__detail {
	font-size: 13px;
	font-weight: 600;
	color: var(--ep-primary);
	background: var(--ep-pill);
	padding: 9px 14px;
	border-radius: 9px;
	transition: background-color 0.2s ease;
}

.unit-card__detail:hover {
	background: #d3e5dd;
	color: var(--ep-primary);
}

/* Bank partner */
.bank-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 16px;
	margin-top: 32px;
}

.bank-logo {
	display: grid;
	place-items: center;
	height: 96px;
	border: 1px solid rgba(23, 33, 29, 0.1);
	border-radius: 14px;
	background: #faf9f6;
	text-align: center;
	color: #9aa8a0;
}

.bank-logo span {
	font-family: ui-monospace, Menlo, monospace;
	font-size: 10px;
}

.bank-logo strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #3f4d46;
	margin-top: 4px;
}

/* Promo */
.promo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: clamp(32px, 4vw, 48px);
}

.promo-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: 18px;
	padding: 24px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.promo-card:hover {
	border-color: var(--ep-primary);
	box-shadow: 0 20px 40px -30px rgba(13, 92, 77, 0.4);
}

.promo-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.promo-card__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--ep-pill);
	color: var(--ep-primary);
}

.promo-card__tag {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #b06d1a;
	background: #fbeede;
	padding: 6px 11px;
	border-radius: 999px;
}

.promo-card__title {
	font-size: 19px;
	font-weight: 700;
	margin: 0;
}

.promo-card__desc {
	font-size: 14px;
	line-height: 1.6;
	color: #5c6b64;
	margin: 8px 0 0;
}

.promo-card__until {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--ep-border);
	font-size: 13px;
	font-weight: 500;
	color: var(--ep-muted-2);
}

.promo-card__until .icon {
	color: var(--ep-primary);
}

/* 12. Halaman statis: Tentang Kami & Kontak
   ========================================================================== */

/* Hero halaman dalam (terpusat) */
.page-hero {
	padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 3vw, 40px);
	text-align: center;
}

.page-hero__title {
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: clamp(34px, 5vw, 54px);
	line-height: 1.06;
	letter-spacing: -0.5px;
	margin: 14px 0 0;
}

.page-hero__title em {
	font-style: italic;
	color: var(--ep-primary);
}

.page-hero__subtitle {
	max-width: 620px;
	margin: 16px auto 0;
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.65;
	color: var(--ep-muted);
}

/* Judul kiri (bukan terpusat) */
.section-heading {
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: clamp(26px, 3.4vw, 38px);
	line-height: 1.12;
	letter-spacing: -0.3px;
	margin: 12px 0 0;
}

/* Layout dua kolom (cerita + gambar) */
.split {
	display: grid;
	gap: clamp(32px, 5vw, 60px);
	align-items: center;
}

@media (min-width: 900px) {
	.split {
		grid-template-columns: 1.05fr 0.95fr;
	}
}

.split__actions {
	margin-top: 26px;
}

.media-frame {
	position: relative;
	aspect-ratio: 4 / 3.4;
	border-radius: 22px;
	background: linear-gradient(155deg, var(--ep-grad-1), var(--ep-grad-2));
	overflow: hidden;
	box-shadow: var(--ep-shadow-hero);
}

.media-frame__ph {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
}

.media-frame__ph span {
	font-family: ui-monospace, Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.5px;
}

/* Statistik */
.stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: clamp(24px, 4vw, 40px);
	text-align: center;
}

.stat__value {
	font-family: var(--ep-serif);
	font-size: clamp(34px, 5vw, 48px);
	font-weight: 500;
	color: var(--ep-primary);
	line-height: 1;
}

.stat__label {
	font-size: 14px;
	color: var(--ep-muted-2);
	margin-top: 6px;
	font-weight: 500;
}

/* Visi & Misi */
.vm-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.vm-card {
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: var(--ep-radius);
	padding: clamp(24px, 3.5vw, 36px);
}

.vm-card__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--ep-primary);
	color: #fff;
}

.vm-card__title {
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: 26px;
	margin: 18px 0 0;
}

.vm-card__text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--ep-muted);
	margin: 12px 0 0;
}

.vm-card__list {
	margin: 14px 0 0;
	padding-left: 1.2em;
	font-size: 15px;
	line-height: 1.7;
	color: var(--ep-muted);
}

.vm-card__list li {
	margin-bottom: 8px;
}

/* Timeline */
.timeline {
	max-width: 720px;
	margin-inline: auto;
}

.timeline__item {
	position: relative;
	padding: 0 0 30px 34px;
	border-left: 2px solid var(--ep-border);
}

.timeline__item:last-child {
	padding-bottom: 0;
	border-left-color: transparent;
}

.timeline__dot {
	position: absolute;
	left: -9px;
	top: 3px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--ep-primary);
	border: 3px solid var(--ep-body);
}

.pl-section--white .timeline__dot {
	border-color: #fff;
}

.timeline__year {
	font-family: var(--ep-serif);
	font-weight: 500;
	font-size: 18px;
	color: var(--ep-primary);
	line-height: 1.2;
}

.timeline__title {
	font-weight: 700;
	font-size: 16px;
	margin-top: 2px;
}

.timeline__text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ep-muted);
	margin: 4px 0 0;
}

/* Tim */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
}

.team-card {
	text-align: center;
}

.team-card__avatar {
	position: relative;
	aspect-ratio: 1;
	border-radius: var(--ep-radius);
	background: linear-gradient(155deg, var(--ep-grad-1), var(--ep-grad-2));
	display: grid;
	place-items: center;
	overflow: hidden;
}

.team-card__initial {
	font-family: var(--ep-serif);
	font-size: 44px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.team-card__name {
	font-size: 16px;
	font-weight: 700;
	margin-top: 14px;
}

.team-card__role {
	font-size: 13.5px;
	color: var(--ep-muted-2);
	margin-top: 2px;
}

/* Kontak: layout info + form */
.contact-grid {
	display: grid;
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}

@media (min-width: 900px) {
	.contact-grid {
		grid-template-columns: 0.9fr 1.1fr;
	}
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contact-method {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: 16px;
	padding: 18px 20px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-method--wa:hover {
	border-color: var(--ep-primary);
	box-shadow: 0 16px 32px -26px rgba(13, 92, 77, 0.5);
}

.contact-method__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--ep-pill);
	color: var(--ep-primary);
	flex: none;
}

.contact-method--wa .contact-method__icon {
	background: var(--ep-primary);
	color: #fff;
}

.contact-method__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.contact-method__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--ep-muted-2);
}

.contact-method__value {
	font-size: 15px;
	font-weight: 600;
	color: var(--ep-ink);
}

a.contact-method__value:hover {
	color: var(--ep-primary);
}

.contact-socials {
	display: flex;
	gap: 10px;
	margin: 4px 0 0;
	padding: 0;
	list-style: none;
}

.contact-socials a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--ep-border);
	border-radius: 999px;
	color: var(--ep-muted);
	transition: background-color 0.18s ease, border-color 0.18s ease,
		color 0.18s ease;
}

.contact-socials a:hover {
	background: var(--ep-primary);
	border-color: var(--ep-primary);
	color: #fff;
}

/* Kontak: kartu form */
.contact-card {
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: 20px;
	padding: clamp(24px, 3vw, 34px);
	box-shadow: 0 20px 44px -30px rgba(13, 92, 77, 0.35);
}

.contact-card__title {
	font-family: var(--ep-serif);
	font-weight: 400;
	font-size: 26px;
	margin: 0;
}

.contact-card__note {
	font-size: 14px;
	color: var(--ep-muted-2);
	margin: 8px 0 22px;
}

.field {
	margin-bottom: 16px;
}

.field-row {
	display: grid;
	gap: 16px;
}

@media (min-width: 560px) {
	.field-row {
		grid-template-columns: 1fr 1fr;
	}
}

.field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 12px 14px;
	font: inherit;
	font-size: 15px;
	color: var(--ep-ink);
	background: var(--ep-body);
	border: 1px solid var(--ep-border);
	border-radius: 12px;
	transition: border-color 0.18s ease, background-color 0.18s ease;
}

.field textarea {
	min-height: 130px;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--ep-primary);
}

.field input::placeholder,
.field textarea::placeholder {
	color: #9aa8a0;
}

.contact-form__hint {
	margin: 12px 0 0;
	font-size: 12.5px;
	color: var(--ep-muted-2);
	text-align: center;
}

/* Peta */
.map-embed {
	position: relative;
	aspect-ratio: 16 / 6;
	min-height: 240px;
	border-radius: 22px;
	background: #eef1ee;
	overflow: hidden;
}

.map-embed__ph {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 12px;
	color: #9aa8a0;
	text-align: center;
}

.map-embed__ph span {
	font-size: 13px;
}

/* FAQ (accordion native <details>) */
.faq {
	max-width: 760px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq__item {
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: 14px;
	padding: 2px 20px;
}

.faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	font-size: 15.5px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

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

.faq__mark {
	position: relative;
	width: 16px;
	height: 16px;
	flex: none;
}

.faq__mark::before,
.faq__mark::after {
	content: "";
	position: absolute;
	background: var(--ep-primary);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq__mark::before {
	top: 7px;
	left: 0;
	width: 16px;
	height: 2px;
}

.faq__mark::after {
	top: 0;
	left: 7px;
	width: 2px;
	height: 16px;
}

.faq__item[open] .faq__mark::after {
	transform: rotate(90deg);
	opacity: 0;
}

.faq__answer {
	padding: 0 0 18px;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--ep-muted);
}

/* Animasi reveal (JS menambah .is-visible saat elemen masuk viewport) */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
	}
}
