:root {
  --ink: #14211f;
  --muted: #64716d;
  --paper: #f7f4ec;
  --surface: #ffffff;
  --surface-warm: #fbf8f1;
  --line: #ded7ca;
  --accent: #0c6b5c;
  --accent-dark: #073f37;
  --accent-soft: #dcece8;
  --gold: #8a5f13;
  --gold-soft: #f1dfb9;
  --clay: #965238;
  --success: #0b6f61;
  --sky: #dceff1;
  --shadow: 0 18px 50px rgba(20, 33, 31, 0.12);
  --shadow-soft: 0 12px 28px rgba(20, 33, 31, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 154, 62, 0.65);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
  scroll-margin-top: 150px;
}

.home-compact-section {
  padding: 3.4rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.94);
  border-bottom: 1px solid rgba(222, 215, 202, 0.8);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1200px, calc(100% - 2rem));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.menu-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-links {
  position: absolute;
  top: 74px;
  left: 1rem;
  right: 1rem;
  display: none;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a[aria-current="page"] {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.nav-links .nav-cta {
  background: var(--success);
  color: #ffffff;
  border-color: transparent;
  text-decoration: none;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button.primary,
.nav-cta {
  background: var(--accent);
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus,
.nav-cta:hover,
.nav-cta:focus {
  background: var(--accent-dark);
}

.button.whatsapp {
  background: var(--success);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.78);
}

.button.secondary.surface-button {
  background: var(--surface);
  border-color: var(--line);
}

.text-link,
.feature-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--accent-dark);
  font-weight: 850;
  text-underline-offset: 0.25rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.project-landing-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  color: #ffffff;
  overflow: hidden;
  background: #14211f;
}

.project-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 20, 0.84), rgba(10, 22, 20, 0.58) 44%, rgba(10, 22, 20, 0.12)),
    var(--project-hero-image, none) center / cover no-repeat;
}

.project-landing-hero .container {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.6rem;
}

.project-landing-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.98;
}

.project-landing-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.9);
}

.project-hero-actions,
.project-media-actions,
.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.project-fact-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
}

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

.project-fact-box {
  min-height: 112px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.project-fact-box strong,
.project-fact-box span {
  display: block;
}

.project-fact-box strong {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.project-fact-box span {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-story-grid,
.project-media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.project-section-title {
  max-width: 780px;
  margin-bottom: 1.8rem;
}

.project-section-title h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
}

.project-section-title p,
.project-story-grid p,
.project-media-split p {
  color: var(--muted);
}

.project-image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.project-image-frame img,
.project-gallery-card img,
.project-cover img,
.project-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image-frame img {
  aspect-ratio: 16 / 11;
}

.project-plan-frame img {
  object-fit: contain;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-gallery-card {
  min-width: 0;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.project-gallery-card img {
  aspect-ratio: 4 / 3;
}

.project-gallery-card figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-weight: 750;
}

.project-detail-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.project-detail-list li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.project-media-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.project-media-preview {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--accent-soft);
}

.project-media-body {
  padding: 1.2rem;
}

.project-video-frame {
  aspect-ratio: 16 / 9;
  background: #0b1715;
  overflow: hidden;
}

.project-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-unit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project-unit-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-unit-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.project-unit-card .project-plan-frame {
  height: 360px;
  padding: 0.85rem;
  background: #f5f2ea;
  overflow: hidden;
}

.project-unit-card .project-plan-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-unit-body {
  padding: 1rem;
}

.project-unit-body h3 {
  margin: 0 0 0.75rem;
}

.project-unit-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 0 0.8rem;
}

.project-unit-facts span {
  display: block;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
}

.project-unit-facts strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  overflow-wrap: anywhere;
  line-height: 1.28;
}

.project-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-faq-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.project-faq-card h3 {
  margin: 0 0 0.5rem;
}

.project-faq-card p,
.project-unit-body p {
  color: var(--muted);
}

.project-source-note {
  padding: 1rem;
  border-left: 4px solid var(--accent);
  background: var(--surface-warm);
  color: var(--muted);
}

.project-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-directory-grid--single {
  grid-template-columns: minmax(0, 520px);
}

.project-directory-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.project-directory-card .project-cover {
  height: 210px;
  overflow: hidden;
}

.project-directory-card .area-hub-cover {
  isolation: isolate;
  display: grid;
  place-items: end start;
  padding: 1.25rem;
  color: #ffffff;
  background: #173f35;
}

.area-hub-cover::before,
.area-hub-cover::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 999px;
}

.area-hub-cover::before {
  top: -54px;
  right: -28px;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(255, 255, 255, 0.12);
}

.area-hub-cover::after {
  right: 54px;
  bottom: -76px;
  width: 240px;
  height: 160px;
  background: rgba(255, 255, 255, 0.09);
  transform: rotate(-12deg);
}

.project-directory-card .area-hub-cover--nibong {
  background: linear-gradient(135deg, #234e3d 0%, #6d883f 58%, #c99a3e 100%);
}

.project-directory-card .area-hub-cover--tasek-gelugor {
  background: linear-gradient(135deg, #16483d 0%, #527b4b 55%, #d4a54a 100%);
}

.project-directory-card .area-hub-cover--island {
  background: linear-gradient(135deg, #174b5c 0%, #267b86 56%, #d39a4a 100%);
}

.area-hub-cover span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.project-directory-card .project-card-body {
  padding: 1.1rem;
}

.project-directory-card h2,
.project-directory-card h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.16rem;
}

.project-directory-card p {
  color: var(--muted);
}

.project-card-cta {
  color: var(--accent-dark);
  font-weight: 850;
  text-underline-offset: 0.25rem;
}

.hero-trust-row span {
  padding: 0.42rem 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 30, 27, 0.86) 0%, rgba(7, 30, 27, 0.62) 48%, rgba(7, 30, 27, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 30, 27, 0.38), rgba(7, 30, 27, 0.06));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  color: #ffffff;
}

.hero-copy-block {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.project-landing-hero .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 11vw, 5rem);
}

h2 {
  font-size: clamp(1.9rem, 7vw, 3.15rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  width: min(100%, 420px);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.panel-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intent-list {
  display: grid;
  gap: 0.7rem;
}

.intent-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.8rem;
  padding: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.intent-list span {
  grid-row: span 2;
  color: var(--gold-soft);
  font-weight: 900;
}

.intent-list small {
  color: rgba(255, 255, 255, 0.72);
}

.stats-band {
  background: var(--accent-dark);
  color: #ffffff;
}

.stats-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stats-grid div {
  padding: 1.25rem;
  background: var(--accent-dark);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-size: 1.1rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.7);
}

.home-about-section {
  padding: 4rem 0;
}

.home-project-feature {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-warm) 100%);
}

.featured-project-panel {
  display: grid;
  gap: 1.15rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.featured-project-panel dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-project-panel div {
  display: grid;
  gap: 0.15rem;
}

.featured-project-panel dt,
.featured-project-panel dd {
  margin: 0;
}

.featured-project-panel dt {
  font-weight: 850;
}

.featured-project-panel dd {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
}

.narrow {
  max-width: 860px;
}

.page-hero {
  padding: 5.5rem 0 4.5rem;
  background: var(--accent-dark);
  color: #ffffff;
}

.page-hero .eyebrow {
  color: var(--gold-soft);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.3rem, 8vw, 4.35rem);
}

.page-hero p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.intro-grid,
.about-grid,
.contact-grid,
.trust-grid {
  display: grid;
  gap: 2rem;
}

.intro-copy,
.about-copy,
.contact-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p,
.about-copy p,
.contact-copy p {
  margin: 0 0 1rem;
}

.about-section {
  background: var(--surface-warm);
}

.about-portrait {
  margin: 0;
  overflow: hidden;
  background: #eadfcf;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-portrait img {
  width: 100%;
  height: clamp(520px, 62vw, 660px);
  object-fit: cover;
  object-position: 54% 22%;
}

.about-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.about-portrait figcaption strong,
.about-portrait figcaption span {
  display: block;
}

.about-portrait figcaption span {
  color: var(--muted);
}

.about-points {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.about-points div,
.trust-list article,
.journey-grid article,
.guide-grid article,
.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-points div {
  padding: 1rem;
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points span {
  color: var(--muted);
}

.services-section {
  background: var(--accent-soft);
}

.row-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.journey-grid,
.guide-grid,
.card-grid,
.project-category-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  align-items: center;
}

.journey-grid article,
.guide-grid article {
  padding: 1.25rem;
}

.journey-grid span,
.guide-grid span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-grid p,
.guide-grid p,
.project-card p,
.project-card dd,
.trust-list p,
.form-note,
.contact-note span {
  color: var(--muted);
}

.projects-section {
  background: #eff4f1;
}

.project-index-section .container {
  display: grid;
  gap: 1.5rem;
}

.project-directory-card .project-cover {
  height: 210px;
  margin: 0;
  aspect-ratio: auto;
}

.project-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.25rem;
}

.project-directory-panel {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.project-cover,
.location-card-cover {
  position: relative;
  overflow: hidden;
  margin: -1.25rem -1.25rem 0;
  background: var(--accent-soft);
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}

.project-cover img,
.location-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card.featured {
  border-color: rgba(201, 154, 62, 0.65);
}

.project-category-card h3 {
  min-height: 2.5em;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-bar a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.55rem 0.8rem;
  color: var(--accent-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
}

.location-grid,
.service-grid {
  display: grid;
  gap: 1rem;
}

.location-grid {
  margin-bottom: 3rem;
}

.location-grid article,
.service-grid article {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.location-grid article {
  overflow: hidden;
}

.location-card-body {
  display: grid;
  gap: 0.8rem;
}

.location-meta {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-meta div {
  display: grid;
  gap: 0.12rem;
}

.location-meta dt,
.location-meta dd {
  margin: 0;
}

.location-meta dt {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-meta dd {
  color: var(--muted);
}

.location-grid article.is-featured {
  border-color: rgba(201, 154, 62, 0.7);
}

.location-grid article.is-disabled {
  background: rgba(255, 255, 255, 0.62);
}

.location-grid span,
.service-grid span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-grid p,
.service-grid p {
  color: var(--muted);
}

.project-list-heading {
  margin-bottom: 1.5rem;
}

.project-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-topline span {
  padding: 0.3rem 0.5rem;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card p {
  margin: 0;
}

.project-card dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.project-card dt,
.project-card dd {
  margin: 0;
}

.project-card dt {
  color: var(--ink);
  font-weight: 850;
}

.project-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  align-self: end;
  color: var(--accent-dark);
  font-weight: 850;
  text-underline-offset: 0.25rem;
}

.batu-kawan-hub {
  background: #f4f2ea;
}

.batu-kawan-hub .row-heading {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.batu-kawan-hub .project-hub-grid {
  gap: clamp(1.25rem, 3vw, 1.8rem);
}

.batu-kawan-hub .project-card {
  position: relative;
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: #fffdf7;
  border: 1px solid rgba(39, 59, 50, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(28, 45, 37, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.batu-kawan-hub .project-card:hover,
.batu-kawan-hub .project-card:focus-within {
  border-color: rgba(25, 91, 63, 0.26);
  box-shadow: 0 26px 64px rgba(28, 45, 37, 0.14);
  transform: translateY(-3px);
}

.batu-kawan-hub .project-cover {
  margin: 0;
  background: #e8e4d8;
  border-bottom: 0;
  aspect-ratio: 16 / 10;
}

.batu-kawan-hub .project-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(10, 33, 26, 0.04), rgba(10, 33, 26, 0.18)),
    linear-gradient(90deg, rgba(255, 253, 247, 0.02), rgba(255, 253, 247, 0));
  pointer-events: none;
}

.batu-kawan-hub .project-cover img {
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.batu-kawan-hub .project-card:hover .project-cover img,
.batu-kawan-hub .project-card:focus-within .project-cover img {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.045);
}

.batu-kawan-hub .project-card-body {
  display: grid;
  gap: 1rem;
  padding: clamp(1.05rem, 2.5vw, 1.35rem);
}

.batu-kawan-hub .project-topline {
  gap: 0.45rem;
}

.batu-kawan-hub .project-topline span {
  padding: 0.36rem 0.62rem;
  color: #245943;
  background: #e8f1ea;
  border: 1px solid rgba(36, 89, 67, 0.08);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.batu-kawan-hub .project-card h3 {
  min-height: 0;
  margin: 0;
  color: #10241c;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.06;
}

.batu-kawan-hub .project-card p {
  color: #5b665f;
  font-size: 0.98rem;
  line-height: 1.62;
}

.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-facts li {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.38rem 0.62rem;
  color: #17281f;
  background: #f3efe3;
  border: 1px solid rgba(163, 129, 58, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.batu-kawan-hub .project-card a.project-card-cta {
  justify-content: center;
  min-height: 46px;
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.75rem 1rem;
  color: #ffffff;
  background: #136b4a;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(19, 107, 74, 0.18);
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.batu-kawan-hub .project-card a.project-card-cta:hover,
.batu-kawan-hub .project-card a.project-card-cta:focus-visible {
  background: #0e573c;
  box-shadow: 0 16px 34px rgba(19, 107, 74, 0.24);
  transform: translateY(-1px);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.guide-grid a,
.service-grid a,
.location-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--accent-dark);
  font-weight: 850;
  text-underline-offset: 0.25rem;
}

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

.guide-grid article {
  min-height: 100%;
}

.guide-grid p {
  margin: 0.75rem 0 0;
}

.trust-section {
  background: var(--accent-dark);
  color: #ffffff;
}

.trust-section .section-heading .eyebrow {
  color: var(--gold-soft);
}

.trust-list {
  display: grid;
  gap: 1rem;
}

.trust-list article {
  padding: 1.25rem;
  color: var(--ink);
}

.contact-section {
  background: var(--sky);
}

.contact-note {
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(12, 107, 92, 0.18);
  border-radius: var(--radius);
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid #cfc8bb;
  border-radius: var(--radius);
}

.lead-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  cursor: pointer;
}

.lead-form .button {
  width: fit-content;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(18, 140, 126, 0.35);
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 1.4rem 0;
  background: var(--accent-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner,
.footer-layout {
  display: grid;
  gap: 1rem;
}

.footer-layout {
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: #ffffff;
}

.footer-brand p {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 0.7rem;
}

.footer-contact a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.footer-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--accent-dark);
  background: #ffffff;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: #ffffff;
  font-weight: 800;
}

.project-landing-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 74px);
  align-items: end;
  overflow: hidden;
  padding: 5rem 0 3rem;
  color: #ffffff;
}

.project-hero-media,
.project-hero-overlay {
  position: absolute;
  inset: 0;
}

.project-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 30, 27, 0.9) 0%, rgba(7, 30, 27, 0.68) 52%, rgba(7, 30, 27, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 30, 27, 0.46), rgba(7, 30, 27, 0.08));
}

.project-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.project-hero-copy {
  max-width: 760px;
}

.project-hero-copy h1 {
  font-size: clamp(2.35rem, 9vw, 4.9rem);
}

.project-hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
}

.project-hero-copy .hero-compliance-note {
  max-width: 620px;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.installment-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: var(--gold-soft);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  font-weight: 900;
}

.project-jump-nav {
  position: sticky;
  top: 74px;
  z-index: 30;
  background: rgba(251, 248, 241, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.project-jump-nav .container {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
}

.project-jump-nav a {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0.55rem 0.75rem;
  color: var(--accent-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.project-hero-panel,
.installment-panel,
.final-cta-panel,
.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.project-hero-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  color: var(--ink);
}

.project-hero-panel > span,
.highlight-grid span,
.layout-grid span,
.connectivity-grid span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-hero-panel dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.project-hero-panel div {
  display: grid;
  gap: 0.1rem;
}

.project-hero-panel dt,
.project-hero-panel dd {
  margin: 0;
}

.project-hero-panel dt {
  font-weight: 850;
}

.project-hero-panel dd {
  color: var(--muted);
}

.project-two-column,
.highlight-grid,
.layout-grid,
.connectivity-grid,
.gallery-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.project-intro-section,
.gallery-section,
.faq-section {
  background: var(--surface-warm);
}

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

.project-location-section,
.facilities-section,
.floor-plan-section {
  background: #eff4f1;
}

.project-copy {
  color: #394541;
  font-size: 1.05rem;
}

.project-copy p {
  margin: 0 0 1rem;
}

.highlight-grid article,
.layout-grid article,
.connectivity-grid article,
.faq-grid article {
  padding: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.highlight-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.layout-grid h3,
.faq-grid h3 {
  margin-top: 0.35rem;
}

.layout-grid p,
.connectivity-grid p,
.faq-grid p,
.section-note,
.disclaimer {
  color: #46524e;
}

.layout-grid ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.section-note {
  margin: 1.25rem 0 0;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.75rem;
  color: var(--accent-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 0.85rem 1rem;
  color: #46524e;
}

.video-card,
.installment-panel,
.final-cta-panel {
  padding: 1.25rem;
}

.installment-section,
.final-cta-section {
  background: var(--accent-dark);
  color: #ffffff;
}

.installment-panel,
.final-cta-panel {
  color: var(--ink);
}

.installment-panel h2,
.final-cta-panel h2 {
  max-width: 760px;
}

.installment-panel p,
.final-cta-panel p {
  max-width: 780px;
  color: #46524e;
}

.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: #1d7f4e;
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(20, 66, 43, 0.28);
  font-weight: 950;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #12683d;
  box-shadow: 0 18px 42px rgba(20, 66, 43, 0.34);
  transform: translateY(-2px);
}

.disclaimer {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.project-hub-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .section {
    padding: 6rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0.65rem 0.75rem;
    font-size: 0.93rem;
  }

  .nav-links .nav-cta {
    margin-left: 0.3rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
  }

  .hero {
    min-height: 760px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .trust-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  }

  .about-portrait {
    position: sticky;
    top: 96px;
  }

  .row-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .journey-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid,
  .guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-grid.large {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .project-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .location-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .lead-form {
    padding: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-layout {
    grid-template-columns: 1fr minmax(320px, 1.35fr) auto;
    align-items: start;
  }

  .project-landing-hero {
    min-height: 760px;
  }

  .project-hero-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
  }

  .project-two-column {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .highlight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .layout-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .connectivity-grid,
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
  }
}

@media (max-width: 900px) {
  .project-fact-grid,
  .project-gallery-grid,
  .project-directory-grid,
  .project-unit-grid,
  .project-unit-grid.three,
  .project-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-story-grid,
  .project-media-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 0.55rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: 176px;
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.2rem);
  }

  .hero {
    padding: 4rem 0 2.5rem;
  }

  .hero-panel {
    padding: 0.8rem;
  }

  .intent-list a {
    padding: 0.75rem;
  }

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

  .about-portrait img {
    height: 520px;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 50px;
    height: 50px;
    font-size: 0.86rem;
  }

  .project-landing-hero {
    min-height: 640px;
  }

  .project-fact-grid,
  .project-gallery-grid,
  .project-directory-grid,
  .project-unit-grid,
  .project-unit-grid.three,
  .project-faq-grid {
    grid-template-columns: 1fr;
  }

  .project-unit-card .project-plan-frame {
    height: 300px;
  }

  .project-hero-actions .button,
  .project-media-actions .button,
  .project-card-actions .button {
    width: 100%;
  }
}

/* Webmaster AI premium project landing page layer */
.project-landing-hero::before {
  background:
    linear-gradient(90deg, rgba(6, 22, 19, 0.9), rgba(6, 22, 19, 0.64) 46%, rgba(6, 22, 19, 0.16)),
    linear-gradient(0deg, rgba(6, 22, 19, 0.72), rgba(6, 22, 19, 0) 45%),
    var(--project-hero-image, none) center / cover no-repeat;
  transform: scale(1.01);
}

.project-landing-hero .container {
  padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

.project-landing-hero h1 {
  max-width: 900px;
  text-wrap: balance;
}

.project-landing-hero p {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

.project-hero-actions .button,
.project-media-actions .button {
  min-height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.project-journey-nav {
  position: sticky;
  top: 74px;
  z-index: 12;
  border-bottom: 1px solid rgba(10, 49, 43, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.project-journey-nav .container {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  scrollbar-width: none;
}

.project-journey-nav .container::-webkit-scrollbar {
  display: none;
}

.project-journey-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0.62rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(9, 45, 39, 0.06);
}

.project-fact-strip .container {
  padding: 0;
}

.project-fact-grid {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 58px rgba(9, 45, 39, 0.14);
  backdrop-filter: blur(18px);
}

.project-fact-box {
  position: relative;
  min-height: 124px;
  padding: 1.12rem;
  overflow: hidden;
  border-color: rgba(12, 107, 92, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.project-fact-box::before,
.project-unit-card::before,
.project-faq-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), #c5a85f);
}

.project-fact-box strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.project-section-title {
  position: relative;
}

.project-section-title h2 {
  max-width: 900px;
  text-wrap: balance;
}

.project-section-title .eyebrow,
.project-media-body .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(12, 107, 92, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
}

.project-section-title .eyebrow::before,
.project-media-body .eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.project-story-grid,
.project-media-split {
  gap: clamp(1.4rem, 4vw, 3rem);
}

.project-image-frame,
.project-gallery-card,
.project-media-panel,
.project-unit-card,
.project-faq-card {
  border-color: rgba(12, 107, 92, 0.14);
  box-shadow: 0 22px 50px rgba(9, 45, 39, 0.1);
}

.project-image-frame {
  min-height: 100%;
}

.project-story-grid .project-image-frame {
  align-self: stretch;
  min-height: 420px;
}

.project-story-grid .project-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.project-detail-list li {
  position: relative;
  padding-left: 2.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf5 100%);
}

.project-detail-list li::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.project-gallery-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-gallery-card:hover,
.project-unit-card:hover,
.project-faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 64px rgba(9, 45, 39, 0.14);
}

.project-gallery-card figcaption {
  color: var(--accent-dark);
}

.project-unit-grid + .project-unit-grid {
  margin-top: 1rem;
}

.project-unit-card,
.project-faq-card {
  position: relative;
}

.project-unit-card .project-plan-frame {
  height: clamp(340px, 34vw, 500px);
  border-bottom: 1px solid rgba(12, 107, 92, 0.12);
  background:
    linear-gradient(135deg, rgba(220, 236, 232, 0.88), rgba(251, 248, 241, 0.92));
}

.project-plan-frame {
  overflow: hidden;
  border: 1px solid rgba(12, 107, 92, 0.14);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(9, 45, 39, 0.1);
}

.project-plan-frame img,
.project-contain-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.project-story-grid .project-contain-frame img {
  object-fit: contain;
  background: #ffffff;
}

.project-plan-frame-large {
  min-height: 560px;
  padding: clamp(0.7rem, 2vw, 1.1rem);
}

.project-section-lead {
  max-width: 760px;
  margin: -0.35rem 0 1.35rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.project-benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.project-story-grid .project-benefit-cards,
.project-media-split .project-benefit-cards {
  grid-template-columns: 1fr;
}

.project-benefit-cards article {
  min-height: 104px;
  padding: 1rem;
  border: 1px solid rgba(12, 107, 92, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(9, 45, 39, 0.07);
}

.project-benefit-cards strong {
  display: block;
  color: var(--accent-dark);
  font-size: 0.98rem;
}

.project-benefit-cards span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.45;
}

.project-unit-grid.three .project-unit-card .project-plan-frame {
  height: clamp(300px, 27vw, 430px);
}

.project-unit-body {
  padding: 1.1rem;
}

.project-unit-body h3 {
  color: var(--accent-dark);
}

.project-unit-facts > div {
  min-width: 0;
}

.project-unit-facts span {
  padding-bottom: 0.24rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 850;
}

.project-unit-facts strong {
  min-height: 42px;
  padding: 0.64rem 0.72rem;
  border: 1px solid rgba(12, 107, 92, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
}

.project-media-panel {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf5 100%);
}

.project-video-frame {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-video-frame-portrait {
  aspect-ratio: 9 / 16;
  width: min(100%, 420px);
  margin-inline: auto;
}

.project-media-copy {
  align-self: center;
}

.project-media-preview {
  border-bottom: 1px solid rgba(12, 107, 92, 0.12);
}

.montview-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.montview-gallery-grid .project-gallery-card img {
  height: clamp(260px, 22vw, 360px);
}

.montview-gallery-grid .project-gallery-card:nth-child(1) img,
.montview-gallery-grid .project-gallery-card:nth-child(5) img,
.montview-gallery-grid .project-gallery-card:nth-child(6) img {
  object-fit: contain;
  background: #ffffff;
}

.project-vr-preview img {
  height: clamp(340px, 34vw, 500px);
}

.project-vr-panel {
  overflow: hidden;
}

.project-vr-iframe {
  width: 100%;
  min-height: clamp(360px, 42vw, 560px);
  background: #0b1715;
}

.project-vr-iframe iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  border: 0;
}

@media (max-width: 760px) {
  .montview-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-plan-frame-large {
    min-height: 420px;
  }

  .project-video-frame-portrait {
    width: min(100%, 320px);
  }

  .project-benefit-cards {
    grid-template-columns: 1fr;
  }

  .project-benefit-cards article {
    min-height: 0;
  }

  .project-vr-iframe,
  .project-vr-iframe iframe {
    min-height: 360px;
    height: 360px;
  }
}

.project-faq-card {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf5 100%);
}

.project-faq-card h3 {
  color: var(--accent-dark);
}

.project-page-cta {
  border: 0;
  background:
    linear-gradient(135deg, rgba(7, 63, 55, 0.96), rgba(12, 107, 92, 0.92)),
    var(--project-hero-image, none) center / cover no-repeat;
  color: #ffffff;
}

.project-page-cta .project-media-body {
  padding: clamp(1.3rem, 4vw, 2.4rem);
}

.project-page-cta h2,
.project-page-cta p,
.project-page-cta .eyebrow {
  color: #ffffff;
}

.project-page-cta .eyebrow {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.everine-hero::before {
  background:
    radial-gradient(circle at 28% 28%, rgba(202, 174, 105, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(5, 18, 16, 0.9), rgba(5, 18, 16, 0.58) 48%, rgba(5, 18, 16, 0.2)),
    linear-gradient(0deg, rgba(5, 18, 16, 0.72), rgba(5, 18, 16, 0.02) 54%),
    var(--project-hero-image, none) center / cover no-repeat;
}

.project-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
  max-width: 760px;
}

.project-hero-badges span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.project-lede {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.78;
}

.everine-highlight-grid .project-faq-card {
  min-height: 230px;
  padding-top: 1.2rem;
}

.project-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.project-plan-action,
.project-gallery-card button {
  appearance: none;
  border: 0;
  font: inherit;
}

.project-plan-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 0.85rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(12, 107, 92, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 900;
}

.project-plan-action:hover,
.project-plan-action:focus-visible {
  background: var(--accent);
  color: #ffffff;
}

.project-gallery-card button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #0b1715;
  cursor: zoom-in;
}

.project-gallery-card button img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 420ms ease;
}

.project-gallery-card button:hover img,
.project-gallery-card button:focus-visible img {
  transform: scale(1.035);
}

.everine-video-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: stretch;
}

.everine-video-panel .project-video-frame {
  min-height: 420px;
  border-bottom: 0;
  border-right: 1px solid rgba(12, 107, 92, 0.12);
}

.everine-video-panel .project-media-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.everine-vr-section .project-media-preview {
  aspect-ratio: 16 / 10;
}

.everine-final-cta {
  min-height: 420px;
  display: flex;
  align-items: center;
}

.project-lightbox[hidden] {
  display: none;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 16, 0.78);
  backdrop-filter: blur(10px);
}

.project-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(86vh, 900px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius) + 8px);
  background: #fbfaf5;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.project-lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(12, 107, 92, 0.12);
}

.project-lightbox__header h2 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.project-lightbox__close {
  min-height: 38px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(12, 107, 92, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 900;
}

.project-lightbox__canvas {
  min-height: 0;
  padding: 1rem;
  overflow: auto;
}

.project-lightbox__canvas img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #ffffff;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-revealed,
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.project-gallery-grid > [data-reveal]:nth-child(2),
.project-unit-grid > [data-reveal]:nth-child(2) {
  --reveal-delay: 90ms;
}

.project-gallery-grid > [data-reveal]:nth-child(3) {
  --reveal-delay: 160ms;
}

.project-gallery-grid > [data-reveal]:nth-child(4) {
  --reveal-delay: 230ms;
}

.project-gallery-grid > [data-reveal]:nth-child(5) {
  --reveal-delay: 300ms;
}

.project-gallery-grid > [data-reveal]:nth-child(6) {
  --reveal-delay: 370ms;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .project-gallery-card button img,
  .project-gallery-card,
  .project-unit-card,
  .project-faq-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .project-journey-nav {
    top: 66px;
  }

  .project-fact-strip {
    margin-top: -1.2rem;
  }

  .project-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 1rem;
  }

  .project-unit-grid.three .project-unit-card .project-plan-frame,
  .project-unit-card .project-plan-frame {
    height: 360px;
  }

  .project-story-grid .project-image-frame,
  .project-story-grid .project-image-frame img {
    min-height: 320px;
  }

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

  .everine-video-panel .project-video-frame {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(12, 107, 92, 0.12);
  }
}

@media (max-width: 430px) {
  .project-landing-hero .container {
    padding-bottom: 4.2rem;
  }

  .project-journey-nav a {
    min-height: 36px;
    padding: 0.55rem 0.72rem;
    font-size: 0.82rem;
  }

  .project-fact-grid {
    grid-template-columns: 1fr;
  }

  .project-unit-grid.three .project-unit-card .project-plan-frame,
  .project-unit-card .project-plan-frame {
    height: 320px;
  }

  .project-unit-facts {
    grid-template-columns: 1fr;
  }

  .project-hero-badges span {
    min-height: 32px;
    font-size: 0.82rem;
  }

  .everine-highlight-grid .project-faq-card {
    min-height: auto;
  }

  .project-lightbox {
    padding: 0.7rem;
  }

  .project-lightbox__canvas {
    padding: 0.7rem;
  }

  .project-story-grid .project-image-frame,
  .project-story-grid .project-image-frame img {
    min-height: 260px;
  }
}

/* Everine scoped enhancement layer: visual polish only, copy preserved. */
html {
  scroll-padding-top: 150px;
}

.everine-hero {
  min-height: min(760px, calc(100svh - 74px));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.everine-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(249, 247, 239, 0.98), rgba(249, 247, 239, 0));
  pointer-events: none;
  z-index: 0;
}

.everine-hero .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(7rem, 11vw, 11rem);
}

.everine-hero h1 {
  letter-spacing: 0;
  line-height: 0.94;
}

.everine-hero .button.primary {
  box-shadow: 0 18px 44px rgba(12, 107, 92, 0.3);
}

.project-fact-strip {
  position: relative;
  z-index: 3;
  margin-top: clamp(-3.4rem, -4vw, -2rem);
}

.project-fact-grid {
  gap: 0.72rem;
}

.project-fact-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-fact-box span {
  line-height: 1.35;
}

.project-journey-nav {
  box-shadow: 0 12px 34px rgba(9, 45, 39, 0.08);
}

.project-journey-nav a {
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.project-journey-nav a:hover,
.project-journey-nav a:focus-visible,
.project-journey-nav a.is-active {
  border-color: rgba(12, 107, 92, 0.84);
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.everine-intro-section,
.everine-gallery-section,
.everine-vr-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(220, 236, 232, 0.24) 48%, rgba(255, 255, 255, 0));
}

.project-story-grid {
  align-items: stretch;
}

.project-story-grid > div:first-child {
  align-self: center;
}

.project-story-grid .project-image-frame {
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 32px 76px rgba(9, 45, 39, 0.14);
}

.project-story-grid .project-image-frame img {
  transition: transform 700ms ease;
}

.project-story-grid .project-image-frame:hover img {
  transform: scale(1.025);
}

.project-detail-list {
  display: grid;
  gap: 0.78rem;
}

.project-detail-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.everine-highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.everine-highlight-grid .project-faq-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.everine-highlight-grid .project-faq-card p {
  margin-top: 0;
}

.project-unit-card {
  overflow: hidden;
}

.project-unit-card .project-plan-frame {
  display: grid;
  place-items: center;
  padding: clamp(0.65rem, 1.4vw, 1rem);
}

.project-unit-card .project-plan-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: #ffffff;
}

.project-unit-body {
  display: flex;
  flex-direction: column;
}

.project-unit-body p {
  margin-bottom: 0;
}

.project-plan-action {
  align-self: flex-start;
}

.project-unit-facts {
  gap: 0.65rem;
}

.project-unit-facts strong {
  display: flex;
  align-items: center;
}

.project-gallery-grid {
  align-items: stretch;
}

.project-gallery-card {
  min-height: 100%;
}

.project-gallery-card button {
  aspect-ratio: 16 / 10;
}

.project-gallery-card button img {
  object-fit: cover;
}

.project-gallery-card:nth-child(2) button img,
.project-gallery-card:nth-child(3) button img,
.project-gallery-card:nth-child(5) button img {
  object-fit: contain;
  padding: 0.65rem;
  background:
    linear-gradient(135deg, rgba(220, 236, 232, 0.88), rgba(251, 248, 241, 0.96));
}

.everine-video-panel {
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
}

.everine-video-panel .project-video-frame {
  background: #071512;
}

.everine-video-panel .project-media-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 241, 0.98));
}

.everine-vr-section .project-media-preview img {
  height: 100%;
  object-fit: cover;
}

.project-page-cta {
  position: relative;
  overflow: hidden;
}

.project-page-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 18, 16, 0), rgba(202, 174, 105, 0.18));
  pointer-events: none;
}

.project-page-cta .project-media-body {
  position: relative;
  z-index: 1;
}

.floating-whatsapp {
  box-shadow: 0 18px 42px rgba(12, 107, 92, 0.34);
}

@media (prefers-reduced-motion: reduce) {
  .project-story-grid .project-image-frame img,
  .project-journey-nav a {
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 130px;
  }

  .everine-hero {
    min-height: 680px;
  }

  .project-fact-strip {
    margin-top: -2rem;
  }

  .everine-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 120px;
  }

  .everine-hero {
    min-height: min(620px, calc(100svh - 96px));
  }

  .everine-hero .container {
    padding-top: 5.4rem;
    padding-bottom: 2.7rem;
  }

  .everine-hero h1 {
    line-height: 1;
  }

  .project-fact-strip {
    margin-top: -1.35rem;
  }

  .everine-highlight-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery-card button {
    aspect-ratio: 4 / 3;
  }

  .project-media-actions {
    width: 100%;
  }
}

/* Sevora Residence premium project page */
.sevora-hero::before {
  background:
    linear-gradient(90deg, rgba(18, 27, 24, 0.94), rgba(18, 27, 24, 0.68) 47%, rgba(18, 27, 24, 0.16)),
    linear-gradient(0deg, rgba(18, 27, 24, 0.82), rgba(18, 27, 24, 0) 54%),
    var(--project-hero-image, none) 72% center / cover no-repeat;
}

.sevora-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(220, 236, 232, 0.24)),
    #f4efe4;
}

.sevora-portrait-frame img {
  object-position: center top;
}

.sevora-highlight-grid .project-faq-card {
  min-height: 250px;
}

.sevora-map-frame img {
  object-fit: contain;
  background: #ffffff;
}

.sevora-plan-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: stretch;
}

.sevora-plan-only {
  display: block;
}

.project-plan-wide {
  margin: 0;
  min-width: 0;
}

.sevora-plan-button {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 390px;
  margin: 0;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: var(--accent-dark);
  cursor: zoom-in;
}

.sevora-plan-button img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.sevora-plan-button span {
  justify-self: start;
  margin-top: 0.75rem;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  font-weight: 900;
}

.sevora-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sevora-video-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 460px;
  justify-self: start;
}

.sevora-video-only {
  width: fit-content;
}

.sevora-short-frame {
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  min-height: 0;
  margin: 0 auto;
  border-right: 0;
  border-bottom: 1px solid rgba(12, 107, 92, 0.12);
}

.sevora-vr-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.45fr);
  align-items: stretch;
}

.sevora-vr-iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  background: #0b1715;
}

.sevora-final-cta {
  min-height: 440px;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .sevora-plan-panel,
  .sevora-video-panel,
  .sevora-vr-panel {
    grid-template-columns: 1fr;
  }

  .sevora-video-only {
    width: 100%;
  }

  .sevora-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sevora-plan-button {
    min-height: 310px;
  }

  .sevora-short-frame {
    width: min(430px, 100%);
    min-height: auto;
    margin: 0 auto;
    border-right: 0;
    border-bottom: 1px solid rgba(12, 107, 92, 0.12);
  }

  .sevora-vr-iframe {
    min-height: 460px;
  }
}

@media (max-width: 430px) {
  .sevora-highlight-grid {
    grid-template-columns: 1fr;
  }

  .sevora-plan-button {
    min-height: 240px;
    padding: 0.7rem;
  }

  .sevora-vr-iframe {
    min-height: 360px;
  }
}
