@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;
  --champagne-muted: #ad8f5c;
  --whatsapp: #25d366;
  --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;
  scroll-padding-top: calc(var(--header-height) + 24px);
  scrollbar-color: var(--gold) var(--ink);
  background: var(--ink);
}

:is(main, section)[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

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

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

html[lang="my"] {
  --serif: "Myanmar Sangam MN", "Noto Serif Myanmar", sans-serif;
  --sans: "Myanmar Sangam MN", "Noto Sans Myanmar", sans-serif;
}

html[lang="km"] {
  --serif: "Khmer Sangam MN", "Noto Serif Khmer", sans-serif;
  --sans: "Khmer Sangam MN", "Noto Sans Khmer", sans-serif;
}

html[lang="lo"] {
  --serif: "Lao Sangam MN", "Noto Serif Lao", sans-serif;
  --sans: "Lao Sangam MN", "Noto Sans Lao", sans-serif;
}

html[lang="th"] body,
html[lang="zh-Hans"] body,
html[lang="my"] body,
html[lang="km"] body,
html[lang="lo"] 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-menu {
  position: relative;
  padding-left: clamp(16px, 1.8vw, 28px);
  border-left: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.language-menu summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 44px;
  padding: 8px 0;
  color: var(--gold-bright);
  cursor: pointer;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary i {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-menu[open] summary i {
  transform: translateY(2px) rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 17px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(390px, calc(100vw - 40px));
  padding: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.site-nav .language-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ivory-soft);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  transition: color 180ms ease, background-color 180ms ease;
}

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

.site-nav .language-options a:hover,
.site-nav .language-options a[aria-current="page"] {
  color: var(--gold-bright);
  background: rgba(212, 175, 106, 0.08);
}

.language-options small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.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(220px, 95%);
    max-height: 180px;
  object-fit: contain;
}

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

.venture-ozmov .venture-logo-wide img {
  width: min(170px, 85%);
  max-height: 150px;
}

.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;
}

.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(420px, 100%);
  height: auto;
  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(173, 143, 92, 0.72);
  color: var(--champagne-muted);
  background: rgba(173, 143, 92, 0.025);
  transition: color 260ms ease, transform 260ms ease;
}

.whatsapp-message::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background: var(--champagne-muted);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.whatsapp-message:hover,
.whatsapp-message:focus-visible {
  color: #181109;
  transform: translateY(-3px);
}

.whatsapp-message:hover::before,
.whatsapp-message:focus-visible::before {
  transform: scaleX(1);
}

.whatsapp-message > * {
  position: relative;
  z-index: 1;
}

.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(--champagne-muted);
  transition: color 260ms ease;
}

.whatsapp-message:hover strong,
.whatsapp-message:focus-visible strong {
  color: #181109;
}

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

.whatsapp-message:hover b,
.whatsapp-message:focus-visible b {
  color: #181109;
  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(37, 211, 102, 0.55);
  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(--whatsapp);
  transform: translateY(-3px);
}

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

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

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

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

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

html[lang="my"] .section-heading h2,
html[lang="my"] .connect h2 {
  font-size: clamp(52px, 6.2vw, 96px);
}

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

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

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

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

[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: flex-start;
    gap: 18px;
    padding: 88px 20px 30px;
    overflow-y: auto;
    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: 18px;
  }

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

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

  .language-menu {
    margin-top: 6px;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .language-menu summary {
    justify-content: center;
    min-width: 74px;
    font-family: var(--sans);
    font-size: 14px;
  }

  .language-options {
    position: static;
    width: min(350px, calc(100vw - 32px));
    margin-top: 10px;
    transform: none;
  }

  .site-nav .language-options a {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.35;
  }

  .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);
  }

  html[lang="my"] .section-heading h2,
  html[lang="my"] .connect h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .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-ozmov .venture-logo-wide img {
    width: 130px;
    max-height: 130px;
  }

  .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;
  }

  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}

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


/* Benchmark production layer — release 9.0 */
.site-nav a,
.header-cta,
.footer-bottom a,
.footer-legal a,
.other-links :is(a, button) {
  min-height: 24px;
}

.other-links button {
  appearance: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 25px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-align: left;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

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

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

.other-links button span {
  display: block;
}

.footer-bottom {
  grid-template-columns: minmax(220px, 1fr) auto auto;
  font-size: 10px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-legal a:hover {
  color: var(--ivory);
}

.legal-main {
  min-height: 100vh;
  padding: 170px 0 120px;
  background:
    radial-gradient(circle at 72% 18%, rgba(151, 88, 43, 0.13), transparent 34%),
    var(--ink);
}

.legal-shell {
  width: var(--page);
  max-width: 980px;
  margin: 0 auto;
}

.breadcrumb {
  width: var(--page);
  max-width: 980px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 10px;
  color: var(--champagne-muted);
  content: "/";
}

.breadcrumb a {
  color: var(--ivory-soft);
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--gold-bright);
}

.legal-header {
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.legal-kicker {
  margin: 0 0 24px;
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-header h1,
.error-content h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display-serif);
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.legal-intro {
  max-width: 760px;
  margin: 42px 0 0;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.35;
}

.legal-date {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 50px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.legal-section :is(p, li) {
  color: var(--ivory-soft);
  font-size: 16px;
  line-height: 1.85;
}

.legal-section p {
  margin: 0 0 18px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section a,
.error-content a:not(.button) {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 54px;
}

.legal-nav {
  display: flex;
  justify-self: end;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ivory-soft);
}

.error-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 140px 24px 90px;
  background:
    radial-gradient(circle at 72% 36%, rgba(151, 88, 43, 0.18), transparent 32%),
    var(--ink);
}

.error-content {
  width: min(920px, 100%);
  text-align: center;
}

.error-code {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.14em;
}

.error-content h1 {
  margin-inline: auto;
  font-size: clamp(58px, 10vw, 118px);
  line-height: 0.95;
}

.error-copy {
  max-width: 660px;
  margin: 38px auto 0;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.45;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.error-search {
  width: min(680px, 100%);
  margin: 42px auto 0;
  text-align: left;
}

.error-search > label {
  display: block;
  margin-bottom: 10px;
  color: var(--ivory-soft);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.error-search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 58px;
  border: 1px solid var(--line-strong);
  background: rgba(17, 17, 16, 0.84);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.error-search-control:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.error-search input {
  min-width: 0;
  padding: 16px 18px;
  border: 0;
  outline: 0;
  color: var(--ivory);
  background: transparent;
  font: inherit;
}

.error-search input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.error-search button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 14px 20px;
  border: 0;
  color: var(--ink);
  background: var(--gold);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

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

.error-search-hint,
.error-search-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.error-search-status {
  min-height: 1.6em;
  color: var(--gold-bright);
}

@media (max-width: 860px) {
  .other-links button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-legal {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .legal-nav {
    display: none;
  }

  .legal-main {
    padding-top: 130px;
  }

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

@media (max-width: 620px) {
  .footer-bottom {
    font-size: 10px;
  }

  .footer-legal {
    gap: 6px 14px;
  }

  .legal-header {
    padding-bottom: 48px;
  }

  .legal-section {
    padding: 40px 0;
  }

  .legal-actions,
  .error-actions {
    flex-direction: column;
  }

  .error-search-control {
    grid-template-columns: 1fr;
  }

  .error-search button {
    min-height: 52px;
  }

  .legal-actions .button,
  .error-actions .button,
  .error-actions .text-link {
    width: 100%;
    justify-content: center;
  }
}


/* Corporate benchmark presentation layer — release 11.0 */
.page-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold-bright), var(--champagne-muted));
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.profile-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
}

.profile-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--page);
  margin: 0 auto;
}

.profile-strip-item {
  min-height: 118px;
  padding: 28px clamp(18px, 2.4vw, 38px);
  border-right: 1px solid var(--line);
}

.profile-strip-item:first-child { padding-left: 0; }
.profile-strip-item:last-child { border-right: 0; }
.profile-strip-item span,
.audience-label,
.footer-column h2,
.footer-standards > span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.19em;
  line-height: 1.5;
  text-transform: uppercase;
}

.profile-strip-item strong {
  display: block;
  margin-top: 11px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.1;
}

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

.focus::before {
  position: absolute;
  top: 12%;
  right: -18%;
  width: 60vw;
  height: 60vw;
  pointer-events: none;
  border: 1px solid rgba(212, 175, 106, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 180px rgba(212, 175, 106, 0.035);
  content: "";
}

.focus > * { position: relative; z-index: 1; }
.focus-intro { max-width: 600px; }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.focus-card {
  position: relative;
  min-height: 300px;
  padding: clamp(34px, 4vw, 58px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.008);
  transition: background-color 220ms ease, transform 220ms ease;
}

.focus-card::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(212, 175, 106, 0.08);
  border-radius: 50%;
  content: "";
  transition: transform 320ms ease, border-color 320ms ease;
}

.focus-card:hover { background: rgba(212, 175, 106, 0.035); }
.focus-card:hover::after { border-color: rgba(212, 175, 106, 0.22); transform: scale(1.16); }
.focus-index { color: var(--gold); font-family: var(--serif); font-size: 13px; }
.focus-card h3 {
  max-width: 460px;
  margin: 62px 0 18px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}
.focus-card p {
  max-width: 500px;
  margin: 0;
  color: var(--ivory-soft);
  font-size: 15px;
  line-height: 1.8;
}

.audience-band {
  display: grid;
  grid-template-columns: minmax(140px, .28fr) minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 62px);
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.audience-band p {
  max-width: 760px;
  margin: 0;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}
.audience-link { white-space: nowrap; }

.other-links { grid-template-columns: repeat(5, 1fr); }
.other-links a:last-child { border-right: 0; }

.site-footer {
  width: 100%;
  padding: 92px 48px 26px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 10%, rgba(212, 175, 106, 0.07), transparent 28%),
    #050505;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(150px, .7fr));
  gap: clamp(40px, 6vw, 96px);
  width: var(--page);
  margin: 0 auto;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--line);
}
.footer-brand-block { max-width: 420px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display-serif);
  font-size: 24px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-brand img { width: 18px; height: 38px; }
.footer-brand-block p {
  margin: 30px 0 0;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-column h2 { margin: 4px 0 26px; font-family: var(--sans); font-weight: 400; }
.footer-column a {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  color: var(--ivory-soft);
  font-size: 12px;
  line-height: 1.4;
  transition: color 180ms ease, transform 180ms ease;
}
.footer-column a:hover { color: var(--gold-bright); transform: translateX(3px); }
.footer-direct a { overflow-wrap: anywhere; }

.footer-standards {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  width: var(--page);
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.footer-standards nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; }
.footer-standards a {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  transition: color 180ms ease;
}
.footer-standards a:hover { color: var(--ivory); }

.site-footer .footer-wordmark {
  width: var(--page);
  min-height: 0;
  margin: 0 auto;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.site-footer .footer-wordmark img { width: 100%; opacity: .32; filter: saturate(.78); }
.site-footer .footer-bottom {
  grid-template-columns: 1fr auto auto;
  width: var(--page);
  margin: 0 auto;
  padding: 24px 0 0;
}
.footer-note { color: var(--muted); letter-spacing: .08em; }

@media (max-width: 1120px) {
  .footer-top { grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(130px, .7fr)); gap: 42px; }
}

@media (max-width: 860px) {
  .profile-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-strip-item:first-child { padding-left: 20px; }
  .profile-strip-item:nth-child(2) { border-right: 0; }
  .profile-strip-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { min-height: 270px; }
  .audience-band { grid-template-columns: 1fr; gap: 18px; }
  .audience-link { justify-self: start; }
  .other-links { grid-template-columns: repeat(2, 1fr); }
  .other-links :is(a,button):nth-child(2n) { border-right: 0; }
  .other-links :is(a,button):nth-child(-n + 4) { border-bottom: 1px solid var(--line); }
  .other-links a:last-child { grid-column: 1 / -1; }
  .site-footer { padding: 74px 28px 24px; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px 36px; }
  .footer-brand-block { grid-column: 1 / -1; max-width: 560px; }
  .footer-direct { grid-column: 1 / -1; }
  .footer-standards { grid-template-columns: 1fr; }
  .footer-standards nav { justify-content: flex-start; }
  .site-footer .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-note { display: none; }
}

@media (max-width: 620px) {
  .profile-strip-item { min-height: 102px; padding: 22px 16px; }
  .profile-strip-item:first-child { padding-left: 16px; }
  .profile-strip-item strong { font-size: 19px; }
  .focus-card { min-height: 250px; padding: 30px 24px; }
  .focus-card h3 { margin-top: 42px; font-size: 34px; }
  .audience-band { padding: 30px 0; }
  .other-links { grid-template-columns: 1fr; }
  .other-links :is(a,button),
  .other-links :is(a,button):nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .other-links a:last-child { grid-column: auto; border-bottom: 0; }
  .site-footer { padding-right: 16px; padding-left: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 46px; padding-bottom: 58px; }
  .footer-brand-block,
  .footer-direct { grid-column: auto; }
  .footer-brand-block p { font-size: 22px; }
  .site-footer .footer-wordmark { display: none; }
  .site-footer .footer-bottom { grid-template-columns: 1fr auto; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-progress { display: none; }
  .focus-card:hover::after { transform: none; }
}
