:root {
  --bg: #070b12;
  --bg-2: #0b1018;
  --panel: #10151f;
  --panel-2: #161b24;
  --panel-3: #111827;
  --white: #ffffff;
  --text: #f7f8fb;
  --body: #d8d8d8;
  --muted: #9ca3af;
  --gold: #c9a24d;
  --gold-2: #d4af37;
  --soft-gold: #e6c875;
  --line: rgba(212, 175, 55, 0.25);
  --line-strong: rgba(230, 200, 117, 0.42);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --glow: 0 18px 48px rgba(201, 162, 77, 0.16);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --khmer-heading: "Noto Serif Khmer", "Noto Sans Khmer", serif;
  --khmer-body: "Noto Sans Khmer", "Inter", Arial, sans-serif;
  --chinese-body: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(201, 162, 77, 0.1), transparent 28%),
    linear-gradient(180deg, var(--bg), #06080d 42%, var(--bg));
  font-family: var(--sans);
  line-height: 1.65;
}

body.modal-lock {
  overflow: hidden;
}

html:lang(km) body {
  font-family: var(--khmer-body);
  line-height: 1.82;
}

html:lang(km) h1,
html:lang(km) h2,
html:lang(km) .plan-card h3,
html:lang(km) .hero-panel strong {
  font-family: var(--khmer-heading);
  line-height: 1.22;
}

html:lang(km) h3,
html:lang(km) .nav-links,
html:lang(km) .btn,
html:lang(km) .lang-btn,
html:lang(km) input,
html:lang(km) select,
html:lang(km) textarea {
  font-family: var(--khmer-body);
}

html:lang(km) .eyebrow,
html:lang(km) .hero-panel span {
  letter-spacing: 0.06em;
}

html:lang(km) .btn,
html:lang(km) .nav-links a {
  line-height: 1.45;
}

html:lang(zh) body,
html:lang(zh) button,
html:lang(zh) input,
html:lang(zh) select,
html:lang(zh) textarea {
  font-family: var(--chinese-body);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 18, 0.82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.84rem;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  color: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a,
.more-menu summary {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active,
.more-menu summary:hover {
  color: var(--soft-gold);
  border-color: var(--gold);
}

.more-menu {
  position: relative;
}

.more-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--body);
  cursor: pointer;
  list-style: none;
}

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

.more-menu summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.more-links {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  display: none;
  min-width: 210px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(7, 11, 18, 0.96);
  box-shadow: var(--shadow), var(--glow);
  padding: 8px;
}

.more-menu[open] .more-links {
  display: grid;
}

.more-links a {
  padding: 11px 12px;
  border: 0;
  border-radius: 6px;
}

.more-links a:hover,
.more-links a.active {
  background: rgba(201, 162, 77, 0.12);
  border-color: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--body);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 7px 9px;
}

.lang-btn:hover {
  color: var(--soft-gold);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-2), var(--soft-gold));
  color: #151008;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft-gold);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 13px 21px;
  color: var(--soft-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--soft-gold);
  box-shadow: var(--glow);
}

.btn-primary,
.btn-small {
  border: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--soft-gold));
  color: #151008;
}

.btn-ghost {
  background: rgba(7, 11, 18, 0.45);
  color: var(--soft-gold);
}

.btn-secondary {
  background: rgba(7, 11, 18, 0.58);
  color: var(--soft-gold);
  border-color: var(--line-strong);
}

.btn-small {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px 0 76px;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.94), rgba(7, 11, 18, 0.76) 46%, rgba(7, 11, 18, 0.2)),
    linear-gradient(0deg, rgba(5, 7, 11, 0.92), rgba(5, 7, 11, 0.08) 52%),
    radial-gradient(circle at 24% 32%, rgba(212, 175, 55, 0.16), transparent 34%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 360px;
  gap: 44px;
  align-items: end;
}

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

.eyebrow {
  margin: 0 0 13px;
  color: var(--soft-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--soft-gold);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  color: var(--white);
  font-size: clamp(4.2rem, 12vw, 8.8rem);
  letter-spacing: 0.01em;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.42);
}

.hero h2 {
  max-width: 760px;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
}

.hero p:not(.eyebrow),
.section-head p,
.copy p,
.highlight-card p,
.plan-card p,
.document-card p,
.location-card p,
.footer-brand p,
.copyright {
  color: var(--body);
}

.hero p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-price {
  display: inline-flex;
  margin-top: 18px !important;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(201, 162, 77, 0.14);
  color: var(--soft-gold) !important;
  padding: 10px 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-panel {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 27, 36, 0.82), rgba(10, 14, 22, 0.66));
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(18px);
  padding: 26px;
}

.hero-panel span {
  color: var(--soft-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 9px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.85rem;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.section {
  padding: 96px 0;
  scroll-margin-top: 92px;
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 162, 77, 0.07), transparent 28%),
    var(--bg);
}

.soft {
  background:
    linear-gradient(180deg, var(--bg-2), #080c13),
    var(--bg-2);
}

.overview,
.floor-plans,
.location,
.due-diligence {
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 175, 55, 0.08), transparent 34%),
    linear-gradient(180deg, #080c13, var(--bg));
}

.section-head {
  max-width: 850px;
  margin-bottom: 40px;
}

.section-head h2,
.copy h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.section-head p,
.copy p {
  margin-top: 18px;
  font-size: 1.02rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.highlight-card,
.plan-card,
.amenity-card,
.info-card,
.process-card,
.document-card,
.inquiry-form,
.location-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 27, 36, 0.98), rgba(16, 21, 31, 0.98));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.highlight-card:hover,
.plan-card:hover,
.amenity-card:hover,
.info-card:hover,
.process-card:hover,
.document-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow), var(--glow);
}

.highlight-card {
  min-height: 230px;
  padding: 24px;
}

.highlight-card span,
.amenity-card span,
.info-card span,
.process-card span,
.document-card span {
  color: var(--soft-gold);
  font-weight: 900;
}

.highlight-card h3,
.plan-card h3,
.amenity-card h3,
.info-card h3,
.process-card h3,
.document-card h3 {
  margin-top: 18px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.25;
}

.highlight-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.overview-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 42%),
    rgba(16, 21, 31, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.overview-cta p {
  margin: 0;
  max-width: 760px;
  color: var(--body);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 27, 36, 0.98), rgba(7, 11, 18, 0.98));
  box-shadow: var(--shadow), var(--glow);
  aspect-ratio: 16 / 9;
}

.video-card {
  display: grid;
  place-items: center;
  color: var(--white);
}

.video-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.24), rgba(7, 11, 18, 0.82));
}

.play-icon {
  position: absolute;
  width: 78px;
  height: 78px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(230, 200, 117, 0.96));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36), var(--glow);
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-42%, -50%);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #151008;
}

.video-button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(7, 11, 18, 0.72);
  color: var(--soft-gold);
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.video-card:hover {
  border-color: var(--soft-gold);
  box-shadow: var(--shadow), 0 18px 54px rgba(201, 162, 77, 0.22);
}

.video-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.08);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-card.loaded {
  background: #000;
}

.video-fallback {
  margin: 16px 0 0;
  text-align: center;
}

.video-fallback a {
  color: var(--soft-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-fallback a:hover {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.split.reverse .copy {
  order: 2;
}

.copy .btn {
  margin-top: 28px;
}

.price-note,
.placeholder-note {
  display: inline-flex;
  margin-top: 20px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 77, 0.12);
  color: var(--soft-gold) !important;
  padding: 12px 15px;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  grid-template-rows: repeat(3, minmax(138px, 1fr));
  gap: 18px;
}

.image-pair img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  grid-row: span 3;
  min-height: 520px;
}

.image-pair img:nth-child(2) {
  min-height: 168px;
}

.image-pair img:nth-child(3),
.image-pair img:nth-child(4) {
  min-height: 158px;
}

.nested-block {
  margin-top: 46px;
}

.section-subhead {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-subhead h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.section-subhead p,
.info-card p,
.process-card p,
.section-note,
.contact-details {
  color: var(--body);
}

.section-subhead p {
  margin-top: 10px;
}

.card-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four,
.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.process-card {
  padding: 24px;
}

.payment-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 27, 36, 0.98), rgba(10, 14, 22, 0.98));
  box-shadow: var(--shadow), var(--glow);
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
}

.payment-table th,
.payment-table td {
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 19px 22px;
  text-align: left;
  vertical-align: middle;
}

.payment-table th {
  background: rgba(201, 162, 77, 0.12);
  color: var(--soft-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-table tr:last-child td {
  border-bottom: 0;
}

.payment-table td {
  color: var(--body);
}

.payment-table td:first-child {
  width: 36%;
}

.payment-table td:first-child span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.12);
  color: var(--soft-gold);
  font-size: 0.74rem;
  font-weight: 900;
}

.payment-table strong {
  color: var(--white);
  font-weight: 900;
}

.payment-table td:last-child {
  color: var(--soft-gold);
  font-weight: 900;
  white-space: nowrap;
}

.info-card .btn {
  width: 100%;
  margin-top: 20px;
  font-size: 0.7rem;
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  height: 430px;
  object-fit: cover;
  border-bottom: 1px solid var(--line-strong);
}

.feature-card div {
  padding: 24px;
}

.feature-card strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.amenity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
}

.amenity-feature {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 27, 36, 0.98), rgba(10, 14, 22, 0.98));
  box-shadow: var(--shadow), var(--glow);
}

.amenity-feature img,
.location-card img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--glow);
}

.amenity-feature img {
  min-height: 420px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  box-shadow: none;
}

.amenity-feature div {
  padding: 24px;
}

.amenity-feature span {
  color: var(--soft-gold);
  font-weight: 900;
}

.amenity-feature strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.1;
}

.amenity-feature p {
  margin-top: 10px;
  color: var(--body);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.amenity-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.amenity-card h3 {
  margin-top: 0;
  font-size: 0.94rem;
}

.amenity-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.12);
  font-size: 0.76rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plan-card {
  width: 100%;
  border: 1px solid var(--line);
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  text-align: left;
  padding: 28px;
  overflow: hidden;
}

.plan-preview::after {
  content: "Click to view";
  display: inline-flex;
  margin-top: 18px;
  color: var(--soft-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card img {
  width: calc(100% + 56px);
  height: 180px;
  margin: -28px -28px 24px;
  object-fit: contain;
  object-position: top center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(7, 11, 18, 0.7));
  padding: 12px;
  filter: saturate(0.9) contrast(1.05);
}

.plan-card h3 {
  margin-top: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.plan-card p {
  color: var(--muted);
  margin-top: auto;
}

.plan-modal {
  position: fixed;
  z-index: 95;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 5, 9, 0.92);
  padding: 26px;
}

.plan-modal.open {
  display: flex;
}

.plan-modal-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 21, 31, 0.98), rgba(7, 11, 18, 0.98));
  box-shadow: var(--shadow), 0 22px 70px rgba(201, 162, 77, 0.15);
  padding: 34px;
}

.plan-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(7, 11, 18, 0.68);
  color: var(--soft-gold);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.plan-modal-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.plan-modal-head h3 {
  margin: 8px 54px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.plan-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.plan-layout-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-layout-card:hover {
  transform: translateY(-3px);
  border-color: var(--soft-gold);
  box-shadow: 0 18px 45px rgba(201, 162, 77, 0.16);
}

.plan-layout-card img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: top center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(7, 11, 18, 0.84));
  border-bottom: 1px solid var(--line);
  padding: 10px;
}

.plan-layout-card span {
  display: block;
  color: var(--soft-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  padding: 14px 16px 16px;
  text-transform: uppercase;
}

.company-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 5, 9, 0.92);
  padding: 26px;
}

.company-modal.open {
  display: flex;
}

.company-modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(16, 21, 31, 0.99), rgba(7, 11, 18, 0.99));
  box-shadow: var(--shadow), 0 22px 70px rgba(201, 162, 77, 0.15);
  padding: 34px;
}

.company-modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(7, 11, 18, 0.9);
  color: var(--soft-gold);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.company-modal-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.company-modal-head h3 {
  margin: 8px 54px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 0.98;
}

.company-modal-head p:last-child {
  margin-top: 12px;
  color: var(--soft-gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-accordion {
  display: grid;
  gap: 12px;
  clear: both;
}

.company-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.company-panel-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 18px 20px;
  font: inherit;
  font-weight: 850;
  text-align: left;
}

.company-panel-trigger span:last-child {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--soft-gold);
}

.company-panel.open .company-panel-trigger {
  color: var(--soft-gold);
}

.company-panel.open .company-panel-trigger span:last-child {
  transform: rotate(45deg);
}

.company-panel-body {
  display: none;
  padding: 0 20px 22px;
  color: var(--body);
}

.company-panel.open .company-panel-body {
  display: block;
}

.company-panel-body p,
.company-panel-body ul {
  margin: 12px 0 0;
}

.company-panel-body ul {
  padding-left: 20px;
}

.company-panel-body li {
  margin: 7px 0;
}

.company-columns {
  columns: 2;
  column-gap: 34px;
}

.company-note {
  color: var(--soft-gold);
  font-size: 0.94rem;
}

.company-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.company-table-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.company-table-wrap th,
.company-table-wrap td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  text-align: left;
}

.company-table-wrap th {
  color: var(--soft-gold);
  background: rgba(212, 175, 55, 0.08);
}

.company-table-wrap tr:last-child td {
  border-bottom: 0;
}

.company-panel a {
  color: var(--soft-gold);
}

.plan-request {
  grid-column: 1 / -1;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(201, 162, 77, 0.11), rgba(7, 11, 18, 0.88));
  padding: clamp(24px, 5vw, 44px);
}

.plan-request h4 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1;
}

.plan-request p {
  max-width: 680px;
  color: var(--body);
  margin: 14px 0 22px;
}

.center-action {
  margin-top: 30px;
  text-align: center;
}

.section-note {
  margin-top: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 77, 0.1);
  padding: 14px 16px;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.document-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  color: inherit;
  cursor: pointer;
  text-align: left;
  padding: 24px;
}

.document-icon {
  position: relative;
  width: 54px;
  height: 66px;
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(230, 200, 117, 0.16), rgba(201, 162, 77, 0.06));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.document-icon::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  border-top: 16px solid rgba(230, 200, 117, 0.35);
  border-left: 16px solid transparent;
}

.document-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  top: 26px;
  height: 1px;
  background: var(--line-strong);
  box-shadow: 0 9px 0 var(--line), 0 18px 0 var(--line);
}

.document-card span {
  display: inline-flex;
  margin-top: 0;
}

.document-card h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.document-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.document-card strong {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(201, 162, 77, 0.08);
  color: var(--soft-gold);
  padding: 10px 12px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 77, 0.14));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover {
  border-color: var(--line-strong);
  box-shadow: var(--glow);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.location-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-weight: 800;
}

.location-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.42);
}

.location-card {
  overflow: hidden;
}

.location-card img {
  min-height: 360px;
  border-radius: 0;
  box-shadow: none;
}

.location-card div {
  padding: 24px;
}

.location-card strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-details strong {
  color: var(--soft-gold);
}

.contact-details a {
  color: var(--white);
}

.contact-details a:hover {
  color: var(--soft-gold);
}

.inquiry-form {
  display: grid;
  gap: 15px;
  padding: 28px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--soft-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(156, 163, 175, 0.32);
  border-radius: var(--radius);
  background: rgba(7, 11, 18, 0.72);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-2);
  background: rgba(7, 11, 18, 0.94);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

option {
  background: var(--panel);
  color: var(--white);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-output {
  display: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(201, 162, 77, 0.1);
  color: var(--body);
  padding: 14px;
  white-space: pre-wrap;
}

.form-output.show {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #05070b;
  color: var(--white);
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
  padding: 4px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand p,
.copyright {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--soft-gold);
  font-weight: 800;
}

.footer-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
}

.footer-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

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

.copyright {
  grid-column: 1 / -1;
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 5, 9, 0.94);
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(7, 11, 18, 0.58);
  color: var(--soft-gold);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 8px;
    font-size: 0.68rem;
  }

  .btn-small {
    display: none;
  }

  .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.four,
  .process-grid,
  .plans-grid,
  .document-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 11, 18, 0.98);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .more-menu {
    width: 100%;
  }

  .more-menu summary {
    justify-content: space-between;
    padding: 12px;
  }

  .more-links {
    position: static;
    min-width: 0;
    margin: 0 6px 8px;
    border-color: rgba(212, 175, 55, 0.18);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
  }

  .nav-actions {
    margin-left: 0;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .amenity-layout,
  .plans-grid,
  .card-grid.three,
  .card-grid.four,
  .process-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .copy {
    order: 0;
  }

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

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

  .overview-cta {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .amenity-feature img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    background: rgba(7, 11, 18, 0.96);
  }

  .brand span {
    font-size: 0.88rem;
  }

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

  .language-switch {
    transform: scale(0.92);
    transform-origin: right center;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 48px;
  }

  .hero-inner,
  .hero-actions,
  .contact-actions {
    gap: 18px;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.3rem);
  }

  .hero h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section {
    padding: 70px 0;
  }

  .section-head h2,
  .copy h2 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .payment-table,
  .payment-table thead,
  .payment-table tbody,
  .payment-table tr,
  .payment-table th,
  .payment-table td {
    display: block;
  }

  .payment-table thead {
    display: none;
  }

  .payment-table tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    padding: 14px 0;
  }

  .payment-table tr:last-child {
    border-bottom: 0;
  }

  .payment-table td,
  .payment-table td:first-child {
    width: 100%;
    border-bottom: 0;
    padding: 7px 18px;
  }

  .payment-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    color: var(--soft-gold);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .payment-table td:first-child span {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }

  .payment-table td:last-child {
    white-space: normal;
  }

  .highlight-grid,
  .amenity-grid,
  .gallery-grid,
  .card-grid.three,
  .card-grid.four,
  .process-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .image-pair {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .image-pair img,
  .image-pair img:nth-child(2),
  .image-pair img:nth-child(3),
  .image-pair img:nth-child(4),
  .amenity-feature img {
    height: auto;
    min-height: 0;
    margin-top: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .image-pair img:first-child,
  .amenity-feature img:first-child {
    grid-row: auto;
    min-height: 0;
  }

  .document-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .plan-modal {
    align-items: flex-start;
    padding: 14px;
  }

  .company-modal {
    align-items: flex-start;
    padding: 14px;
  }

  .plan-modal-panel {
    max-height: calc(100vh - 28px);
    padding: 24px 16px 18px;
  }

  .company-modal-panel {
    max-height: calc(100vh - 28px);
    padding: 24px 16px 18px;
  }

  .plan-modal-head h3 {
    margin-right: 46px;
  }

  .company-modal-head h3 {
    margin-right: 46px;
  }

  .plan-modal-grid {
    grid-template-columns: 1fr;
  }

  .plan-layout-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .company-columns {
    columns: 1;
  }

  .btn {
    width: 100%;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}
