/* ==========================================================================
   Bintaro Hijau Residence — Modern Green Oasis
   Stylesheet built to Bintaro_Hijau_Brand_Guidelines.pdf (Laras Kata, v1.0)
   Palette, type scale, grid and spacing rules come from the PDF — do not
   introduce colours or typefaces outside the tokens defined below.
   ========================================================================== */

/* ---------- 01 · Tokens ---------- */
:root {
  /* Core palette — 02 · Color Palette */
  --forest: #354417;   /* Primary — headlines, marks */
  --sage: #7E9368;     /* Secondary — tint, keyline */
  --cream: #FAFFE3;    /* Neutral — background */
  --paper: #FFFFFF;    /* Cards, space */
  --gold: #E7C35A;     /* Accent ONLY — never a background */

  /* Derived tints, all drawn from the core three */
  --forest-deep: #26310F;
  --sage-tint: rgba(126, 147, 104, 0.12);
  --sage-line: rgba(126, 147, 104, 0.32);
  /* Teks bodi sekunder. Alpha 0.76 (bukan 0.68) supaya lolos WCAG AA
     di atas cream, paper, maupun sage-tint. */
  --forest-muted: rgba(53, 68, 23, 0.76);
  /* Sage murni hanya 3.27:1 di atas cream — terlalu tipis untuk teks.
     --sage dipakai untuk tint, garis, dan ikon dekoratif; --sage-text
     adalah pasangannya yang aman untuk label & caption (≥4.5:1). */
  --sage-text: #5A6C40;
  --scrim: linear-gradient(180deg, rgba(38, 49, 15, 0) 0%, rgba(38, 49, 15, 0.28) 45%, rgba(38, 49, 15, 0.82) 100%);

  /* Type */
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --label: "Barlow Condensed", "Inter", sans-serif;

  /* Layout — 05 · Layout System: safe margin 6%, 12-col grid */
  --margin: 6%;
  --maxw: 1240px;
  --gap: clamp(1.5rem, 3vw, 2.5rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 2px;         /* restrained, editorial — not rounded/bubbly */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 02 · Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;              /* PDF: body always 1.4 */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- 03 · Typography ---------- */
/* Display serif is reserved for one editorial moment per layout. */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.6vw, 3.375rem);   /* 54pt ceiling */
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}
.display em { font-style: italic; }

h1, .h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.5rem);       /* 40pt */
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
}

h2, .h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.625rem);    /* 26pt */
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

h3 { font-family: var(--sans); font-weight: 600; font-size: 1.0625rem; line-height: 1.3; margin: 0; }

p { margin: 0 0 1.1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

/* Caption / label — Barlow Condensed Bold, uppercase, +3 tracking. Short only. */
.label {
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: var(--sage-text);
  margin: 0 0 1.1rem;
  display: block;
}
/* Penanda scarcity. Emas di atas cream hanya 1.7:1 — tak terbaca. Di latar
   terang emas jadi titik penanda dan teksnya forest; di latar forest emas
   sudah kontras (±7:1) sehingga boleh jadi warna teks. */
.label--gold { color: var(--forest); display: flex; align-items: center; gap: 0.5rem; }
.label--gold::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.section--forest .label--gold,
.cta .label--gold,
.pagehead .label--gold { color: var(--gold); }
.section--forest .label--gold::before,
.cta .label--gold::before,
.pagehead .label--gold::before { display: none; }
.label--ondark { color: rgba(250, 255, 227, 0.88); }

.lede { font-size: clamp(1rem, 1.5vw, 1.0625rem); color: var(--forest-muted); }

/* ---------- 04 · Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--margin);
}
.section { padding-block: var(--section-y); }
.section--tint { background: var(--sage-tint); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest .lede { color: rgba(250, 255, 227, 0.74); }
.section--forest p { color: rgba(250, 255, 227, 0.82); }

/* Negative space is the premium signal — headers breathe. */
.section-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; }
.section-head--center p { margin-inline: auto; }

.grid { display: grid; gap: var(--gap); }
@media (min-width: 720px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .split--media-right .split__media { order: 2; } }

.rule { height: 1px; background: var(--sage-line); border: 0; margin: 0; }

/* ---------- 05 · Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn--primary { background: var(--forest); color: var(--cream); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--forest-deep); }
.btn--ghost { border-color: var(--sage-line); color: var(--forest); }
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--forest); background: var(--forest); color: var(--cream); }
.btn--onforest { background: var(--cream); color: var(--forest); }
.btn--onforest:hover, .btn--onforest:focus-visible { background: var(--paper); }
.btn--onimage { background: var(--cream); color: var(--forest); }
.btn--onimage:hover, .btn--onimage:focus-visible { background: var(--paper); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--forest);
  border-bottom: 1px solid var(--sage-line);
  padding-bottom: 0.3rem;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.textlink:hover, .textlink:focus-visible { border-color: var(--forest); gap: 0.85rem; }
.section--forest .textlink { color: var(--cream); border-color: rgba(250, 255, 227, 0.34); }
.section--forest .textlink:hover { border-color: var(--cream); }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- 06 · Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 255, 227, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--sage-line); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }

.nav { display: none; }
@media (min-width: 1080px) { .nav { display: flex; align-items: center; gap: 2rem; } }
.nav__link {
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--forest);
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav__link:hover { border-bottom-color: var(--sage); }
.nav__link[aria-current="page"] { border-bottom-color: var(--forest); }

.nav__group { position: relative; }
.nav__toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
.nav__toggle svg { width: 10px; height: 10px; transition: transform 0.25s var(--ease); }
.nav__group.is-open .nav__toggle svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: -1rem;
  min-width: 15rem;
  background: var(--paper);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  padding: 0.5rem;
  display: none;
  box-shadow: 0 18px 44px rgba(38, 49, 15, 0.1);
}
.nav__group.is-open .nav__menu { display: block; }
.nav__menu a {
  display: block;
  padding: 0.7rem 0.9rem;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: background-color 0.2s var(--ease);
}
.nav__menu a:hover { background: var(--sage-tint); }

.header__cta { display: none; }
@media (min-width: 1080px) { .header__cta { display: inline-flex; } }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 76px 0 0;
  background: var(--cream);
  z-index: 55;
  padding: 2rem var(--margin) 3rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.drawer.is-open { opacity: 1; transform: none; visibility: visible; }
@media (min-width: 1080px) { .drawer { display: none; } }
.drawer a {
  display: block;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--sage-line);
  font-family: var(--label);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.drawer a.is-sub { padding-left: 1.25rem; font-size: 0.875rem; color: var(--forest-muted); letter-spacing: 0.12em; }
.drawer .btn { margin-top: 2rem; width: 100%; justify-content: center; }
body.is-locked { overflow: hidden; }

/* ---------- 07 · Hero ---------- */
/* 05 · Layout: upper third stays clear, headline anchors lower-left. */
.hero { position: relative; background: var(--forest-deep); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: var(--scrim); }
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;      /* lower-left anchor */
  min-height: clamp(30rem, 82vh, 46rem);
  padding-block: 4rem 4.5rem;
  color: var(--cream);
}
.hero__inner .display { max-width: 20ch; color: var(--cream); }
.hero__inner p { max-width: 46ch; margin-top: 1.5rem; color: rgba(250, 255, 227, 0.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

/* Compact hero for interior pages */
.pagehead { background: var(--forest); color: var(--cream); padding-block: clamp(3.5rem, 9vw, 6rem); }
.pagehead .display { color: var(--cream); max-width: 22ch; }
.pagehead p { margin-top: 1.35rem; max-width: 54ch; color: rgba(250, 255, 227, 0.8); }
.crumbs { font-size: 0.8125rem; color: rgba(250, 255, 227, 0.6); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--cream); }

/* ---------- 08 · Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(38, 49, 15, 0.08); }
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--sage-tint); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.03); }
.card__body { padding: clamp(1.5rem, 3vw, 2rem); display: flex; flex-direction: column; flex: 1; }
.card__body > .btn, .card__body > .textlink { margin-top: auto; align-self: flex-start; }

/* Unit type card */
.unit__price {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 1.4rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--sage-line);
}
.unit__price small { display: block; font-family: var(--label); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--sage-text); margin-bottom: 0.4rem; }

.specs { list-style: none; margin: 1.25rem 0 1.5rem; padding: 0; display: grid; gap: 0.7rem; align-content: start; }
/* Di dalam kartu, daftar spek menyerap sisa ruang agar baris harga
   dan tautan sejajar antar kartu meski jumlah speknya berbeda. */
.card__body .specs { flex: 1 0 auto; }
.specs li { position: relative; padding-left: 1.4rem; font-size: 0.9375rem; color: var(--forest-muted); }
.specs li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 6px; height: 6px;
  border: 1px solid var(--sage);
  transform: rotate(45deg);
}

/* Pillar card — 01 · Brand Essence, the four pillars */
.pillar { padding: clamp(1.75rem, 3vw, 2.25rem); background: var(--paper); border: 1px solid var(--sage-line); border-radius: var(--radius); }
.pillar__num { font-family: var(--serif); font-size: 1.25rem; color: var(--sage-text); display: block; margin-bottom: 1.5rem; }
.pillar h3 { font-family: var(--serif); font-weight: 400; font-size: 1.375rem; margin-bottom: 0.75rem; }
.pillar p { font-size: 0.9375rem; color: var(--forest-muted); }
/* --- Konteks gelap (forest) ---------------------------------------------
   Teks sekunder default memakai --forest-muted / --sage; keduanya hijau
   gelap dan jadi tak terbaca di atas forest. Semua latar forest — bukan
   hanya .section--forest, tapi juga .cta dan .pagehead — harus membalik
   warna-warna itu ke cream. Rasio kontras hasilnya 5:1–8,4:1 (WCAG AA). */
.section--forest .pillar { background: rgba(250, 255, 227, 0.07); border-color: rgba(250, 255, 227, 0.22); }
.section--forest .pillar h3 { color: var(--cream); }

.section--forest .pillar p,
.section--forest .fac p,
.section--forest .fac ul li,
.section--forest .specs li,
.section--forest .prose ul li,
.cta .pillar p, .cta .specs li,
.pagehead .specs li, .pagehead .prose ul li { color: rgba(250, 255, 227, 0.82); }

.section--forest .lede, .cta .lede, .pagehead .lede { color: rgba(250, 255, 227, 0.78); }
.section--forest .pillar__num, .cta .pillar__num { color: rgba(250, 255, 227, 0.62); }

.section--forest .label:not(.label--gold),
.cta .label:not(.label--gold),
.pagehead .label:not(.label--gold) { color: rgba(250, 255, 227, 0.88); }

.section--forest .figure figcaption,
.cta .figure figcaption,
.pagehead .figure figcaption { color: rgba(250, 255, 227, 0.62); }

.section--forest .specs li::before,
.section--forest .prose ul li::before,
.cta .specs li::before,
.pagehead .specs li::before { border-color: rgba(250, 255, 227, 0.5); }

.section--forest .stat__l, .cta .stat__l, .pagehead .stat__l { color: rgba(250, 255, 227, 0.7); }

/* Facility card — icon-led, no stock photography (06 · Photography) */
.fac { padding: clamp(1.5rem, 3vw, 2rem); background: var(--paper); border: 1px solid var(--sage-line); border-radius: var(--radius); }
.fac__icon { width: 34px; height: 34px; color: var(--sage); margin-bottom: 1.35rem; }
.fac__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.fac h3 { margin-bottom: 0.6rem; }
.fac p { font-size: 0.9375rem; color: var(--forest-muted); }
.fac ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.55rem; }
.fac ul li { position: relative; padding-left: 1.1rem; font-size: 0.875rem; color: var(--forest-muted); }
.fac ul li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 5px; height: 1px; background: var(--sage); }

/* ---------- 09 · Access / travel-time list ---------- */
.access { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.access li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sage-line);
  font-size: 0.9375rem;
}
.access li:first-child { border-top: 1px solid var(--sage-line); }
.access__time {
  flex-shrink: 0;
  min-width: 5.25rem;
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage-text);
}
.section--forest .access li { border-color: rgba(250, 255, 227, 0.18); }
.section--forest .access__time { color: var(--gold); }

/* ---------- 10 · Gallery ---------- */
.gallery { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery button {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-tint);
  display: block;
  width: 100%;
  padding: 0;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery button:hover img { transform: scale(1.04); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(38, 49, 15, 0.95);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 82vh; width: auto; border-radius: var(--radius); }
.lightbox__cap { color: rgba(250, 255, 227, 0.76); font-size: 0.875rem; text-align: center; margin-top: 1rem; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  color: var(--cream);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid rgba(250, 255, 227, 0.28);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: background-color 0.25s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(250, 255, 227, 0.14); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }

/* ---------- 11 · Figures & prose ---------- */
.figure { border: 1px solid var(--sage-line); border-radius: var(--radius); background: var(--paper); padding: clamp(0.75rem, 2vw, 1.25rem); }
.figure img { width: 100%; border-radius: var(--radius); }
.figure figcaption { font-family: var(--label); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--sage-text); margin-top: 1rem; }
/* Varian untuk figure yang diletakkan di atas latar forest. */
.figure--ondark { background: transparent; border-color: rgba(250, 255, 227, 0.22); }

.prose { max-width: 44rem; }
.prose h2 { margin: 2.75rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.75rem; }
.prose > :first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.4em; padding-left: 0; list-style: none; display: grid; gap: 0.65rem; }
.prose ul li { position: relative; padding-left: 1.4rem; color: var(--forest-muted); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.52em; width: 6px; height: 6px; border: 1px solid var(--sage); transform: rotate(45deg); }
.prose strong { font-weight: 600; color: var(--forest); }

/* Pull quote — the one serif moment inside prose */
.quote { margin: 3rem 0; padding-left: clamp(1.25rem, 3vw, 2rem); border-left: 2px solid var(--gold); }
.quote p { font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.75rem); line-height: 1.3; color: var(--forest); }
.section--forest .quote p { color: var(--cream); }

/* ---------- 12 · Stats ---------- */
.stat { border-top: 1px solid var(--sage-line); padding-top: 1.35rem; }
.stat__n { font-family: var(--serif); font-size: clamp(1.85rem, 4vw, 2.5rem); line-height: 1; display: block; }
.stat__l { font-family: var(--label); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--sage-text); margin-top: 0.7rem; display: block; }
.section--forest .stat { border-color: rgba(250, 255, 227, 0.22); }

/* ---------- 13 · Form ---------- */
.field { display: grid; gap: 0.55rem; margin-bottom: 1.35rem; }
.field label { font-family: var(--label); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--sage-text); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--sage); }
.field textarea { resize: vertical; min-height: 8rem; }
.form-note { font-size: 0.8125rem; color: var(--forest-muted); margin-top: 1rem; }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.contact-list dt, .contact-list .k { font-family: var(--label); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--sage-text); margin-bottom: 0.45rem; }
.contact-list .v { font-size: 1.0625rem; }
.contact-list a:hover { border-bottom: 1px solid currentColor; }

/* ---------- 14 · CTA band ---------- */
.cta { background: var(--forest); color: var(--cream); text-align: center; }
.cta .display { color: var(--cream); margin-inline: auto; max-width: 18ch; }
.cta p { margin: 1.5rem auto 0; color: rgba(250, 255, 227, 0.8); }
.cta .btn { margin-top: 2.5rem; }

/* ---------- 15 · Footer ---------- */
.footer { background: var(--forest-deep); color: rgba(250, 255, 227, 0.72); padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; font-size: 0.9375rem; }
.footer a:hover { color: var(--cream); }
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand img { height: 44px; width: auto; margin-bottom: 1.25rem; }
.footer h4 { font-family: var(--label); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--cream); margin: 0 0 1.15rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer__bottom { margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(250, 255, 227, 0.16); font-size: 0.8125rem; color: rgba(250, 255, 227, 0.5); display: grid; gap: 1rem; }
@media (min-width: 760px) { .footer__bottom { grid-template-columns: 1fr auto; align-items: center; } }
.footer__disclaimer { font-size: 0.75rem; line-height: 1.5; color: rgba(250, 255, 227, 0.6); margin-top: 1.5rem; max-width: 78ch; }
.social { display: flex; gap: 0.75rem; }
.social a { width: 38px; height: 38px; border: 1px solid rgba(250, 255, 227, 0.22); border-radius: 50%; display: grid; place-items: center; transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease); }
.social a:hover { border-color: var(--cream); background: rgba(250, 255, 227, 0.08); }
.social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- 16 · Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 32px rgba(38, 49, 15, 0.28);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.wa-float:hover { background: var(--forest-deep); transform: translateY(-2px); }
.wa-float svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.wa-float span { display: none; }
@media (min-width: 560px) { .wa-float span { display: inline; } }

/* ---------- 17 · Reveal on scroll ---------- */
/* Hanya disembunyikan kalau JS aktif — tanpa JS konten tetap terbaca penuh. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .card, .card__media img, .gallery img { transition: none; }
}

/* ---------- 18 · Utilities ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--forest); color: var(--cream); padding: 0.85rem 1.25rem;
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8125rem;
}
.skip:focus { left: 1rem; top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
