@font-face {
  font-family: "EB Garamond";
  src: url("/assets/fonts/eb-garamond-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #070707;
  --ink-soft: #0d0d0d;
  --panel: #111110;
  --line: rgba(237, 226, 207, 0.18);
  --line-strong: rgba(237, 226, 207, 0.34);
  --ivory: #f4eee5;
  --ivory-soft: #cfc7bb;
  --muted: #9d958a;
  --gold: #d4af6a;
  --gold-bright: #e6c987;
  --red: #b5121b;
  --display-serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Lato", "Helvetica Neue", Arial, sans-serif;
  --page: min(1440px, calc(100vw - 96px));
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--ink);
  background: var(--ink);
}

html[lang="th"] {
  --serif: "Thonburi", "Noto Serif Thai", Tahoma, sans-serif;
}

html[lang="zh-Hans"] {
  --serif: "Songti SC", STSong, "Noto Serif SC", "Source Han Serif SC", serif;
}

html[lang="th"] body,
html[lang="zh-Hans"] body {
  line-height: 1.75;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold-bright);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px 48px;
  border-bottom: 1px solid transparent;
  transition: background-color 300ms ease, border-color 300ms ease, min-height 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  border-color: var(--line);
  background: rgba(7, 7, 7, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  font-family: var(--display-serif);
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand img {
  width: 18px;
  height: 38px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-primary {
  display: flex;
  gap: clamp(24px, 3vw, 54px);
}

.site-nav a {
  position: relative;
  color: var(--ivory-soft);
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: right 220ms ease;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  right: 0;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: clamp(16px, 1.8vw, 28px);
  border-left: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.site-nav .language-switch a::after {
  display: none;
}

.site-nav .language-switch a {
  color: var(--muted);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 10px 18px;
  border-left: 1px solid var(--line-strong);
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-cta span {
  font-size: 16px;
  transition: transform 180ms ease;
}

.header-cta:hover span {
  transform: translate(3px, -3px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span[aria-hidden="true"] {
  display: block;
  width: 26px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 1) 0%, rgba(7, 7, 7, 0.96) 35%, rgba(7, 7, 7, 0.16) 70%),
    radial-gradient(circle at 74% 42%, rgba(151, 88, 43, 0.22), transparent 35%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: 18%;
  right: 8%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(212, 175, 106, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 160px rgba(144, 76, 31, 0.14), inset 0 0 160px rgba(144, 76, 31, 0.08);
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  border: 1px solid rgba(212, 175, 106, 0.08);
  border-radius: inherit;
  content: "";
}

.hero-glow::before {
  inset: 9%;
}

.hero-glow::after {
  inset: 20%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 72px) 0 88px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  position: relative;
  margin: 0;
  font-family: var(--display-serif);
  font-size: clamp(96px, 11vw, 188px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.72;
}

.hero-line {
  margin: 48px 0 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 50px);
  line-height: 1;
}

.hero-intro {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--ivory-soft);
  font-size: 16px;
  letter-spacing: 0.035em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-primary:hover {
  background: var(--gold-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ivory-soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  right: -5%;
  bottom: 0;
  width: min(64vw, 940px);
  height: 94%;
  margin: 0;
  pointer-events: none;
}

.hero-portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, transparent 24%),
    linear-gradient(0deg, var(--ink) 0%, transparent 18%);
  content: "";
}

.hero-portrait picture,
.hero-portrait img {
  width: 100%;
  height: 100%;
}

.hero-portrait img {
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.86) contrast(1.04);
}

.hero-country {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 9%;
  margin: 0;
  color: rgba(244, 238, 229, 0.05);
  font-family: var(--serif);
  font-size: clamp(100px, 18vw, 290px);
  letter-spacing: -0.045em;
  line-height: 0.7;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-aside {
  position: absolute;
  right: -54px;
  top: 50%;
  z-index: 4;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span:last-child {
  color: var(--gold-bright);
  font-size: 16px;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(4px); }
}

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
}

.section-number {
  position: absolute;
  top: 58px;
  left: 0;
  color: rgba(244, 238, 229, 0.28);
  font-family: var(--serif);
  font-size: 13px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(64px, 9vw, 160px);
  align-items: center;
}

.section-grid-top {
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.singapore-copy h2,
.connect h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7.2vw, 118px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.86;
}

.about {
  border-bottom: 1px solid var(--line);
}

.about-copy {
  color: var(--ivory-soft);
}

.about-copy p {
  margin: 0 0 24px;
}

.about-copy .lead {
  margin-bottom: 32px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.16;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 120px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles > div {
  position: relative;
  min-height: 190px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.principles > div:last-child {
  border-right: 0;
}

.principles span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}

.principles strong,
.principles small {
  display: block;
}

.principles strong {
  margin-top: 42px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.principles small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.ventures {
  padding-bottom: 110px;
}

.section-intro {
  max-width: 520px;
  margin: 0;
  color: var(--ivory-soft);
  font-size: 17px;
}

.venture-list {
  border-top: 1px solid var(--line);
}

.venture-row {
  --venture-accent: var(--gold);
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(260px, 1.05fr) minmax(300px, 0.95fr) 44px;
  gap: 34px;
  align-items: center;
  min-height: 246px;
  padding: 32px 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.venture-row::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--venture-accent) 12%, transparent), transparent 52%);
  content: "";
  transition: opacity 300ms ease;
}

.venture-row:hover::before {
  opacity: 1;
}

.venture-krezdo {
  --venture-accent: var(--red);
}

.venture-ozmov {
  --venture-accent: #bc9466;
}

.venture-number {
  align-self: start;
  padding-top: 10px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
}

.venture-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 20px;
}

.venture-logo-square img {
  width: min(180px, 85%);
  max-height: 150px;
  object-fit: contain;
}

.venture-logo-wide img {
  width: min(280px, 92%);
  max-height: 120px;
  object-fit: contain;
}

.venture-copy strong,
.venture-copy small,
.venture-copy em {
  display: block;
}

.venture-copy strong {
  color: var(--ivory);
  font-family: var(--display-serif);
  font-size: clamp(35px, 3.5vw, 58px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.venture-copy small {
  margin-top: 13px;
  color: var(--ivory-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venture-copy em {
  margin-top: 16px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  font-style: normal;
}

.venture-arrow {
  color: var(--venture-accent);
  font-size: 26px;
  transition: transform 220ms ease;
}

.venture-row:hover .venture-arrow {
  transform: translate(5px, -5px);
}

.building {
  padding-top: 110px;
  border-top: 1px solid var(--line);
}

.building-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.building-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background-color 260ms ease, transform 260ms ease;
}

.building-card:hover {
  z-index: 2;
  background: var(--panel);
  transform: translateY(-5px);
}

.status {
  align-self: flex-start;
  padding: 5px 9px;
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.status-live {
  color: #9addad;
}

.building-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 98px;
  margin: 58px 0 36px;
}

.building-mark img {
  max-width: 100%;
  max-height: 100%;
}

.building-mark-image img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.building-card strong {
  font-family: var(--display-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.building-card strong span {
  color: var(--gold);
  font-size: 0.7em;
}

.building-card small {
  margin-top: 12px;
  color: var(--ivory-soft);
  font-size: 13px;
  line-height: 1.5;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-foot b {
  color: var(--gold-bright);
  font-size: 15px;
  font-weight: 400;
}

.singapore {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(420px, 0.8fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: center;
  min-height: 880px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.singapore::before {
  position: absolute;
  inset: 12% 0;
  pointer-events: none;
  background: radial-gradient(circle at 25% 50%, rgba(212, 175, 106, 0.12), transparent 33%);
  content: "";
}

.singapore-symbol {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.singapore-symbol img {
  width: min(240px, 54%);
  filter: drop-shadow(0 0 48px rgba(212, 175, 106, 0.12));
}

.singapore-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.singapore-copy h2 {
  font-family: var(--display-serif);
  font-size: clamp(90px, 11vw, 176px);
  line-height: 0.74;
}

.singapore-lead {
  margin: 50px 0 18px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 36px;
}

.singapore-copy > p:last-of-type {
  max-width: 540px;
  color: var(--ivory-soft);
}

.signature {
  width: min(360px, 78%);
  margin-top: 48px;
  opacity: 0.86;
}

.singapore-word {
  position: absolute;
  right: -2vw;
  bottom: -0.12em;
  margin: 0;
  color: rgba(244, 238, 229, 0.032);
  font-family: var(--serif);
  font-size: clamp(120px, 20vw, 320px);
  letter-spacing: -0.05em;
  line-height: 0.75;
}

.connect {
  width: 100%;
  min-height: 940px;
  padding: 170px 48px 150px;
  overflow: hidden;
  background: var(--ink-soft);
}

.connect::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
}

.connect-glow {
  position: absolute;
  right: -14vw;
  bottom: -30vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(212, 175, 106, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 200px rgba(212, 175, 106, 0.06);
}

.connect-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.connect h2 {
  max-width: 1000px;
  font-size: clamp(70px, 8.5vw, 140px);
}

.connect-copy {
  max-width: 590px;
  margin: 42px 0 64px;
  color: var(--ivory-soft);
  font-size: 17px;
}

.whatsapp-message {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  width: 100%;
  padding: 40px 42px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 106, 0.6);
  background: rgba(212, 175, 106, 0.045);
  transition: color 260ms ease, background-color 260ms ease, transform 260ms ease;
}

.whatsapp-message::before {
  position: absolute;
  inset: 0 100% 0 0;
  z-index: -1;
  background: var(--gold);
  content: "";
  transition: right 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.whatsapp-message:hover {
  color: #1a1206;
  transform: translateY(-3px);
}

.whatsapp-message:hover::before {
  right: 0;
}

.whatsapp-message strong {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.whatsapp-message strong {
  color: var(--gold-bright);
  transition: color 260ms ease;
}

.whatsapp-message:hover strong {
  color: #1a1206;
}

.whatsapp-message b {
  color: var(--gold-bright);
  font-size: 34px;
  font-weight: 400;
  transition: color 260ms ease, transform 260ms ease;
}

.whatsapp-message:hover b {
  color: #1a1206;
  transform: translate(6px, -6px);
}

.other-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.other-links a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.other-links a:last-child {
  border-right: 0;
}

.other-links a:hover {
  background: rgba(255, 255, 255, 0.025);
}

.other-links span {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer {
  position: relative;
  padding: 0 48px 36px;
  overflow: hidden;
  background: var(--ink);
}

.footer-wordmark {
  display: flex;
  align-items: center;
  min-height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.footer-wordmark img {
  width: 100%;
  opacity: 0.22;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-top: 30px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  justify-self: end;
  color: var(--ivory-soft);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(212, 175, 106, 0.48);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease;
}

.floating-whatsapp:hover {
  border-color: var(--gold-bright);
  transform: translateY(-3px);
}

.floating-whatsapp span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #1a1206;
  background: var(--gold);
  font-size: 9px;
  font-weight: 700;
}

.floating-whatsapp strong {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html[lang="th"] .eyebrow,
html[lang="th"] .site-nav,
html[lang="th"] .button,
html[lang="th"] .text-link,
html[lang="th"] .status,
html[lang="th"] .card-foot,
html[lang="th"] .other-links a,
html[lang="th"] .footer-bottom,
html[lang="zh-Hans"] .eyebrow,
html[lang="zh-Hans"] .site-nav,
html[lang="zh-Hans"] .button,
html[lang="zh-Hans"] .text-link,
html[lang="zh-Hans"] .status,
html[lang="zh-Hans"] .card-foot,
html[lang="zh-Hans"] .other-links a,
html[lang="zh-Hans"] .footer-bottom {
  letter-spacing: 0.08em;
  text-transform: none;
}

html[lang="th"] .section-heading h2,
html[lang="th"] .connect h2,
html[lang="th"] .about-copy .lead,
html[lang="th"] .hero-line,
html[lang="th"] .whatsapp-message strong,
html[lang="zh-Hans"] .section-heading h2,
html[lang="zh-Hans"] .connect h2,
html[lang="zh-Hans"] .about-copy .lead,
html[lang="zh-Hans"] .hero-line,
html[lang="zh-Hans"] .whatsapp-message strong {
  letter-spacing: 0;
  line-height: 1.18;
}

html[lang="th"] .hero-intro,
html[lang="th"] .about-copy,
html[lang="th"] .section-intro,
html[lang="th"] .connect-copy,
html[lang="zh-Hans"] .hero-intro,
html[lang="zh-Hans"] .about-copy,
html[lang="zh-Hans"] .section-intro,
html[lang="zh-Hans"] .connect-copy {
  letter-spacing: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js [data-reveal][data-delay="1"] {
  transition-delay: 100ms;
}

.js [data-reveal][data-delay="2"] {
  transition-delay: 200ms;
}

.js [data-reveal][data-delay="3"] {
  transition-delay: 300ms;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 56px, 1040px);
  }

  .site-header {
    padding-right: 28px;
    padding-left: 28px;
  }

  .site-nav {
    gap: 22px;
  }

  .nav-primary {
    gap: 22px;
  }

  .hero-inner {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-portrait {
    right: -12%;
    width: 72vw;
  }

  .hero-copy {
    max-width: 600px;
  }

  .hero h1 {
    font-size: clamp(88px, 13vw, 150px);
  }

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

  .venture-row {
    grid-template-columns: 50px minmax(220px, 0.8fr) minmax(300px, 1fr) 36px;
    gap: 24px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
    --page: min(100% - 40px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    padding: 10px 20px;
  }

  .brand {
    z-index: 102;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-button[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    visibility: hidden;
    opacity: 0;
    background: rgba(7, 7, 7, 0.98);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .nav-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 42px;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .language-switch {
    gap: 20px;
    margin-top: 18px;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-nav .language-switch a {
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 980px;
    background:
      linear-gradient(180deg, var(--ink) 0%, rgba(7, 7, 7, 0.82) 52%, rgba(7, 7, 7, 0.05) 78%),
      radial-gradient(circle at 70% 62%, rgba(151, 88, 43, 0.22), transparent 40%),
      var(--ink);
  }

  .hero-inner {
    display: block;
    min-height: 980px;
    padding-top: 132px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(92px, 24vw, 150px);
    line-height: 0.73;
  }

  .hero-line {
    margin-top: 38px;
    font-size: clamp(30px, 6.5vw, 46px);
  }

  .hero-intro {
    max-width: 420px;
  }

  .hero-portrait {
    right: -14%;
    bottom: 0;
    width: 105%;
    height: 62%;
  }

  .hero-portrait::after {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 25%, transparent 72%, var(--ink) 100%);
  }

  .hero-portrait img {
    object-position: right bottom;
  }

  .hero-aside,
  .hero-country {
    display: none;
  }

  .hero-actions {
    position: relative;
    z-index: 5;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .section-grid-top {
    margin-bottom: 56px;
  }

  .principles {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
  }

  .principles > div:nth-child(2) {
    border-right: 0;
  }

  .principles > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .venture-row {
    grid-template-columns: 44px minmax(180px, 0.8fr) minmax(240px, 1fr) 30px;
    gap: 18px;
    min-height: 220px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .venture-logo {
    min-height: 120px;
    padding: 12px;
  }

  .venture-copy small {
    letter-spacing: 0.08em;
  }

  .singapore {
    grid-template-columns: 0.5fr 1fr;
    gap: 40px;
    min-height: 720px;
  }

  .singapore-symbol img {
    width: min(170px, 75%);
  }

  .connect {
    min-height: 820px;
    padding: 120px 28px;
  }

  .whatsapp-message {
    grid-template-columns: 1fr auto;
  }

  .whatsapp-message strong {
    font-size: clamp(32px, 5.2vw, 46px);
  }

  .other-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-links a:nth-child(2n) {
    border-right: 0;
  }

  .other-links a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 15px;
    height: 32px;
  }

  .hero {
    min-height: 1040px;
  }

  .hero-inner {
    min-height: 1040px;
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(82px, 28vw, 120px);
  }

  .hero-line {
    max-width: 330px;
    font-size: 32px;
    line-height: 1.02;
  }

  .hero-intro {
    max-width: 330px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .hero-actions .text-link {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-portrait {
    right: -28%;
    width: 135%;
    height: 50%;
  }

  .hero-portrait img {
    object-position: center bottom;
  }

  .section-heading h2,
  .singapore-copy h2,
  .connect h2 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .about-copy .lead {
    font-size: 30px;
  }

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

  .principles > div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles > div:last-child {
    border-bottom: 0;
  }

  .principles strong {
    margin-top: 24px;
  }

  .venture-row {
    grid-template-columns: 28px 1fr 24px;
    gap: 10px;
    min-height: auto;
    padding: 32px 4px;
  }

  .venture-number {
    grid-row: 1 / 3;
  }

  .venture-logo {
    grid-column: 2;
    justify-content: flex-start;
    min-height: 100px;
    padding: 4px 0;
  }

  .venture-logo-square img {
    width: 130px;
  }

  .venture-logo-wide img {
    width: min(230px, 88%);
  }

  .venture-copy {
    grid-column: 2;
  }

  .venture-copy strong {
    font-size: 40px;
  }

  .venture-copy small {
    font-size: 10px;
  }

  .venture-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    font-size: 20px;
  }

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

  .building-card {
    min-height: 350px;
  }

  .building-mark {
    margin-top: 44px;
  }

  .singapore {
    display: block;
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .singapore-symbol {
    position: absolute;
    right: -10px;
    top: 90px;
    opacity: 0.12;
  }

  .singapore-symbol img {
    width: 140px;
  }

  .singapore-copy h2 {
    font-size: clamp(86px, 27vw, 120px);
  }

  .singapore-lead {
    margin-top: 42px;
    font-size: 30px;
  }

  .connect {
    padding: 100px 16px 90px;
  }

  .connect-copy {
    margin-bottom: 42px;
  }

  .whatsapp-message {
    display: block;
    padding: 28px 22px;
  }

  .whatsapp-message strong {
    display: block;
  }

  .whatsapp-message strong {
    margin: 0;
    padding-right: 34px;
    font-size: clamp(36px, 10.5vw, 50px);
    line-height: 1.05;
  }

  .whatsapp-message b {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
  }

  .other-links {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .other-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .other-links a:last-child {
    border-bottom: 0;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer-wordmark {
    min-height: 130px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding-right: 10px;
  }

  .floating-whatsapp strong {
    display: none;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .eyebrow span,
  .menu-button span[aria-hidden="true"] {
    background: CanvasText;
  }
}
