:root {
  color-scheme: dark;
  --black: oklch(0.08 0 0);
  --ink: oklch(0.94 0 0);
  --muted: oklch(0.72 0 0);
  --line: oklch(0.3 0 0);
  --white: oklch(1 0 0);
  --signal: oklch(0.59 0.2 18);
  --mint: oklch(0.9 0.07 185);
  --header-height: 74px;
  --page-pad: clamp(1rem, 3.2vw, 3.75rem);
  --max-width: 1520px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-sticky: 30;
  --z-tooltip: 60;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-route-changing {
  cursor: progress;
}

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

img {
  height: auto;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

p,
li {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p {
  margin: 0;
}

::selection {
  background: var(--signal);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: var(--z-tooltip);
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-sm);
  transition: transform 180ms var(--ease-out);
}

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

.site-shell {
  min-height: 100svh;
}

.site-header {
  position: sticky;
  z-index: var(--z-sticky);
  top: 0;
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) auto minmax(8rem, 1fr);
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-height);
  padding: 0.75rem var(--page-pad);
  background: oklch(0.08 0 0 / 0.94);
  border-bottom: 1px solid oklch(0.28 0 0);
  backdrop-filter: blur(12px);
}

.room-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  text-decoration: none;
}

.room-signature__mark {
  width: 1.85rem;
  height: 1.85rem;
  background:
    radial-gradient(circle at 75% 78%, var(--mint) 0 7%, transparent 8%),
    url("assets/marks/sajak.svg") center / cover no-repeat;
}

.room-signature strong,
.room-signature small {
  display: block;
}

.room-signature strong {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.room-signature small {
  color: var(--muted);
  font-size: 0.69rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.7rem);
  font-size: 0.72rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.5rem 0;
  color: oklch(0.75 0 0);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.1rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  display: inline-flex;
  min-height: 44px;
  justify-self: end;
  align-items: center;
  gap: 0.48rem;
  padding: 0.5rem 0;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language-switch__track {
  position: relative;
  width: 2rem;
  height: 1.05rem;
  background: oklch(0.28 0 0);
  border-radius: 99px;
}

.language-switch__track i {
  position: absolute;
  top: 0.18rem;
  left: 0.2rem;
  width: 0.68rem;
  height: 0.68rem;
  background: var(--signal);
  border-radius: 50%;
  transition: transform 220ms var(--ease-out);
}

html[lang="ms"] .language-switch__track i {
  transform: translateX(0.92rem);
}

.route-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

main:focus {
  outline: none;
}

.route-view {
  animation: route-in 520ms var(--ease-out) both;
}

@keyframes route-in {
  from {
    opacity: 0.72;
    transform: translateY(10px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--signal);
  border: 0;
  border-radius: 999px;
  transition: transform 220ms var(--ease-out), background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: oklch(0.54 0.2 18);
}

.button--ghost {
  color: var(--ink);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
}

.button--ghost:hover {
  color: var(--black);
  background: var(--white);
}

.button svg {
  width: 1rem;
  transition: transform 220ms var(--ease-out);
}

.button:hover svg {
  transform: translateX(3px);
}

.home-page {
  overflow: hidden;
  background: var(--black);
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.92fr);
  min-height: calc(100svh - var(--header-height));
  border-bottom: 1px solid var(--line);
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: clamp(3rem, 9vh, 8rem) var(--page-pad) clamp(2rem, 6vh, 5rem);
}

.home-hero__prelude {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 38rem;
  color: var(--mint);
  font-size: 0.82rem;
}

.home-hero__prelude::before {
  width: 2rem;
  height: 2px;
  content: "";
  background: var(--signal);
}

.home-hero h1 {
  max-width: 13ch;
  margin-top: 1.2rem;
  font-family: "Krona One", Arial, sans-serif;
  font-size: clamp(2.65rem, 6.2vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.home-hero h1 em {
  color: var(--signal);
  font-style: normal;
}

.home-hero__summary {
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) minmax(14rem, 1.2fr);
  align-items: end;
  gap: 2rem;
  max-width: 54rem;
}

.home-hero__summary p {
  max-width: 34rem;
  color: oklch(0.8 0 0);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.42;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-hero__image {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  background: var(--signal);
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 1.2s var(--ease-out);
}

.home-hero:hover .home-hero__image img {
  transform: scale(1.025);
}

.home-hero__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, oklch(0.08 0 0 / 0.7));
  pointer-events: none;
}

.image-caption {
  position: absolute;
  z-index: 1;
  right: clamp(1rem, 2.5vw, 2.5rem);
  bottom: clamp(1rem, 2.5vw, 2.5rem);
  left: clamp(1rem, 2.5vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  font-size: 0.72rem;
}

.image-caption span:last-child {
  color: oklch(0.82 0 0);
  text-align: right;
}

.thesis-band {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(20rem, 1.3fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(4.5rem, 10vw, 10rem) var(--page-pad);
  background: var(--white);
  color: oklch(0.14 0 0);
}

.thesis-band h2 {
  align-self: start;
  max-width: 11ch;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
}

.thesis-band__body {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  max-width: 49rem;
  font-size: clamp(1.12rem, 1.8vw, 1.5rem);
  line-height: 1.5;
}

.thesis-band__body strong {
  color: oklch(0.54 0.2 18);
}

.thesis-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid oklch(0.78 0 0);
  color: oklch(0.34 0 0);
  font-size: 0.88rem;
}

.identity-runway {
  padding-top: clamp(4.5rem, 9vw, 9rem);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(20rem, 1.35fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: 0 var(--page-pad) clamp(3rem, 6vw, 6rem);
}

.section-intro h2 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.section-intro p {
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.direction-row {
  --row-bg: var(--black);
  --row-ink: var(--white);
  --row-accent: var(--signal);
  display: grid;
  grid-template-columns: minmax(11rem, 0.45fr) minmax(20rem, 1.15fr) minmax(13rem, 0.4fr);
  align-items: stretch;
  min-height: 27rem;
  color: var(--row-ink);
  background: var(--row-bg);
  border-top: 1px solid currentColor;
  border-color: color-mix(in oklch, currentColor 20%, transparent);
}

.direction-row:last-child {
  border-bottom: 1px solid color-mix(in oklch, currentColor 20%, transparent);
}

.direction-row--raut {
  --row-bg: oklch(0.97 0 0);
  --row-ink: oklch(0.18 0.04 265);
  --row-accent: oklch(0.46 0.18 276);
}

.direction-row--jauhari {
  --row-bg: oklch(0.82 0.08 245);
  --row-ink: oklch(0.19 0.06 269);
  --row-accent: oklch(0.43 0.19 264);
}

.direction-row--ruas {
  --row-bg: oklch(0.38 0.23 276);
  --row-ink: var(--white);
  --row-accent: oklch(0.88 0.18 122);
}

.direction-row__mark,
.direction-row__copy,
.direction-row__sample {
  padding: clamp(1.5rem, 3vw, 3.5rem);
}

.direction-row__mark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid color-mix(in oklch, currentColor 20%, transparent);
}

.direction-row__mark img {
  width: clamp(4.2rem, 7vw, 7.5rem);
}

.direction-row__mark span {
  font-size: 0.78rem;
  font-weight: 600;
}

.direction-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
}

.direction-row__copy h3 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  color: var(--row-accent);
}

.direction-row__copy p {
  max-width: 36rem;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.direction-row__copy a {
  width: fit-content;
  font-weight: 600;
}

.direction-row__sample {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background-image: var(--row-pattern);
  background-size: cover;
  border-left: 1px solid color-mix(in oklch, currentColor 20%, transparent);
}

.direction-row__sample span {
  align-self: flex-start;
  padding: 0.42rem 0.6rem;
  color: var(--row-bg);
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--row-ink);
}

.direction-row__sample strong {
  width: fit-content;
  max-width: 10ch;
  padding: 0.24em 0.34em;
  color: var(--row-bg);
  font-size: clamp(1.5rem, 2.8vw, 3.25rem);
  line-height: 0.98;
  background: var(--row-ink);
}

.experience {
  padding: clamp(5rem, 11vw, 11rem) var(--page-pad);
  background: oklch(0.13 0 0);
}

.experience__intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(3rem, 7vw, 7rem);
}

.experience__intro h2 {
  max-width: 10ch;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
}

.experience__intro p {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.plate-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vw, 8rem);
}

.plate {
  display: grid;
  grid-template-columns: minmax(13rem, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.plate:nth-child(even) {
  grid-template-columns: minmax(0, 1.66fr) minmax(13rem, 0.34fr);
}

.plate:nth-child(even) .plate__meta {
  order: 2;
}

.plate__meta {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plate__meta strong {
  color: oklch(0.66 0.16 18);
  font-size: 0.78rem;
}

.plate__meta h3 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.plate__meta p {
  max-width: 29rem;
  color: var(--muted);
}

.plate__canvas {
  min-width: 0;
  overflow: hidden;
  color: oklch(0.94 0 0);
  background: oklch(0.08 0 0);
  border-radius: var(--radius-md);
}

.mock-browser__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 2.65rem;
  padding: 0 1rem;
  color: oklch(0.66 0 0);
  font-size: 0.68rem;
  background: oklch(0.16 0 0);
  border-bottom: 1px solid oklch(0.28 0 0);
}

.browser-dots {
  display: flex;
  gap: 0.35rem;
}

.browser-dots i {
  width: 0.48rem;
  height: 0.48rem;
  background: oklch(0.42 0 0);
  border-radius: 50%;
}

.mock-browser__bar span:last-child {
  justify-self: end;
}

.mock-store-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.8rem;
  padding: 0.8rem clamp(1rem, 2.5vw, 2.25rem);
  border-bottom: 1px solid oklch(0.27 0 0);
}

.mock-store-nav strong {
  font-family: "Krona One", Arial, sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 400;
}

.mock-store-nav div {
  display: flex;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  color: oklch(0.75 0 0);
  font-size: 0.65rem;
}

.arrival-mock {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  min-height: 34rem;
}

.arrival-mock__image {
  min-height: 25rem;
  background: url("assets/images/batik-class-kelantan.webp") 54% center / cover no-repeat;
}

.arrival-mock__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 3vw, 3rem);
  background: var(--signal);
}

.arrival-mock__copy small {
  font-size: 0.72rem;
}

.arrival-mock__copy h4 {
  max-width: 9ch;
  margin: 0;
  font-family: "Krona One", Arial, sans-serif;
  font-size: clamp(2rem, 4.8vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.arrival-mock__copy p {
  max-width: 25rem;
  font-size: 0.88rem;
}

.edit-mock {
  min-height: 34rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  background: oklch(0.92 0 0);
  color: oklch(0.14 0 0);
}

.edit-mock__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid oklch(0.63 0 0);
}

.edit-mock__head h4 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 3.7rem);
  line-height: 1;
}

.edit-mock__head span {
  font-size: 0.7rem;
}

.garment-edit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, 2rem);
  padding-top: 2rem;
}

.garment-item {
  min-width: 0;
}

.shirt {
  position: relative;
  aspect-ratio: 0.84;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: oklch(0.2 0 0);
  background-image: var(--shirt-pattern);
  background-position: center;
  background-size: cover;
  clip-path: polygon(22% 0, 39% 0, 45% 10%, 55% 10%, 61% 0, 78% 0, 100% 19%, 85% 42%, 78% 34%, 78% 100%, 22% 100%, 22% 34%, 15% 42%, 0 19%);
}

.shirt::after {
  position: absolute;
  top: 10%;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: oklch(1 0 0 / 0.42);
}

.shirt--night {
  --shirt-pattern: url("assets/patterns/sajak-pattern.svg");
}

.shirt--archive {
  --shirt-pattern: url("assets/images/batik-cloth-archive.webp");
  background-position: 30% center;
}

.shirt--mineral {
  --shirt-pattern: url("assets/patterns/jauhari-pattern.svg");
}

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

.garment-item strong {
  font-size: 0.86rem;
}

.garment-item small {
  margin-top: 0.2rem;
  color: oklch(0.38 0 0);
  font-size: 0.7rem;
}

.passport-mock {
  display: grid;
  grid-template-columns: minmax(15rem, 0.75fr) minmax(19rem, 1.25fr);
  min-height: 34rem;
  background: oklch(0.96 0 0);
  color: oklch(0.16 0 0);
}

.passport-mock__visual {
  position: relative;
  min-height: 26rem;
  background: url("assets/images/batik-maker-archive.webp") 50% center / cover no-repeat;
  filter: saturate(0.72) contrast(1.07);
}

.passport-mock__visual span {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 0.7rem;
  color: var(--white);
  font-size: 0.65rem;
  background: oklch(0.12 0 0);
}

.passport-mock__data {
  padding: clamp(1.5rem, 4vw, 4rem);
}

.passport-mock__data h4 {
  max-width: 9ch;
  margin: 0 0 2rem;
  color: oklch(0.54 0.2 18);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.passport-list {
  margin: 0;
}

.passport-list div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid oklch(0.75 0 0);
}

.passport-list div:last-child {
  border-bottom: 1px solid oklch(0.75 0 0);
}

.passport-list dt,
.passport-list dd {
  margin: 0;
}

.passport-list dt {
  color: oklch(0.42 0 0);
  font-size: 0.68rem;
}

.passport-list dd {
  font-size: 0.8rem;
  font-weight: 600;
}

.placeholder-flag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.55rem;
  color: oklch(0.43 0.17 22);
  font-size: 0.65rem;
  background: oklch(0.9 0.06 22);
}

.fit-mock {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(18rem, 1.15fr);
  min-height: 34rem;
  background: oklch(0.18 0 0);
}

.fit-mock__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  background: var(--signal);
}

.fit-mock__copy h4 {
  max-width: 10ch;
  margin: 0;
  font-family: "Krona One", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}

.fit-mock__copy p {
  max-width: 28rem;
  font-size: 0.82rem;
}

.fit-mock__panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.fit-tabs {
  display: flex;
  gap: 0.5rem;
}

.fit-tabs span {
  padding: 0.55rem 0.8rem;
  color: oklch(0.76 0 0);
  font-size: 0.68rem;
  box-shadow: inset 0 0 0 1px oklch(0.4 0 0);
  border-radius: 999px;
}

.fit-tabs span:first-child {
  color: var(--black);
  background: var(--mint);
  box-shadow: none;
}

.measure-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.74rem;
}

.measure-table th,
.measure-table td {
  padding: 0.8rem 0.45rem;
  text-align: left;
  border-bottom: 1px solid oklch(0.32 0 0);
}

.measure-table th {
  color: oklch(0.72 0 0);
  font-weight: 500;
}

.fit-chat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid oklch(0.32 0 0);
  font-size: 0.72rem;
}

.fit-chat strong {
  color: var(--mint);
}

.atelier-mock {
  position: relative;
  min-height: 38rem;
  background: url("assets/images/jadi-batek-workshop.webp") center / cover no-repeat;
}

.atelier-mock::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, oklch(0.08 0 0 / 0.9), transparent 70%);
}

.atelier-mock__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.2rem;
  width: min(33rem, 68%);
  min-height: 38rem;
  padding: clamp(2rem, 5vw, 5rem);
}

.atelier-mock__copy h4 {
  max-width: 10ch;
  margin: 0;
  font-family: "Krona One", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.8vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.atelier-mock__copy p {
  color: oklch(0.82 0 0);
  font-size: 0.82rem;
}

.gift-mock {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) minmax(13rem, 0.7fr);
  min-height: 36rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  gap: clamp(1.5rem, 4vw, 4rem);
  background: oklch(0.86 0.08 23);
  color: oklch(0.14 0.02 23);
}

.gift-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 28rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: oklch(0.12 0 0);
  color: var(--white);
}

.gift-box img {
  width: 4.5rem;
}

.gift-box h4 {
  max-width: 11ch;
  margin: 0;
  font-family: "Krona One", Arial, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.phone-mock {
  align-self: center;
  justify-self: center;
  width: min(18rem, 100%);
  overflow: hidden;
  background: oklch(0.11 0 0);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 8px oklch(0.12 0 0 / 0.26);
}

.phone-mock__top {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  color: oklch(0.8 0 0);
  font-size: 0.6rem;
}

.phone-mock__image {
  aspect-ratio: 0.9;
  background: url("assets/images/batik-class-kelantan.webp") center / cover no-repeat;
}

.phone-mock__copy {
  padding: 1rem;
  color: var(--white);
}

.phone-mock__copy strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.phone-mock__copy span {
  display: block;
  color: oklch(0.72 0 0);
  font-size: 0.64rem;
}

.home-close {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto;
  align-items: end;
  gap: 3rem;
  padding: clamp(5rem, 11vw, 11rem) var(--page-pad);
  background: var(--signal);
  color: var(--white);
}

.home-close h2 {
  max-width: 14ch;
  font-family: "Krona One", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 400;
}

.home-close__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.home-close .button {
  color: var(--black);
  background: var(--white);
}

.home-close .button--ghost {
  color: var(--white);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--white);
}

.brand-page {
  --brand-bg: var(--black);
  --brand-surface: oklch(0.15 0 0);
  --brand-ink: var(--white);
  --brand-muted: oklch(0.74 0 0);
  --brand-primary: var(--signal);
  --brand-primary-text: var(--brand-primary);
  --brand-accent: var(--mint);
  --brand-line: oklch(0.34 0 0);
  --brand-display: "Krona One", Arial, sans-serif;
  min-height: 100vh;
  overflow: hidden;
  background: var(--brand-bg);
  color: var(--brand-ink);
  font-family: var(--brand-body, "Hanken Grotesk", Arial, sans-serif);
}

.theme-raut,
.theme-jauhari,
.research-page {
  color-scheme: light;
}

.theme-raut {
  --brand-bg: oklch(0.98 0 0);
  --brand-surface: oklch(0.92 0.01 264);
  --brand-ink: oklch(0.18 0.04 265);
  --brand-muted: oklch(0.42 0.04 265);
  --brand-primary: oklch(0.42 0.18 276);
  --brand-accent: oklch(0.67 0.18 42);
  --brand-line: oklch(0.72 0.03 265);
  --brand-display: "Familjen Grotesk", Arial, sans-serif;
  --brand-body: "Familjen Grotesk", Arial, sans-serif;
}

.theme-jauhari {
  --brand-bg: oklch(0.88 0.08 245);
  --brand-surface: oklch(0.97 0.02 245);
  --brand-ink: oklch(0.19 0.07 268);
  --brand-muted: oklch(0.38 0.07 268);
  --brand-primary: oklch(0.47 0.19 264);
  --brand-accent: oklch(0.64 0.2 28);
  --brand-line: oklch(0.63 0.08 245);
  --brand-display: "Georama", Arial, sans-serif;
  --brand-body: "Georama", Arial, sans-serif;
}

.theme-ruas {
  --brand-bg: oklch(0.09 0 0);
  --brand-surface: oklch(0.38 0.23 276);
  --brand-ink: var(--white);
  --brand-muted: oklch(0.78 0 0);
  --brand-primary: oklch(0.49 0.25 276);
  --brand-primary-text: oklch(0.75 0.15 276);
  --brand-accent: oklch(0.88 0.18 122);
  --brand-line: oklch(0.38 0 0);
  --brand-display: "Anybody", Arial, sans-serif;
  --brand-body: "Atkinson Hyperlegible Next", Arial, sans-serif;
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(21rem, 0.82fr);
  min-height: calc(100svh - var(--header-height));
}

.brand-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: clamp(3rem, 8vw, 8rem) var(--page-pad) clamp(2.5rem, 5vw, 5rem);
}

.brand-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  color: var(--brand-bg);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--brand-accent);
  border-radius: 999px;
}

.brand-status::before {
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.brand-lockup img {
  width: clamp(4.6rem, 9vw, 8.5rem);
  flex: 0 0 auto;
}

.brand-lockup h1 {
  font-family: var(--brand-display);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.theme-sajak .brand-lockup h1 {
  font-weight: 400;
}

.theme-ruas .brand-lockup h1 {
  font-stretch: 118%;
  font-weight: 720;
}

.brand-meaning {
  display: grid;
  grid-template-columns: minmax(10rem, 0.75fr) minmax(14rem, 1.25fr);
  gap: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--brand-line);
}

.brand-meaning strong {
  color: var(--brand-primary-text);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.brand-meaning p {
  max-width: 37rem;
  color: var(--brand-muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.brand-hero__art {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background-color: var(--brand-surface);
  background-image: var(--brand-pattern);
  background-size: cover;
}

.brand-hero__art::before {
  position: absolute;
  inset: 7%;
  content: "";
  background: var(--brand-photo) center / cover no-repeat;
  clip-path: polygon(0 0, 100% 7%, 92% 100%, 8% 94%);
  filter: var(--brand-photo-filter, none);
}

.brand-hero__art::after {
  position: absolute;
  right: 7%;
  bottom: 7%;
  width: clamp(4.5rem, 8vw, 8rem);
  height: clamp(4.5rem, 8vw, 8rem);
  content: "";
  background: var(--brand-mark) center / contain no-repeat;
}

.theme-sajak {
  --brand-pattern: url("assets/patterns/sajak-pattern.svg");
  --brand-photo: url("assets/images/batik-class-kelantan.webp");
  --brand-mark: url("assets/marks/sajak.svg");
}

.theme-raut {
  --brand-pattern: url("assets/patterns/raut-pattern.svg");
  --brand-photo: url("assets/images/batik-maker-archive.webp");
  --brand-mark: url("assets/marks/raut.svg");
  --brand-photo-filter: saturate(0.25) contrast(1.13);
}

.theme-jauhari {
  --brand-pattern: url("assets/patterns/jauhari-pattern.svg");
  --brand-photo: url("assets/images/jadi-batek-workshop.webp");
  --brand-mark: url("assets/marks/jauhari.svg");
  --brand-photo-filter: saturate(0.76) contrast(1.05);
}

.theme-ruas {
  --brand-pattern: url("assets/patterns/ruas-pattern.svg");
  --brand-photo: url("assets/images/batik-cloth-archive.webp");
  --brand-mark: url("assets/marks/ruas.svg");
  --brand-photo-filter: saturate(1.35) contrast(1.18);
}

.theme-raut .brand-hero__art::before {
  inset: 13% 10%;
  clip-path: polygon(0 0, 84% 0, 100% 16%, 100% 100%, 0 100%);
}

.theme-jauhari .brand-hero__art::before {
  inset: 12% 8% 6% 15%;
  clip-path: ellipse(48% 46% at 50% 50%);
}

.theme-ruas .brand-hero__art::before {
  inset: 10% 14% 14% 6%;
  clip-path: polygon(0 0, 68% 0, 68% 17%, 100% 17%, 100% 100%, 30% 100%, 30% 80%, 0 80%);
}

.brand-manifesto {
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) minmax(22rem, 1.45fr);
  gap: clamp(2rem, 8vw, 9rem);
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  color: var(--brand-bg);
  background: var(--brand-primary);
}

.theme-sajak .brand-manifesto,
.theme-ruas .brand-manifesto {
  color: var(--white);
}

.theme-raut .brand-status,
.theme-raut .brand-fit > div:first-child,
.theme-jauhari .brand-status,
.theme-jauhari .brand-fit > div:first-child {
  color: var(--brand-ink);
}

.brand-manifesto img {
  width: clamp(5rem, 9vw, 9rem);
}

.brand-manifesto blockquote {
  max-width: 18ch;
  margin: 0;
  font-family: var(--brand-display);
  font-size: clamp(2.2rem, 5.2vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-manifesto blockquote span {
  display: block;
  margin-top: 1rem;
  font-family: var(--brand-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.brand-specs {
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
}

.brand-specs__title {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.brand-specs__title h2 {
  max-width: 11ch;
  font-family: var(--brand-display);
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
  font-weight: 500;
}

.brand-specs__title p {
  max-width: 32rem;
  color: var(--brand-muted);
}

.palette-strip {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr 1fr;
  min-height: 11rem;
}

.swatch {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--swatch-ink);
  background: var(--swatch);
}

.swatch strong {
  font-size: 0.78rem;
}

.swatch span {
  font-size: 0.64rem;
}

.type-specimen {
  display: grid;
  grid-template-columns: minmax(15rem, 0.82fr) minmax(20rem, 1.18fr);
  gap: clamp(2rem, 6vw, 7rem);
  padding-top: clamp(3rem, 6vw, 6rem);
}

.type-specimen__display strong {
  display: block;
  font-family: var(--brand-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.type-specimen__display span,
.type-specimen__body span {
  display: block;
  margin-bottom: 1rem;
  color: var(--brand-muted);
  font-size: 0.72rem;
}

.type-specimen__body p {
  max-width: 58ch;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.voice-lines {
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--brand-line);
}

.guideline-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-top: clamp(3rem, 7vw, 7rem);
  padding-top: 2rem;
  border-top: 1px solid var(--brand-line);
}

.guideline-link h3 {
  margin: 0 0 0.65rem;
  font-family: var(--brand-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1;
}

.guideline-link p {
  max-width: 48rem;
  color: var(--brand-muted);
}

.guideline-link .button {
  color: var(--brand-bg);
  background: var(--brand-primary);
}

.theme-ruas .guideline-link .button {
  color: var(--white);
}

.voice-line {
  display: grid;
  grid-template-columns: minmax(8rem, 0.3fr) minmax(16rem, 0.7fr);
  gap: 2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--brand-line);
}

.voice-line span {
  color: var(--brand-muted);
  font-size: 0.72rem;
}

.voice-line strong {
  font-family: var(--brand-display);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 500;
}

.storefront-study {
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  color: var(--brand-ink);
  background: var(--brand-surface);
}

.storefront-study__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.storefront-study__head h2 {
  max-width: 12ch;
  font-family: var(--brand-display);
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  font-weight: 500;
}

.storefront-study__head p {
  max-width: 31rem;
  color: var(--brand-muted);
}

.concept-browser {
  overflow: hidden;
  color: var(--brand-ink);
  background: var(--brand-bg);
  border-radius: var(--radius-md);
}

.concept-browser__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  color: var(--brand-muted);
  font-size: 0.68rem;
  border-bottom: 1px solid var(--brand-line);
}

.concept-home {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  min-height: 40rem;
}

.concept-home__visual {
  min-height: 31rem;
  background: var(--concept-photo) center / cover no-repeat;
  filter: var(--brand-photo-filter, none);
}

.concept-home__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 3.5vw, 3.75rem);
}

.concept-home__copy img {
  width: 4.5rem;
}

.concept-home__copy h3 {
  max-width: 9ch;
  font-family: var(--brand-display);
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  font-weight: 500;
}

.concept-home__copy p {
  max-width: 28rem;
  color: var(--brand-muted);
}

.concept-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--brand-line);
  font-size: 0.78rem;
}

.concept-price strong {
  color: var(--brand-primary-text);
  font-size: 1rem;
}

.theme-sajak .concept-home {
  --concept-photo: url("assets/images/batik-class-kelantan.webp");
}

.theme-raut .concept-home {
  --concept-photo: url("assets/images/batik-maker-archive.webp");
}

.theme-jauhari .concept-home {
  --concept-photo: url("assets/images/jadi-batek-workshop.webp");
}

.theme-ruas .concept-home {
  --concept-photo: url("assets/images/batik-cloth-archive.webp");
}

.theme-raut .concept-home__copy {
  background-image: url("assets/patterns/raut-pattern.svg");
  background-size: cover;
}

.theme-raut .concept-home__copy > * {
  padding: 0.65rem;
  width: fit-content;
  background: var(--brand-bg);
}

.theme-jauhari .concept-home {
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
}

.theme-jauhari .concept-home__visual {
  order: 2;
}

.theme-jauhari .concept-home__copy {
  background-image: url("assets/patterns/jauhari-pattern.svg");
  background-size: cover;
}

.theme-jauhari .concept-home__copy > * {
  padding: 0.6rem;
  width: fit-content;
  background: var(--brand-bg);
}

.theme-ruas .concept-home {
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
}

.theme-ruas .concept-home__copy {
  background: var(--brand-primary);
}

.theme-ruas .concept-home__copy p,
.theme-ruas .concept-price strong {
  color: var(--white);
}

.brand-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--brand-bg);
}

.brand-fit > div {
  min-height: 25rem;
  padding: clamp(2rem, 5vw, 5rem) var(--page-pad);
}

.brand-fit > div:first-child {
  color: var(--brand-bg);
  background: var(--brand-accent);
}

.brand-fit > div:last-child {
  border-top: 1px solid var(--brand-line);
}

.brand-fit h2 {
  max-width: 10ch;
  margin-bottom: 2rem;
  font-family: var(--brand-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
}

.brand-fit p {
  max-width: 42rem;
  font-size: 1.06rem;
}

.brand-next {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 3rem;
  padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
  border-top: 1px solid var(--brand-line);
}

.brand-next p {
  color: var(--brand-muted);
}

.brand-next__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.brand-next__links a {
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px var(--brand-line);
  border-radius: 999px;
}

.brand-next__links a:hover {
  color: var(--brand-bg);
  background: var(--brand-ink);
}

.compare-page {
  min-height: 100vh;
  overflow: hidden;
  color: var(--ink);
  background: var(--black);
}

.compare-page section {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.decision-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem var(--page-pad);
  color: var(--black);
  background: var(--mint);
  border-bottom: 1px solid var(--black);
}

.decision-notice strong {
  display: block;
  margin-bottom: 0.25rem;
}

.decision-notice p {
  max-width: 70ch;
}

.decision-notice--invalid {
  color: var(--white);
  background: var(--signal);
}

.decision-notice__actions,
.decision-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.decision-notice .button {
  color: var(--white);
  background: var(--black);
}

.decision-notice .button--ghost {
  color: var(--black);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--black);
}

.compare-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  min-height: calc(82svh - var(--header-height));
  padding: clamp(4rem, 10vw, 10rem) var(--page-pad) clamp(3.5rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.compare-hero h1 {
  max-width: 12ch;
  font-family: "Krona One", Arial, sans-serif;
  font-size: clamp(2.65rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.compare-hero__copy > p {
  max-width: 48rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
}

.compare-hero__aside {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.compare-hero__aside > p {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  font-size: 1.06rem;
}

.compare-identities,
.compare-ledger-section {
  padding-top: clamp(5rem, 10vw, 10rem);
}

.compare-section-head {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(22rem, 1.3fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  padding: 0 var(--page-pad) clamp(2.5rem, 5vw, 5rem);
}

.compare-section-head h2,
.decision-session__head h2,
.decision-summary__head h2,
.decision-method h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
}

.compare-section-head p,
.decision-session__head > div > p {
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.compare-identity-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compare-identity {
  display: flex;
  min-width: 0;
  min-height: 31rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--white);
  background: var(--black);
  border-right: 1px solid color-mix(in oklch, currentColor 24%, transparent);
}

.compare-identity:last-child {
  border-right: 0;
}

.compare-identity--raut {
  color: oklch(0.18 0.04 265);
  background: oklch(0.98 0 0);
}

.compare-identity--jauhari {
  color: oklch(0.19 0.07 268);
  background: oklch(0.88 0.08 245);
}

.compare-identity--ruas {
  color: var(--white);
  background: oklch(0.38 0.23 276);
}

.compare-identity__head {
  display: flex;
  min-height: 7rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.compare-identity__head img {
  width: clamp(4rem, 6vw, 6.5rem);
}

.compare-identity__head span {
  max-width: 10rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
}

.compare-identity h3 {
  overflow-wrap: anywhere;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 600;
}

.compare-identity--sajak h3 {
  font-family: "Krona One", Arial, sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 4.1rem);
  font-weight: 400;
}

.compare-identity--raut h3 {
  font-family: "Familjen Grotesk", Arial, sans-serif;
}

.compare-identity--jauhari h3 {
  font-family: "Georama", Arial, sans-serif;
}

.compare-identity--ruas h3 {
  font-family: "Anybody", Arial, sans-serif;
  font-stretch: 118%;
  font-weight: 720;
}

.compare-identity > div:nth-child(2) p {
  max-width: 18rem;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.compare-identity__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.compare-identity__actions button,
.compare-identity__actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.65rem 0.8rem;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.compare-identity__actions button {
  cursor: pointer;
}

.compare-identity__actions button[aria-pressed="true"] {
  color: var(--black);
  background: var(--mint);
  border-color: var(--mint);
}

.compare-identity--raut .compare-identity__actions button[aria-pressed="true"],
.compare-identity--jauhari .compare-identity__actions button[aria-pressed="true"] {
  color: var(--white);
  background: oklch(0.42 0.18 276);
  border-color: oklch(0.42 0.18 276);
}

.compare-identity__actions button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.compare-scroll-note {
  display: none;
  margin: 0 var(--page-pad) 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.compare-ledger-wrap {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--signal) var(--line);
}

.compare-ledger-wrap:focus-visible {
  outline-offset: -4px;
}

.compare-ledger {
  width: 100%;
  min-width: 78rem;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
}

.compare-ledger th,
.compare-ledger td {
  padding: clamp(1.2rem, 2.4vw, 2.5rem);
  vertical-align: top;
  text-align: left;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compare-ledger th:last-child,
.compare-ledger td:last-child {
  border-right: 0;
}

.compare-ledger thead th {
  color: var(--white);
  background: oklch(0.15 0 0);
}

.compare-ledger thead th:first-child,
.compare-ledger tbody th {
  width: 13rem;
}

.compare-ledger thead span,
.compare-ledger thead small {
  display: block;
}

.compare-ledger thead span {
  font-size: 1.2rem;
}

.compare-ledger thead small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.compare-ledger tbody th {
  color: var(--black);
  background: var(--mint);
  font-size: 0.82rem;
}

.compare-ledger tbody td {
  color: var(--ink);
  background: oklch(0.11 0 0);
  font-size: 0.96rem;
}

.decision-session {
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  background: oklch(0.13 0 0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-session__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
}

.decision-progress {
  max-width: 19rem;
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 650;
  text-align: right;
}

.decision-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0;
  margin: clamp(2.5rem, 5vw, 5rem) 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-steps li {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.decision-steps li:last-child {
  border-right: 0;
}

.decision-steps button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
  width: 100%;
  min-height: 4rem;
  padding: 0.7rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.decision-steps button > span {
  color: var(--white);
}

.decision-steps button > i {
  min-width: 1rem;
  color: var(--black);
  font-size: 0.72rem;
  font-style: normal;
  text-align: center;
  background: var(--mint);
  border-radius: 999px;
}

.decision-steps button.has-gap > i {
  color: var(--white);
  background: var(--signal);
}

.decision-steps button[aria-current="step"] {
  color: var(--white);
  background: var(--signal);
}

.decision-form {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.decision-form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.decision-form legend {
  max-width: 24ch;
  padding: 0;
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.decision-score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-score-cell {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.decision-score-cell:last-child {
  border-right: 0;
}

.decision-score-cell__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.decision-score-cell__brand img {
  width: 2.7rem;
  height: 2.7rem;
}

.decision-score-cell__brand strong {
  font-size: 1rem;
}

.decision-score-cell > p {
  flex: 1;
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.decision-score-cell label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 650;
}

.decision-score-cell select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 2.2rem 0.7rem 0.75rem;
  color: var(--white);
  font: inherit;
  font-size: 0.82rem;
  background: var(--black);
  border: 1px solid oklch(0.45 0 0);
  border-radius: var(--radius-sm);
}

.decision-score-cell select:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 1;
}

.decision-session__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.button:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.58;
}

.decision-summary {
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  color: var(--black);
  background: var(--mint);
}

.decision-summary__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.decision-summary__head h2 {
  max-width: 10ch;
}

.decision-summary .button--ghost,
.decision-dialog .button--ghost {
  color: var(--black);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--black);
}

.decision-summary__status {
  max-width: 60rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.decision-summary__rows {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  border-top: 1px solid var(--black);
}

.decision-summary__rows li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--black);
}

.decision-summary__rows li > span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
  text-align: right;
}

.decision-lead {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.decision-lead span {
  font-size: 0.82rem;
  font-weight: 650;
}

.decision-lead strong {
  max-width: 24ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.decision-summary__caveat {
  max-width: 60rem;
  margin-top: 1.5rem;
  font-size: 0.86rem;
}

.decision-method {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
}

.decision-method h2 {
  max-width: 15ch;
}

.decision-method p {
  max-width: 60rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.decision-method__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.decision-method__links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.65rem 0.85rem;
  font-weight: 650;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: 999px;
}

.decision-dialog {
  width: min(34rem, calc(100% - 2rem));
  padding: 0;
  color: var(--black);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-md);
}

.decision-dialog::backdrop {
  background: oklch(0.04 0 0 / 0.78);
}

.decision-dialog form {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.decision-dialog h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.decision-dialog p {
  margin-top: 1rem;
}

.decision-dialog form > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 2rem;
}

.research-page {
  color: oklch(0.16 0 0);
  background: oklch(0.98 0 0);
}

.research-hero {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(22rem, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  min-height: 35rem;
  padding: clamp(4rem, 10vw, 10rem) var(--page-pad);
  color: var(--white);
  background: oklch(0.16 0.02 250);
}

.research-hero h1 {
  align-self: start;
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 6rem);
}

.research-hero__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  max-width: 47rem;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.research-hero__body strong {
  color: var(--mint);
}

.research-content {
  display: grid;
  grid-template-columns: minmax(13rem, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(4rem, 9vw, 9rem) var(--page-pad);
}

.research-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.research-aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.research-aside a {
  color: oklch(0.35 0 0);
  font-size: 0.84rem;
}

.research-article {
  max-width: 68rem;
}

.research-block {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  padding: clamp(2rem, 5vw, 5rem) 0;
  border-top: 1px solid oklch(0.75 0 0);
}

.research-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.research-block h2 {
  max-width: 15ch;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
}

.research-block h3 {
  margin: 2.5rem 0 0.8rem;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.research-block p,
.research-block li {
  max-width: 70ch;
  line-height: 1.68;
}

.research-block p + p {
  margin-top: 1rem;
}

.research-block ul,
.research-block ol {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.25rem;
}

.research-block a {
  color: oklch(0.42 0.18 276);
  font-weight: 600;
}

.research-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
}

.research-table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
}

.research-table th,
.research-table td {
  padding: 1rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid oklch(0.78 0 0);
}

.research-table th {
  color: oklch(0.34 0 0);
  font-size: 0.73rem;
}

.research-table td {
  font-size: 0.9rem;
}

.research-callout {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(17rem, 0.65fr);
  gap: 2rem;
  margin: 2.5rem 0;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: var(--white);
  background: oklch(0.54 0.2 18);
}

.research-callout strong {
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  line-height: 1.05;
}

.research-callout p {
  align-self: end;
}

.source-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0 !important;
  padding: 0 !important;
  list-style: none;
  border-top: 1px solid oklch(0.75 0 0);
}

.source-list li {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid oklch(0.75 0 0);
}

.source-list small {
  display: block;
  margin-top: 0.3rem;
  color: oklch(0.4 0 0);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(18rem, 1.2fr) minmax(17rem, 0.8fr);
  gap: 3rem;
  padding: 2.5rem var(--page-pad);
  color: oklch(0.72 0 0);
  background: var(--black);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.site-footer p {
  max-width: 50rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 1.2rem;
}

.site-footer a:hover {
  color: var(--white);
}

.has-js .reveal {
  transform: translateY(12px);
  transition: transform 700ms var(--ease-out);
}

.has-js .reveal.is-visible {
  transform: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  :root {
    --header-height: 112px;
  }

  .home-hero,
  .brand-hero {
    grid-template-columns: 1fr 0.86fr;
  }

  .direction-row {
    grid-template-columns: minmax(9rem, 0.35fr) minmax(18rem, 1fr) minmax(10rem, 0.35fr);
  }

  .plate,
  .plate:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .plate:nth-child(even) .plate__meta {
    order: 0;
  }

  .plate__meta {
    position: static;
  }
}

@media (max-width: 820px) {
  .home-hero,
  .brand-hero,
  .compare-hero,
  .compare-section-head,
  .decision-session__head,
  .decision-summary__head,
  .decision-method,
  .decision-notice,
  .thesis-band,
  .section-intro,
  .research-hero,
  .research-content,
  .brand-manifesto,
  .type-specimen,
  .guideline-link,
  .brand-next,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .decision-notice__actions,
  .decision-summary__actions {
    justify-content: flex-start;
  }

  .compare-hero {
    min-height: auto;
  }

  .compare-identity-rail,
  .decision-score-grid {
    grid-template-columns: 1fr 1fr;
  }

  .compare-identity:nth-child(2) {
    border-right: 0;
  }

  .compare-identity:nth-child(-n+2) {
    border-bottom: 1px solid color-mix(in oklch, currentColor 24%, transparent);
  }

  .decision-score-cell:nth-child(2) {
    border-right: 0;
  }

  .decision-score-cell:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .compare-scroll-note {
    display: block;
  }

  .decision-progress {
    max-width: none;
    text-align: left;
  }

  .decision-steps {
    display: flex;
    overflow-x: auto;
  }

  .decision-steps li {
    flex: 0 0 11rem;
  }

  .home-hero__summary {
    grid-template-columns: 1fr;
  }

  .home-hero__image {
    min-height: 63svh;
  }

  .home-hero h1,
  .brand-lockup h1 {
    font-size: clamp(2.8rem, 12vw, 5.4rem);
  }

  .direction-row {
    grid-template-columns: 8rem 1fr;
    min-height: 0;
  }

  .direction-row__sample {
    grid-column: 1 / -1;
    min-height: 16rem;
    border-top: 1px solid color-mix(in oklch, currentColor 20%, transparent);
    border-left: 0;
  }

  .arrival-mock,
  .passport-mock,
  .fit-mock,
  .gift-mock,
  .concept-home,
  .theme-jauhari .concept-home,
  .theme-ruas .concept-home,
  .brand-fit {
    grid-template-columns: 1fr;
  }

  .theme-jauhari .concept-home__visual {
    order: 0;
  }

  .garment-edit {
    gap: 0.65rem;
  }

  .brand-hero__art {
    min-height: 70svh;
  }

  .brand-meaning {
    grid-template-columns: 1fr;
  }

  .palette-strip {
    grid-template-columns: 1fr 1fr;
  }

  .research-aside {
    position: static;
  }

  .research-aside ul {
    flex-flow: row wrap;
  }

  .home-close {
    grid-template-columns: 1fr;
  }

  .home-close__actions,
  .brand-next__links,
  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 108px;
  }

  .site-header {
    gap: 0.45rem 1rem;
    padding-top: 0.55rem;
    padding-bottom: 0.45rem;
  }

  .room-signature small {
    display: none;
  }

  .site-nav {
    gap: 1.05rem;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .home-hero__copy {
    gap: 3rem;
    padding-top: 3.2rem;
  }

  .direction-row {
    grid-template-columns: 1fr;
  }

  .compare-identity-rail,
  .decision-score-grid {
    grid-template-columns: 1fr;
  }

  .compare-identity,
  .compare-identity:nth-child(2),
  .decision-score-cell,
  .decision-score-cell:nth-child(2) {
    border-right: 0;
  }

  .compare-identity:not(:last-child),
  .decision-score-cell:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .compare-identity {
    min-height: 25rem;
  }

  .decision-session__nav {
    align-items: stretch;
    flex-direction: column;
  }

  .decision-session__nav .button {
    width: 100%;
  }

  .decision-summary__rows li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .decision-summary__rows li > span:last-child {
    justify-content: flex-start;
    text-align: left;
  }

  .direction-row__mark {
    flex-direction: row;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid color-mix(in oklch, currentColor 20%, transparent);
  }

  .direction-row__mark img {
    width: 3.8rem;
  }

  .direction-row__copy h3 {
    font-size: 3rem;
  }

  .experience__intro,
  .brand-specs__title,
  .storefront-study__head {
    align-items: start;
    flex-direction: column;
  }

  .mock-browser__bar span:last-child,
  .mock-store-nav div span:nth-child(n+3) {
    display: none;
  }

  .mock-browser__bar {
    grid-template-columns: 1fr 1fr;
  }

  .mock-browser__bar > span:nth-child(2) {
    justify-self: end;
  }

  .arrival-mock__copy h4,
  .brand-lockup h1 {
    overflow-wrap: anywhere;
  }

  .garment-edit {
    grid-template-columns: 1fr 1fr;
  }

  .garment-item:last-child {
    grid-column: 1 / -1;
    width: 50%;
  }

  .passport-list div {
    grid-template-columns: 5.5rem 1fr;
  }

  .atelier-mock__copy {
    width: 100%;
  }

  .palette-strip {
    grid-template-columns: 1fr;
  }

  .voice-line,
  .research-callout {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .has-js .reveal {
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .brand-next {
    display: none !important;
  }

  body,
  .research-page {
    color: oklch(0.1 0 0);
    background: oklch(1 0 0);
  }
}
