:root {
  --picker-bg: #121618;
  --picker-ink: #f3f0e9;
  --picker-muted: #a8b0ac;
  --picker-line: rgba(243, 240, 233, 0.18);
  --focus: #ffca55;
  --ease-out: cubic-bezier(0.22, 0.8, 0.24, 1);
  font-family: "Avenir Next", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
  color: #172126;
  background: #121618;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--picker-bg);
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #111;
  background: var(--focus);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.showcase-picker {
  position: sticky;
  z-index: 200;
  top: 0;
  color: var(--picker-ink);
  background: rgba(18, 22, 24, 0.98);
  border-bottom: 1px solid var(--picker-line);
}

.picker-inner {
  width: min(100% - 32px, 1360px);
  margin: 0 auto;
  padding: 15px 0 13px;
}

.picker-topline,
.picker-summary,
.picker-help,
.direction-picker {
  min-width: 0;
}

.picker-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.picker-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--picker-ink);
  text-decoration: none;
}

.picker-brand-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--picker-ink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1;
}

.picker-logo,
.site-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.picker-logo {
  width: 31px;
  height: 36px;
}

.site-logo {
  width: 31px;
  height: 38px;
}

.picker-brand strong,
.picker-brand small {
  display: block;
}

.picker-brand strong {
  font-size: 0.79rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.picker-brand small {
  margin-top: 2px;
  color: var(--picker-muted);
  font-size: 0.63rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.picker-note,
.picker-help {
  margin: 0;
  color: var(--picker-muted);
  font-size: 0.72rem;
}

.direction-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.direction-tab {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  color: var(--picker-muted);
  text-align: left;
  background: transparent;
  border: 1px solid var(--picker-line);
  border-radius: 8px;
  transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.direction-tab:hover {
  color: var(--picker-ink);
  border-color: rgba(243, 240, 233, 0.42);
  transform: translateY(-1px);
}

.direction-tab.is-active {
  color: #171b1c;
  background: var(--picker-ink);
  border-color: var(--picker-ink);
}

.tab-index {
  flex: 0 0 auto;
  color: inherit;
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.62;
}

.tab-copy {
  min-width: 0;
}

.tab-copy strong,
.tab-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab-copy strong {
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.tab-copy small {
  margin-top: 2px;
  font-size: 0.64rem;
  opacity: 0.68;
}

.picker-summary {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2.2fr);
  align-items: center;
  gap: 22px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--picker-line);
}

.summary-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.summary-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f3b25e;
  box-shadow: 0 0 0 4px rgba(243, 178, 94, 0.13);
}

.summary-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.summary-facts div {
  min-width: 0;
}

.summary-facts dt {
  margin-bottom: 3px;
  color: var(--picker-muted);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-facts dd {
  margin: 0;
  color: var(--picker-ink);
  font-size: 0.7rem;
  line-height: 1.35;
}

.picker-help {
  margin-top: 10px;
}

kbd {
  display: inline-block;
  min-width: 17px;
  margin: 0 1px;
  padding: 1px 4px;
  color: var(--picker-ink);
  background: #2b3234;
  border: 1px solid #4a5355;
  border-radius: 4px;
  font-size: 0.64rem;
  line-height: 1.2;
  text-align: center;
}

.demo-toast {
  position: fixed;
  z-index: 280;
  right: 18px;
  bottom: 18px;
  width: min(380px, calc(100% - 36px));
  padding: 14px 16px;
  color: #1c1e1d;
  background: #fff8dc;
  border: 1px solid #e1c56a;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.demo-toast:not([hidden]) {
  animation: toast-in 220ms var(--ease-out) both;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.direction {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
  padding: 25px 0 21px;
}

.site-wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.wordmark-symbol {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1;
}

.site-wordmark strong,
.site-wordmark small {
  display: block;
}

.site-wordmark strong {
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-wordmark small {
  margin-top: 3px;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  opacity: 0.68;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
  min-width: 0;
  font-size: 0.73rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-action,
.link-button {
  padding: 0;
  color: inherit;
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-action:hover,
.link-button:hover {
  text-decoration-thickness: 2px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

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

.hero-actions,
.final-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.section-block {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.section-heading--wide {
  max-width: 680px;
}

.section-note {
  margin: 0 0 12px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
p {
  max-width: 70ch;
}

h1,
h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

p {
  line-height: 1.6;
}

.data-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 26px;
  font-size: 0.71rem;
  line-height: 1.5;
}

.data-note-mark {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 900;
}

.photo-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  background: #33454a;
}

.photo-frame > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 240ms var(--ease-out);
}

.photo-frame.is-loaded > img {
  opacity: 1;
}

.photo-fallback {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  color: #f8f1df;
  background: linear-gradient(138deg, #24393d 0%, #526b68 49%, #c38f66 49.5%, #d5b08b 100%);
  flex-direction: column;
  text-align: center;
  transition: opacity 240ms var(--ease-out);
}

.photo-fallback strong,
.photo-fallback small {
  position: relative;
  z-index: 2;
  display: block;
}

.photo-fallback strong {
  max-width: 16ch;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.photo-fallback small {
  max-width: 24ch;
  margin-top: 5px;
  color: rgba(248, 241, 223, 0.8);
  font-size: 0.65rem;
  line-height: 1.4;
}

.photo-frame.is-loaded .photo-fallback {
  opacity: 0;
}

.fallback-slash,
.fallback-shape,
.fallback-burst,
.fallback-wave,
.fallback-star {
  position: absolute;
  pointer-events: none;
}

.fallback-slash {
  top: 13%;
  left: 18%;
  width: 45%;
  height: 125%;
  background: rgba(255, 238, 207, 0.13);
  transform: rotate(26deg);
}

.fallback-shape--circle {
  top: 16%;
  right: 15%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 240, 216, 0.56);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255, 240, 216, 0.08), 0 0 0 42px rgba(255, 240, 216, 0.05);
}

.fallback-shape--arc {
  top: 15%;
  left: 13%;
  width: 80%;
  height: 64%;
  border: 1px solid rgba(255, 240, 216, 0.54);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: rotate(-8deg);
}

.fallback-shape--line {
  top: 21%;
  left: 12%;
  width: 76%;
  height: 1px;
  background: rgba(255, 240, 216, 0.62);
  box-shadow: 0 24px rgba(255, 240, 216, 0.28), 0 48px rgba(255, 240, 216, 0.16);
  transform: rotate(-29deg);
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  color: #23393a;
  background: #e2dbcf;
  border: 1px solid currentColor;
  text-align: center;
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(35, 57, 58, 0.23);
  border-radius: 50%;
}

.map-placeholder::before {
  width: 80%;
  height: 170%;
  transform: rotate(33deg);
}

.map-placeholder::after {
  width: 150%;
  height: 58%;
  transform: rotate(-19deg);
}

.map-placeholder strong,
.map-placeholder small {
  position: relative;
  z-index: 2;
  display: block;
}

.map-placeholder strong {
  font-size: 1.2rem;
}

.map-placeholder small {
  margin-top: 5px;
  font-size: 0.66rem;
}

.map-pin,
.place-pin {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin {
  top: 43%;
  left: 48%;
}

.map-pin::after,
.place-pin::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.map-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: rgba(35, 57, 58, 0.38);
  transform-origin: left center;
}

.map-line--one {
  top: 56%;
  left: 20%;
  width: 68%;
  transform: rotate(-21deg);
}

.map-line--two {
  top: 39%;
  left: 31%;
  width: 53%;
  transform: rotate(32deg);
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid currentColor;
}

.faq-list details {
  border-bottom: 1px solid currentColor;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 56ch;
  margin: -3px 45px 22px 0;
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 25px 0 34px;
  border-top: 1px solid currentColor;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.7;
  text-transform: uppercase;
}

/* Ruang untuk Semua — warm editorial / spacious */
[data-direction-section="ruang-untuk-semua"] {
  --ruang-bg: #eee6da;
  --ruang-ink: #203336;
  --ruang-muted: #5a6b68;
  --ruang-line: rgba(32, 51, 54, 0.22);
  --ruang-accent: #2f6d65;
  --ruang-soft: #d8c4ae;
  color: var(--ruang-ink);
  background: var(--ruang-bg);
  font-family: "Avenir Next", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
}

[data-direction-section="ruang-untuk-semua"] .site-header {
  border-bottom: 1px solid var(--ruang-line);
}

[data-direction-section="ruang-untuk-semua"] .site-nav a,
[data-direction-section="ruang-untuk-semua"] .text-action {
  color: var(--ruang-muted);
}

[data-direction-section="ruang-untuk-semua"] .site-nav .text-action {
  color: var(--ruang-ink);
}

.ruang-shell {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.ruang-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 8vw, 142px);
  min-height: min(770px, calc(100vh - 170px));
  padding: 86px 0 116px;
}

.ruang-hero-copy {
  padding-left: clamp(0px, 5vw, 80px);
}

.ruang-hero .section-note,
.ruang-services .section-note,
.ruang-portfolio .section-note,
.ruang-proof .section-note,
.ruang-social .section-note,
.ruang-location .section-note,
.ruang-faq .section-note,
.ruang-final .section-note {
  color: var(--ruang-accent);
}

[data-direction-section="ruang-untuk-semua"] h1,
[data-direction-section="ruang-untuk-semua"] h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

[data-direction-section="ruang-untuk-semua"] h1 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: 0.9;
}

[data-direction-section="ruang-untuk-semua"] h2 {
  line-height: 0.96;
}

[data-direction-section="ruang-untuk-semua"] p {
  color: var(--ruang-muted);
}

.ruang-hero-copy > .hero-lede {
  max-width: 42ch;
  margin: 30px 0 0;
  font-size: 1.05rem;
}

.button--ruang.button--primary {
  color: #f4f0e8;
  background: var(--ruang-accent);
}

.button--ruang.button--primary:hover {
  background: #224f4a;
}

.button--ruang.button--quiet,
.button--ruang.button--outline {
  color: var(--ruang-ink);
  background: transparent;
  border-color: var(--ruang-line);
}

.button--ruang.button--quiet:hover,
.button--ruang.button--outline:hover {
  border-color: var(--ruang-ink);
}

.hero-footnote {
  max-width: 30ch;
  margin: 25px 0 0;
  font-size: 0.7rem;
}

.ruang-hero .photo-frame {
  justify-self: end;
}

.photo-frame--ruang-hero {
  width: min(100%, 505px);
  aspect-ratio: 0.82;
  border-radius: 48% 48% 11% 11%;
  background: var(--ruang-soft);
  transform: rotate(2.2deg);
}

.photo-frame--ruang-hero::before {
  position: absolute;
  z-index: 2;
  inset: 16px;
  content: "";
  border: 1px solid rgba(246, 239, 224, 0.54);
  border-radius: 45% 45% 8% 8%;
  pointer-events: none;
}

.photo-frame--ruang-hero .photo-fallback {
  background: linear-gradient(146deg, #365b58 0%, #7c9990 52%, #d4ad82 52.5%, #d9c3ab 100%);
}

.photo-frame--ruang-hero figcaption,
.editorial-gallery figcaption {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 22px;
  margin: 0;
  color: #fff9ed;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
}

.ruang-intro-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--ruang-line);
  border-bottom: 1px solid var(--ruang-line);
  color: var(--ruang-muted);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

[data-direction-section="ruang-untuk-semua"] .section-heading p:not(.section-note),
[data-direction-section="ruang-untuk-semua"] .section-block > p {
  color: var(--ruang-muted);
}

.ruang-services {
  padding-bottom: 115px;
}

.ruang-services .section-heading--split > p,
.ruang-faq .section-heading--split > p {
  margin: 0 0 5px;
  font-size: 0.82rem;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 61px;
  border-top: 1px solid var(--ruang-line);
  border-bottom: 1px solid var(--ruang-line);
}

.service-rail a {
  display: flex;
  min-height: 226px;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 18px 22px 0;
  border-right: 1px solid var(--ruang-line);
  text-decoration: none;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.service-rail a:not(:first-child) {
  padding-left: 18px;
}

.service-rail a:last-child {
  border-right: 0;
}

.service-rail a:hover {
  color: var(--ruang-accent);
  transform: translateY(-4px);
}

.service-rail span {
  color: var(--ruang-accent);
  font-size: 0.63rem;
}

.service-rail strong {
  max-width: 13ch;
  font-family: Georgia, serif;
  font-size: 1.38rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.service-rail small {
  max-width: 17ch;
  color: var(--ruang-muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

[data-direction-section="ruang-untuk-semua"] .data-note {
  color: var(--ruang-muted);
}

.ruang-portfolio {
  border-top: 1px solid var(--ruang-line);
}

.ruang-portfolio .section-heading--wide p:last-child {
  margin: 26px 0 0;
  font-size: 0.82rem;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: minmax(210px, 0.74fr) minmax(280px, 1.22fr) minmax(180px, 0.62fr);
  grid-template-rows: 270px 250px;
  gap: 18px;
  margin-top: 61px;
}

.editorial-gallery .photo-frame {
  min-height: 0;
  border-radius: 4px;
  transform: rotate(-1.4deg);
}

.editorial-gallery .photo-frame:nth-child(2) {
  align-self: end;
  transform: rotate(1.4deg);
}

.editorial-gallery .photo-frame:nth-child(3) {
  align-self: start;
  transform: rotate(-0.5deg);
}

.photo-frame--gallery-tall {
  grid-row: 1 / span 2;
}

.photo-frame--gallery-wide {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.photo-frame--gallery-small {
  grid-column: 3;
  grid-row: 1 / span 2;
  aspect-ratio: 0.78;
  align-self: center !important;
}

.editorial-gallery .photo-frame--yearbook .photo-fallback {
  background: linear-gradient(135deg, #6f4d55, #c58787 53%, #dec7a5 53.5%);
}

.editorial-gallery .photo-frame--maternity .photo-fallback {
  background: linear-gradient(135deg, #b7a989, #eadbc1 58%, #8a9a85 58.5%);
}

.editorial-gallery .photo-frame--group .photo-fallback {
  background: linear-gradient(135deg, #2f5560, #7d8d93 55%, #dfad68 55.5%);
}

.ruang-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(330px, 1fr);
  gap: 10vw;
  align-items: start;
  border-top: 1px solid var(--ruang-line);
}

.proof-story h2 {
  max-width: 8ch;
}

.proof-story p:last-child {
  max-width: 35ch;
  margin-top: 29px;
  font-size: 0.93rem;
}

.proof-stamps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ruang-line);
}

.proof-stamps div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ruang-line);
}

.proof-stamps strong {
  max-width: 16ch;
  font-family: Georgia, serif;
  font-size: 1.32rem;
  font-weight: 400;
  line-height: 1.05;
}

.proof-stamps span {
  max-width: 18ch;
  color: var(--ruang-muted);
  font-size: 0.67rem;
  line-height: 1.4;
  text-align: right;
}

.ruang-social {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(330px, 1fr);
  gap: 10vw;
  border-top: 1px solid var(--ruang-line);
}

.review-panel {
  min-height: 220px;
  padding: 26px 28px 24px;
  border: 1px solid var(--ruang-line);
  background: rgba(255, 249, 238, 0.38);
}

.review-mark {
  display: block;
  color: var(--ruang-accent);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.6;
}

.review-panel p {
  max-width: 37ch;
  margin: 24px 0 27px;
  font-family: Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.2;
}

[data-direction-section="ruang-untuk-semua"] .link-button {
  color: var(--ruang-accent);
  font-size: 0.72rem;
}

.ruang-location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 9vw;
  align-items: center;
  border-top: 1px solid var(--ruang-line);
}

.location-copy h2 {
  max-width: 10ch;
}

.location-copy > p:not(.section-note) {
  max-width: 42ch;
  margin: 25px 0 31px;
  font-size: 0.86rem;
}

.access-chip {
  display: inline-block;
  padding: 8px 10px;
  color: var(--ruang-muted);
  border: 1px solid var(--ruang-line);
  border-radius: 999px;
  font-size: 0.65rem;
}

.ruang-faq {
  border-top: 1px solid var(--ruang-line);
}

[data-direction-section="ruang-untuk-semua"] .faq-list {
  color: var(--ruang-ink);
}

[data-direction-section="ruang-untuk-semua"] .faq-list details p {
  color: var(--ruang-muted);
}

.ruang-final {
  padding: 111px 0 112px;
  border-top: 1px solid var(--ruang-line);
  text-align: center;
}

.ruang-final h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.ruang-final > p:not(.section-note) {
  max-width: 42ch;
  margin: 24px auto 30px;
  font-size: 0.86rem;
}

.ruang-final .final-actions {
  justify-content: center;
}

[data-direction-section="ruang-untuk-semua"] .site-footer {
  color: var(--ruang-muted);
}

/* Bukti Dulu — structured proof / conversion-dense */
[data-direction-section="bukti-dulu"] {
  --bukti-bg: #f2f4f0;
  --bukti-ink: #11252a;
  --bukti-muted: #5d706f;
  --bukti-line: rgba(17, 37, 42, 0.22);
  --bukti-accent: #2058d5;
  --bukti-accent-soft: #dce6ff;
  --bukti-signal: #efb534;
  color: var(--bukti-ink);
  background: var(--bukti-bg);
  font-family: "IBM Plex Sans", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
}

[data-direction-section="bukti-dulu"] .site-header {
  border-bottom: 1px solid var(--bukti-line);
}

[data-direction-section="bukti-dulu"] .site-nav a,
[data-direction-section="bukti-dulu"] .text-action {
  color: var(--bukti-muted);
}

[data-direction-section="bukti-dulu"] .site-nav .text-action {
  color: var(--bukti-accent);
}

.bukti-shell {
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
}

[data-direction-section="bukti-dulu"] .section-note {
  color: var(--bukti-accent);
}

[data-direction-section="bukti-dulu"] h1,
[data-direction-section="bukti-dulu"] h2 {
  font-family: "IBM Plex Sans", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

[data-direction-section="bukti-dulu"] h1 {
  max-width: 8ch;
  font-size: clamp(3.7rem, 8vw, 6.3rem);
}

[data-direction-section="bukti-dulu"] h2 {
  max-width: 13ch;
}

[data-direction-section="bukti-dulu"] p {
  color: var(--bukti-muted);
}

.bukti-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: end;
  min-height: min(670px, calc(100vh - 150px));
  padding: 91px 0 92px;
}

.bukti-hero-heading > p:not(.section-note) {
  max-width: 45ch;
  margin: 31px 0 31px;
  font-size: 0.96rem;
}

.button--bukti.button--primary {
  color: #fff;
  background: var(--bukti-accent);
}

.button--bukti.button--primary:hover {
  background: #1744a7;
}

.button--bukti.button--outline {
  color: var(--bukti-ink);
  background: transparent;
  border-color: var(--bukti-line);
}

.button--bukti.button--outline:hover {
  color: var(--bukti-accent);
  border-color: var(--bukti-accent);
}

.decision-board {
  border: 1px solid var(--bukti-ink);
  background: #e7ece8;
}

.board-head,
.board-row,
.board-foot {
  display: grid;
  grid-template-columns: minmax(78px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--bukti-line);
}

.board-head {
  grid-template-columns: 1fr 1fr;
  color: var(--bukti-muted);
  background: #dfe6e1;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.board-row {
  font-size: 0.7rem;
  line-height: 1.35;
}

.board-row > span {
  color: var(--bukti-muted);
}

.board-row strong {
  font-size: 0.72rem;
}

.board-row--pending {
  background: rgba(239, 181, 52, 0.1);
}

.board-row--pending strong {
  color: #805d00;
}

.board-foot {
  grid-template-columns: 9px minmax(0, 1fr);
  align-items: center;
  color: var(--bukti-muted);
  border-bottom: 0;
  font-size: 0.66rem;
}

.status-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bukti-signal);
}

[data-direction-section="bukti-dulu"] .section-block {
  border-top: 1px solid var(--bukti-line);
}

.bukti-proof {
  padding-top: 83px;
}

.bukti-proof .section-heading--split > p,
.bukti-faq .section-heading--split > p,
.bukti-final p:not(.section-note) {
  margin: 0 0 4px;
  font-size: 0.82rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 53px;
  border-top: 1px solid var(--bukti-line);
  border-left: 1px solid var(--bukti-line);
}

.proof-cell {
  min-height: 194px;
  padding: 18px;
  border-right: 1px solid var(--bukti-line);
  border-bottom: 1px solid var(--bukti-line);
}

.proof-cell--accent {
  color: #fff;
  background: var(--bukti-accent);
  border-color: var(--bukti-accent);
}

.proof-cell--accent small,
.proof-cell--accent .proof-label {
  color: rgba(255, 255, 255, 0.74);
}

.proof-label {
  display: block;
  color: var(--bukti-accent);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.proof-cell strong,
.proof-cell small {
  display: block;
}

.proof-cell strong {
  max-width: 15ch;
  margin-top: 57px;
  font-size: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.proof-cell small {
  margin-top: 8px;
  color: var(--bukti-muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.bukti-services {
  padding-bottom: 88px;
}

.bukti-services .section-heading--wide h2 {
  max-width: 11ch;
}

.service-table {
  margin-top: 47px;
  border-top: 1px solid var(--bukti-ink);
}

.service-table a {
  display: grid;
  grid-template-columns: 65px minmax(0, 1fr) 30px;
  gap: 17px;
  align-items: center;
  min-height: 82px;
  padding: 15px 0;
  border-bottom: 1px solid var(--bukti-line);
  text-decoration: none;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.service-table a:hover {
  transform: translateX(8px);
  color: var(--bukti-accent);
}

.table-code {
  color: var(--bukti-accent);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-table strong,
.service-table small {
  display: block;
}

.service-table strong {
  font-size: 0.94rem;
}

.service-table small {
  margin-top: 4px;
  color: var(--bukti-muted);
  font-size: 0.7rem;
}

.table-arrow {
  color: var(--bukti-accent);
  font-size: 1.1rem;
  text-align: right;
}

.bukti-packages {
  padding-bottom: 93px;
}

.bukti-packages .section-heading--split > p {
  margin: 0;
  font-size: 0.82rem;
}

.package-table {
  margin-top: 49px;
  border-top: 1px solid var(--bukti-ink);
  border-left: 1px solid var(--bukti-line);
}

.package-row {
  display: grid;
  grid-template-columns: 0.54fr 1.3fr 0.45fr;
  gap: 18px;
  align-items: center;
  min-height: 73px;
  padding: 13px 15px;
  border-right: 1px solid var(--bukti-line);
  border-bottom: 1px solid var(--bukti-line);
}

.package-row--head {
  min-height: 42px;
  color: var(--bukti-muted);
  background: #e7ece8;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-row > span {
  color: var(--bukti-muted);
  font-size: 0.75rem;
}

.package-row strong {
  font-size: 0.79rem;
}

.mini-button {
  justify-self: end;
  padding: 7px 10px;
  color: var(--bukti-accent);
  background: var(--bukti-accent-soft);
  border-radius: 5px;
  font-size: 0.64rem;
  font-weight: 800;
}

.mini-button:hover {
  background: #c3d3ff;
}

.bukti-portfolio {
  padding-bottom: 89px;
}

.bukti-portfolio .section-heading--split > p {
  margin: 0;
  font-size: 0.82rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 38px;
  color: var(--bukti-muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.filter-button {
  padding: 7px 10px;
  color: var(--bukti-muted);
  background: transparent;
  border: 1px solid var(--bukti-line);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  background: var(--bukti-accent);
  border-color: var(--bukti-accent);
}

.evidence-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.evidence-tile {
  min-width: 0;
  margin: 0;
}

.photo-frame--evidence {
  aspect-ratio: 1.36;
  border: 1px solid var(--bukti-line);
}

.photo-frame--evidence-a .photo-fallback {
  background: linear-gradient(140deg, #2e4f68, #8ba1b7 57%, #d4b875 57.5%);
}

.photo-frame--evidence-b .photo-fallback {
  background: linear-gradient(140deg, #593f61, #c98288 57%, #efc679 57.5%);
}

.photo-frame--evidence-c .photo-fallback {
  background: linear-gradient(140deg, #385b51, #a5b49a 57%, #dcbd8a 57.5%);
}

.photo-frame--evidence-d .photo-fallback {
  background: linear-gradient(140deg, #6c4c3c, #d08d65 57%, #e6cf94 57.5%);
}

.evidence-tile figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--bukti-line);
  font-size: 0.71rem;
}

.evidence-tile figcaption span {
  color: var(--bukti-muted);
  font-size: 0.63rem;
  text-align: right;
}

.filter-status {
  margin: 15px 0 0;
  color: var(--bukti-muted);
  font-size: 0.68rem;
}

.evidence-tile.is-filtered {
  display: none;
}

.bukti-social {
  display: grid;
  grid-template-columns: minmax(175px, 0.44fr) minmax(0, 1fr);
  gap: 6vw;
  align-items: start;
  padding-top: 86px;
  padding-bottom: 91px;
}

.social-index {
  padding-top: 8px;
}

.social-index span,
.social-index strong,
.social-index small {
  display: block;
}

.social-index span {
  color: var(--bukti-accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.social-index strong {
  margin-top: 17px;
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.social-index small {
  max-width: 13ch;
  margin-top: 15px;
  color: var(--bukti-muted);
  font-size: 0.65rem;
  line-height: 1.35;
}

.bukti-social h2 {
  max-width: 10ch;
}

.body-measure {
  max-width: 48ch;
  margin: 27px 0 27px;
  font-size: 0.86rem;
}

[data-direction-section="bukti-dulu"] .link-button {
  color: var(--bukti-accent);
  font-size: 0.72rem;
}

.bukti-location {
  padding-top: 88px;
  padding-bottom: 89px;
}

.location-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 7vw;
  align-items: end;
}

.location-header .section-note {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.location-header h2 {
  max-width: 9ch;
}

.location-header > p:last-child {
  margin: 0 0 4px;
  font-size: 0.81rem;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, 0.72fr);
  gap: 0;
  margin-top: 51px;
  border-top: 1px solid var(--bukti-line);
  border-bottom: 1px solid var(--bukti-line);
}

.access-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 116px;
  padding: 17px 15px 17px 0;
  border-right: 1px solid var(--bukti-line);
}

.access-row + .access-row {
  padding-left: 15px;
}

.check-box {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--bukti-accent);
  border-radius: 3px;
  font-size: 0.69rem;
  font-weight: 800;
}

.check-box--pending {
  color: #6f5a19;
  background: #f1da8d;
}

.access-row strong,
.access-row small {
  display: block;
}

.access-row strong {
  max-width: 15ch;
  font-size: 0.75rem;
  line-height: 1.2;
}

.access-row small {
  max-width: 17ch;
  margin-top: 7px;
  color: var(--bukti-muted);
  font-size: 0.64rem;
  line-height: 1.35;
}

.access-grid > .button {
  align-self: center;
  margin: 15px;
}

.bukti-faq {
  padding-top: 88px;
  padding-bottom: 93px;
}

.bukti-final {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  padding-top: 88px;
  padding-bottom: 91px;
}

.bukti-final h2 {
  max-width: 9ch;
}

.bukti-final .final-actions {
  justify-content: flex-end;
}

[data-direction-section="bukti-dulu"] .site-footer {
  color: var(--bukti-muted);
}

/* Momen Ramai — celebratory kinetic / layered */
[data-direction-section="momen-ramai"] {
  --momen-bg: #10223b;
  --momen-ink: #fff0cb;
  --momen-muted: #c3c9c3;
  --momen-line: rgba(255, 240, 203, 0.31);
  --momen-orange: #ff704d;
  --momen-yellow: #f4cf43;
  --momen-pink: #e36486;
  --momen-cyan: #63d4c3;
  color: var(--momen-ink);
  background: var(--momen-bg);
  font-family: "Trebuchet MS", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
}

[data-direction-section="momen-ramai"] .site-header {
  border-bottom: 1px solid var(--momen-line);
}

[data-direction-section="momen-ramai"] .site-nav a,
[data-direction-section="momen-ramai"] .text-action {
  color: var(--momen-muted);
}

[data-direction-section="momen-ramai"] .site-nav .text-action {
  color: var(--momen-yellow);
}

.momen-shell {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

[data-direction-section="momen-ramai"] .section-note {
  color: var(--momen-yellow);
}

[data-direction-section="momen-ramai"] h1,
[data-direction-section="momen-ramai"] h2 {
  font-family: Futura, "Avenir Next", "Helvetica Neue", ui-sans-serif, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

[data-direction-section="momen-ramai"] h1 {
  max-width: 10ch;
  font-size: clamp(3.25rem, 8vw, 6.35rem);
}

[data-direction-section="momen-ramai"] h1 em {
  color: var(--momen-orange);
  font-style: normal;
}

[data-direction-section="momen-ramai"] h2 {
  max-width: 12ch;
}

[data-direction-section="momen-ramai"] p {
  color: var(--momen-muted);
}

.momen-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(330px, 0.89fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
  min-height: min(745px, calc(100vh - 155px));
  padding: 72px 0 101px;
}

.momen-hero-copy > p:not(.section-note) {
  max-width: 42ch;
  margin: 30px 0 32px;
  font-size: 1rem;
}

.button--momen.button--primary {
  color: #1b2433;
  background: var(--momen-yellow);
}

.button--momen.button--primary:hover {
  background: #ffe176;
}

.button--momen.button--outline {
  color: var(--momen-ink);
  background: transparent;
  border-color: var(--momen-line);
}

.button--momen.button--outline:hover {
  color: var(--momen-yellow);
  border-color: var(--momen-yellow);
}

.momen-hero-art {
  position: relative;
  min-height: 480px;
}

.photo-frame--momen-main {
  position: absolute;
  top: 22px;
  right: 3%;
  width: 90%;
  aspect-ratio: 1.06;
  border: 8px solid var(--momen-orange);
  transform: rotate(3deg);
}

.photo-frame--momen-main::after {
  position: absolute;
  z-index: 3;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 240, 203, 0.5);
  pointer-events: none;
}

.photo-frame--momen-main .photo-fallback {
  background: linear-gradient(125deg, #264b5d 0%, #7f8ca1 50%, #f08c59 50.5%, #f4cf43 100%);
}

.photo-frame--momen-main figcaption {
  position: absolute;
  z-index: 4;
  bottom: 17px;
  left: 18px;
  color: #10223b;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.sticker {
  position: absolute;
  z-index: 5;
  display: inline-block;
  padding: 11px 12px;
  color: #10223b;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  transform: rotate(-8deg);
}

.sticker--yellow {
  top: 4px;
  left: 0;
  background: var(--momen-yellow);
}

.sticker--pink {
  right: -1px;
  bottom: 61px;
  color: #fff0cb;
  background: var(--momen-pink);
  transform: rotate(8deg);
}

.momen-ticker {
  display: flex;
  gap: 31px;
  width: 100%;
  margin-left: 0;
  padding: 15px 0 17px;
  overflow: hidden;
  color: var(--momen-bg);
  background: var(--momen-yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-18%); }
}

[data-direction-section="momen-ramai"] .section-block {
  border-top: 1px solid var(--momen-line);
}

.momen-menu {
  padding-top: 97px;
  padding-bottom: 102px;
}

.momen-menu .section-heading--split > p,
.momen-faq .section-heading--split > p,
.momen-social > div:last-child > p:not(.section-note),
.momen-final > div > p:not(.section-note) {
  margin: 0 0 5px;
  font-size: 0.84rem;
}

.moment-menu-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: minmax(174px, auto) minmax(174px, auto);
  gap: 12px;
  margin-top: 54px;
}

.moment-menu-item {
  position: relative;
  display: flex;
  min-height: 174px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 19px;
  color: var(--momen-bg);
  background: var(--momen-cyan);
  text-decoration: none;
  transition: transform 180ms var(--ease-out), filter 180ms var(--ease-out);
}

.moment-menu-item:hover {
  filter: brightness(1.08);
  transform: translateY(-4px) rotate(-1deg);
}

.moment-menu-item--big {
  grid-row: 1 / span 2;
  min-height: 360px;
  color: #fff0cb;
  background: var(--momen-orange);
}

.moment-menu-item:nth-child(2) {
  background: var(--momen-yellow);
}

.moment-menu-item:nth-child(3) {
  background: var(--momen-pink);
}

.moment-menu-item:nth-child(4) {
  grid-column: 2 / span 2;
  color: #fff0cb;
  background: #2f5b72;
}

.moment-number {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 0.7rem;
  font-weight: 900;
}

.moment-menu-item strong,
.moment-menu-item small {
  display: block;
}

.moment-menu-item strong {
  max-width: 13ch;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.moment-menu-item small {
  max-width: 24ch;
  margin-top: 9px;
  font-size: 0.68rem;
  line-height: 1.35;
}

.moment-arrow {
  position: absolute;
  right: 18px;
  bottom: 17px;
  font-size: 1.18rem;
}

.momen-proof {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1fr);
  gap: 9vw;
  align-items: center;
  padding-top: 103px;
  padding-bottom: 104px;
}

.big-proof {
  position: relative;
  min-height: 270px;
  padding: 23px;
  color: var(--momen-bg);
  background: var(--momen-yellow);
  transform: rotate(-2deg);
}

.big-proof::before {
  position: absolute;
  top: -16px;
  right: 20%;
  width: 28px;
  height: 28px;
  content: "";
  background: var(--momen-pink);
  clip-path: polygon(50% 0%, 62% 34%, 100% 50%, 62% 66%, 50% 100%, 38% 66%, 0% 50%, 38% 34%);
}

.big-proof span,
.big-proof strong,
.big-proof small {
  display: block;
}

.big-proof span {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.big-proof strong {
  max-width: 9ch;
  margin-top: 67px;
  font-family: Futura, "Avenir Next", "Helvetica Neue", ui-sans-serif, sans-serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.big-proof small {
  margin-top: 19px;
  font-size: 0.65rem;
}

.proof-aside h2 {
  max-width: 10ch;
}

.proof-aside p:not(.section-note) {
  max-width: 42ch;
  margin: 26px 0 27px;
  font-size: 0.88rem;
}

.link-button--momen {
  color: var(--momen-yellow);
  font-size: 0.72rem;
}

.momen-gallery {
  padding-top: 99px;
  padding-bottom: 105px;
}

.momen-gallery .section-heading--wide p:last-child {
  margin: 23px 0 0;
  font-size: 0.83rem;
}

.momen-collage {
  display: grid;
  grid-template-columns: 1.07fr 0.84fr 0.67fr;
  grid-template-rows: 320px 185px;
  gap: 14px;
  margin-top: 58px;
}

.momen-collage .photo-frame {
  border: 5px solid var(--momen-bg);
  outline: 1px solid var(--momen-line);
}

.photo-frame--momen-large {
  grid-row: 1 / span 2;
  transform: rotate(-2.3deg);
}

.photo-frame--momen-side {
  grid-row: 1 / span 2;
  transform: rotate(1.2deg);
}

.photo-frame--momen-small {
  grid-row: 1 / span 2;
  transform: rotate(3deg);
}

.photo-frame--momen-large .photo-fallback {
  background: linear-gradient(140deg, #633f57, #b4707d 55%, #f3ce63 55.5%);
}

.photo-frame--momen-side .photo-fallback {
  background: linear-gradient(140deg, #2b5e61, #6ec8b0 55%, #f3a76d 55.5%);
}

.photo-frame--momen-small .photo-fallback {
  background: linear-gradient(140deg, #315174, #6d93b1 55%, #e85d7d 55.5%);
}

.momen-collage figcaption {
  position: absolute;
  z-index: 4;
  bottom: 14px;
  left: 15px;
  color: #fff0cb;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.voice-wall {
  position: relative;
  min-height: 260px;
}

.voice-note {
  position: absolute;
  display: block;
  padding: 18px 15px;
  color: var(--momen-bg);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-align: center;
}

.voice-note--one {
  top: 13px;
  left: 6%;
  background: var(--momen-yellow);
  transform: rotate(-8deg);
}

.voice-note--two {
  top: 93px;
  left: 42%;
  background: var(--momen-cyan);
  transform: rotate(5deg);
}

.voice-note--three {
  top: 160px;
  left: 19%;
  color: #fff0cb;
  background: var(--momen-pink);
  transform: rotate(-3deg);
}

.momen-social {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 9vw;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 102px;
}

.momen-social h2 {
  max-width: 9ch;
}

.momen-social > div:last-child > p:not(.section-note) {
  max-width: 42ch;
  margin: 26px 0 27px;
}

.momen-place {
  padding-top: 93px;
  padding-bottom: 94px;
}

.place-card {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 31px 34px 34px 30px;
  color: var(--momen-bg);
  background: var(--momen-cyan);
  transform: rotate(1deg);
}

.place-pin {
  position: relative;
  top: 7px;
  left: 10px;
  color: var(--momen-bg);
}

.place-card h2 {
  max-width: 15ch;
}

.place-card p:not(.section-note) {
  max-width: 52ch;
  margin: 23px 0 27px;
  color: rgba(16, 34, 59, 0.78);
  font-size: 0.83rem;
}

.access-chip--momen {
  color: var(--momen-bg);
  border-color: rgba(16, 34, 59, 0.38);
}

.momen-faq {
  padding-top: 99px;
  padding-bottom: 102px;
}

.momen-final {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  padding-top: 100px;
  padding-bottom: 106px;
}

.momen-final h2 {
  max-width: 10ch;
}

.momen-final .final-actions {
  justify-content: flex-end;
}

.final-burst {
  position: absolute;
  top: 74px;
  right: 40%;
  width: 41px;
  height: 41px;
  background: var(--momen-pink);
  clip-path: polygon(50% 0%, 60% 35%, 100% 50%, 60% 65%, 50% 100%, 40% 65%, 0% 50%, 40% 35%);
}

[data-direction-section="momen-ramai"] .site-footer {
  color: var(--momen-muted);
}

@media (max-width: 1040px) {
  .section-heading--split,
  .ruang-proof,
  .ruang-social,
  .ruang-location,
  .bukti-social,
  .momen-proof,
  .momen-social {
    gap: 42px;
  }

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

  .service-rail a:nth-child(3) {
    border-right: 0;
  }

  .service-rail a:nth-child(n + 4) {
    border-top: 1px solid var(--ruang-line);
  }

  .service-rail a:nth-child(4) {
    padding-left: 0;
  }

  .service-rail a:nth-child(5) {
    padding-left: 18px;
  }

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

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

  .access-row:nth-child(2) {
    border-right: 0;
  }

  .access-row:nth-child(n + 3) {
    border-top: 1px solid var(--bukti-line);
  }

  .access-grid > .button {
    justify-self: start;
    margin-left: 15px;
  }
}

@media (max-width: 840px) {
  .picker-topline {
    align-items: flex-start;
  }

  .picker-note {
    max-width: 28ch;
    text-align: right;
  }

  .picker-summary {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 17px;
  }

  .ruang-hero,
  .bukti-hero,
  .momen-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 58px;
    padding-top: 71px;
  }

  .ruang-hero-copy {
    padding-left: 0;
  }

  .ruang-hero .photo-frame {
    justify-self: start;
    width: min(100%, 520px);
  }

  .bukti-hero {
    padding-bottom: 85px;
  }

  .momen-hero-art {
    width: min(100%, 620px);
  }

  .section-heading--split,
  .ruang-proof,
  .ruang-social,
  .ruang-location,
  .bukti-social,
  .location-header,
  .momen-proof,
  .momen-social {
    grid-template-columns: 1fr;
  }

  .location-header .section-note {
    grid-column: auto;
    margin-bottom: 0;
  }

  .proof-story h2,
  .location-copy h2,
  .bukti-social h2,
  .momen-social h2,
  .proof-aside h2 {
    max-width: 15ch;
  }

  .momen-hero-art {
    min-height: 430px;
  }

  .momen-hero .photo-frame--momen-main {
    width: 88%;
  }

  .momen-final,
  .bukti-final {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .bukti-final .final-actions,
  .momen-final .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .picker-inner,
  .site-header,
  .section-block,
  .site-footer,
  .ruang-shell,
  .bukti-shell,
  .momen-shell {
    width: min(100% - 28px, 1360px);
  }

  .picker-inner {
    padding-top: 12px;
  }

  .picker-topline {
    display: block;
  }

  .picker-note {
    margin-top: 9px;
    text-align: left;
  }

  .direction-picker {
    gap: 4px;
  }

  .direction-tab {
    display: block;
    min-height: 56px;
    padding: 7px 8px;
  }

  .tab-index {
    display: block;
    margin-bottom: 3px;
  }

  .tab-copy strong,
  .tab-copy small {
    overflow: visible;
    white-space: normal;
  }

  .tab-copy strong {
    font-size: 0.68rem;
    line-height: 1.08;
  }

  .tab-copy small {
    font-size: 0.56rem;
  }

  .summary-facts {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .summary-facts div {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 8px;
    align-items: baseline;
  }

  .summary-facts dt {
    margin: 0;
  }

  .picker-help {
    line-height: 1.6;
  }

  .site-header {
    padding-top: 20px;
    padding-bottom: 17px;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 0.69rem;
  }

  .site-nav .text-action {
    width: 100%;
    text-align: left;
  }

  .section-block {
    padding: 72px 0;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  [data-direction-section="ruang-untuk-semua"] h1,
  [data-direction-section="bukti-dulu"] h1,
  [data-direction-section="momen-ramai"] h1 {
    max-width: 8ch;
    font-size: clamp(3.35rem, 16vw, 5.3rem);
  }

  .ruang-hero,
  .bukti-hero,
  .momen-hero {
    gap: 42px;
    padding-top: 57px;
    padding-bottom: 70px;
  }

  .ruang-hero-copy > .hero-lede,
  .bukti-hero-heading > p:not(.section-note),
  .momen-hero-copy > p:not(.section-note) {
    font-size: 0.9rem;
  }

  .hero-actions,
  .final-actions,
  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button,
  .final-actions .button,
  .location-actions .button {
    justify-content: space-between;
  }

  .hero-footnote {
    margin-top: 21px;
    font-size: 0.67rem;
  }

  .photo-frame--ruang-hero {
    width: min(100%, 430px) !important;
  }

  .service-rail {
    grid-template-columns: 1fr 1fr;
    margin-top: 42px;
  }

  .service-rail a,
  .service-rail a:not(:first-child) {
    min-height: 179px;
    padding: 15px 12px 17px 0;
  }

  .service-rail a:nth-child(3) {
    padding-left: 0;
    border-right: 1px solid var(--ruang-line);
  }

  .service-rail a:nth-child(even) {
    padding-left: 12px;
    border-right: 0;
  }

  .service-rail a:nth-child(n + 3) {
    border-top: 1px solid var(--ruang-line);
  }

  .service-rail strong {
    font-size: 1.1rem;
  }

  .service-rail small {
    font-size: 0.62rem;
  }

  .editorial-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 210px;
    gap: 10px;
    margin-top: 43px;
  }

  .photo-frame--gallery-tall {
    grid-row: 1 / span 2;
  }

  .photo-frame--gallery-wide {
    grid-column: 2;
    grid-row: 1;
  }

  .photo-frame--gallery-small {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: auto;
  }

  .editorial-gallery figcaption {
    left: 10px;
    bottom: 10px;
    font-size: 0.68rem;
  }

  .proof-stamps div {
    display: block;
  }

  .proof-stamps strong,
  .proof-stamps span {
    display: block;
    max-width: none;
    text-align: left;
  }

  .proof-stamps span {
    margin-top: 7px;
  }

  .review-panel {
    min-height: 0;
    padding: 22px;
  }

  .ruang-location .map-placeholder {
    min-height: 250px;
  }

  .site-footer {
    display: grid;
    gap: 8px;
    padding-bottom: 25px;
    font-size: 0.58rem;
  }

  .bukti-hero {
    gap: 38px;
  }

  .decision-board {
    font-size: 0.64rem;
  }

  .board-head,
  .board-row,
  .board-foot {
    grid-template-columns: minmax(67px, 0.45fr) minmax(0, 1fr);
    gap: 10px;
    padding: 11px 10px;
  }

  .board-head {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 38px;
  }

  .proof-cell {
    min-height: 160px;
    padding: 13px 11px;
  }

  .proof-cell strong {
    margin-top: 36px;
    font-size: 0.82rem;
  }

  .proof-cell small {
    font-size: 0.6rem;
  }

  .service-table a {
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    gap: 9px;
  }

  .service-table strong {
    font-size: 0.82rem;
  }

  .service-table small {
    font-size: 0.62rem;
  }

  .package-row {
    grid-template-columns: 0.48fr 1fr;
    gap: 9px;
    min-height: 77px;
    padding: 12px 9px;
  }

  .package-row--head {
    grid-template-columns: 0.48fr 1fr;
  }

  .package-row--head span:last-child {
    display: none;
  }

  .package-row .mini-button {
    grid-column: 2;
    justify-self: start;
    margin-top: -5px;
  }

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

  .evidence-tile figcaption {
    align-items: baseline;
  }

  .bukti-social .social-index {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .social-index strong {
    margin-top: 0;
    font-size: 3.5rem;
  }

  .social-index small {
    margin-top: 0;
  }

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

  .access-row,
  .access-row + .access-row {
    min-height: 82px;
    padding: 14px 0;
    border-right: 0;
  }

  .access-row + .access-row,
  .access-row:nth-child(n + 3) {
    border-top: 1px solid var(--bukti-line);
  }

  .access-grid > .button {
    justify-self: stretch;
    margin: 15px 0 0;
  }

  .bukti-final .final-actions,
  .momen-final .final-actions {
    width: 100%;
  }

  .momen-hero-art {
    min-height: 310px;
  }

  .photo-frame--momen-main {
    top: 18px;
    right: 2%;
    width: 92%;
    border-width: 5px;
  }

  .sticker {
    padding: 8px 9px;
    font-size: 0.57rem;
  }

  .sticker--yellow {
    top: 0;
  }

  .sticker--pink {
    right: -4px;
    bottom: 35px;
  }

  .momen-ticker {
    gap: 22px;
    width: 100%;
    margin-left: 0;
    font-size: 0.59rem;
  }

  .moment-menu-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 170px 170px;
    gap: 9px;
    margin-top: 40px;
  }

  .moment-menu-item,
  .moment-menu-item--big {
    min-height: 0;
    padding: 13px;
  }

  .moment-menu-item--big {
    grid-row: 1 / span 2;
  }

  .moment-menu-item:nth-child(4) {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .moment-menu-item strong {
    font-size: 1.03rem;
  }

  .moment-menu-item small {
    font-size: 0.6rem;
  }

  .momen-proof {
    gap: 45px;
  }

  .big-proof {
    min-height: 230px;
  }

  .big-proof strong {
    margin-top: 57px;
  }

  .momen-collage {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 220px 190px;
    gap: 9px;
    margin-top: 42px;
  }

  .photo-frame--momen-large {
    grid-row: 1 / span 2;
  }

  .photo-frame--momen-side {
    grid-row: 1;
  }

  .photo-frame--momen-small {
    grid-row: 2;
  }

  .voice-wall {
    min-height: 228px;
  }

  .voice-note {
    padding: 14px 11px;
    font-size: 0.56rem;
  }

  .voice-note--two {
    left: 48%;
  }

  .place-card {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 25px 20px 24px;
  }

  .place-pin {
    top: 2px;
    left: auto;
    margin-bottom: 9px;
  }

  .final-burst {
    top: 44px;
    right: 16%;
    width: 32px;
    height: 32px;
  }
}

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