:root {
  --navy: #071a2d;
  --navy-soft: #0f2a43;
  --ink: #172130;
  --muted: #657080;
  --gold: #b4873b;
  --gold-soft: #d9c294;
  --paper: #f8f6f0;
  --cream: #f1ece2;
  --mist: #e9f0ef;
  --white: #ffffff;
  --green: #526b63;
  --brick: #8d5e50;
  --line: rgba(7, 26, 45, 0.12);
  --shadow: 0 22px 70px rgba(7, 26, 45, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(7, 26, 45, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 320px;
}

.brand img {
  width: 70px;
  height: auto;
  max-height: 88px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  font-size: 11.5px;
  color: currentColor;
  opacity: 0.72;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  opacity: 0.84;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--gold-soft);
  opacity: 1;
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-open .desktop-nav a:hover {
  color: var(--gold);
}

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

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.86;
}

.mobile-language-left {
  display: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 11px;
}

.menu-button span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 18px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

@media (min-width: 1061px) {
  .desktop-nav {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(7, 26, 45, 0.84) 0%, rgba(7, 26, 45, 0.58) 47%, rgba(7, 26, 45, 0.12) 100%),
    url("assets/california/dos-lagos-pool-courtyard.jpeg") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18vh;
  background: linear-gradient(0deg, var(--paper) 0%, rgba(248, 246, 240, 0) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 124px 0 80px;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}

.section-kicker {
  color: var(--gold);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.zh-hero-title span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.46;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(180, 135, 59, 0.35);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

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

.hero-facts div {
  border-left: 2px solid var(--gold);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-facts dd {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  width: 30px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
  animation: cue 1.8s infinite;
}

@keyframes cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

.section {
  padding: 98px 0;
}

.section-tight {
  padding: 82px 0;
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

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

.section-head {
  max-width: 920px;
  margin-bottom: 44px;
}

.section-head-narrow {
  max-width: 760px;
}

.section-head h2,
.future-panel h2,
.contact-grid h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--navy);
}

.section-navy .section-head h2,
.section-navy .section-head p,
.contact-section h2 {
  color: var(--white);
}

.section-head p,
.split-panel p,
.future-panel p,
.contact-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-navy .section-head p,
.section-navy .method-grid p {
  color: rgba(255, 255, 255, 0.76);
}

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

.statement,
.team-card,
.experience-card,
.method-grid article,
.future-grid article,
.fact-table,
.source-basis,
.location-panel,
.project-hero-card,
.split-panel,
.future-panel,
address {
  border-radius: var(--radius);
  min-width: 0;
}

.statement {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 45px rgba(7, 26, 45, 0.06);
}

.statement h3,
.team-card h3,
.experience-card h3,
.project-hero-card h3,
.fact-table h3,
.method-grid h3,
.future-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.statement p,
.team-card p,
.experience-card p,
.experience-card span,
.project-hero-card p,
.fact-table dd,
.method-grid p,
.future-grid p {
  color: var(--muted);
}

.split-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(82, 107, 99, 0.16), rgba(180, 135, 59, 0.13)),
    var(--white);
  border: 1px solid var(--line);
}

.split-panel h3 {
  margin: 0;
  font-size: 27px;
  color: var(--navy);
  line-height: 1.15;
}

.split-panel p {
  margin: 0;
}

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

.team-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 45px rgba(7, 26, 45, 0.06);
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--brick));
}

.team-card .role {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card p:not(.role) {
  margin: 18px 0 0;
  font-size: 15px;
}

.team-card span {
  display: block;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 800;
}

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

.experience-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 26, 45, 0.1);
  box-shadow: 0 18px 55px rgba(7, 26, 45, 0.08);
}

.experience-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.experience-card div {
  padding: 22px;
}

.experience-card p {
  margin: 7px 0 12px;
  color: var(--gold);
  font-weight: 700;
}

.experience-card span {
  display: block;
  font-size: 14px;
}

.history-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.legacy-document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legacy-document,
.document-card,
.showcase-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  cursor: zoom-in;
  box-shadow: 0 18px 55px rgba(7, 26, 45, 0.08);
}

.legacy-document img {
  width: 100%;
  height: 620px;
  object-fit: contain;
  padding: 18px;
  background: var(--white);
}

.legacy-document span,
.document-card span,
.showcase-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.project-hero-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.project-hero-card > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.project-hero-card > div {
  padding: 46px;
  align-self: center;
}

.project-hero-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.project-hero-card p {
  font-size: 16px;
}

.location-panel {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 22px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(7, 26, 45, 0.04), rgba(180, 135, 59, 0.12)), var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(7, 26, 45, 0.08);
}

.location-copy h3,
.source-basis h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.location-copy > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.location-points article {
  padding: 18px;
  border: 1px solid rgba(7, 26, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.location-points h4 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
}

.location-points p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.location-map {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 430px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 26, 45, 0.12);
  cursor: zoom-in;
}

.location-map img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  padding: 10px;
  background: var(--white);
}

.location-map span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.stat-row span {
  padding: 16px 12px;
  background: var(--mist);
  color: var(--navy);
  border-radius: var(--radius);
  font-size: 12px;
  text-align: center;
  font-weight: 800;
}

.stat-row strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  color: var(--gold);
}

.facts-and-images {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 22px;
}

.fact-table {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.source-basis {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.source-basis p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.source-basis ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.source-basis li + li {
  margin-top: 8px;
}

.source-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 20px;
  padding: 0 16px;
  border: 1px solid rgba(180, 135, 59, 0.45);
  border-radius: 999px;
  background: rgba(180, 135, 59, 0.09);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  cursor: zoom-in;
}

.fact-table dl {
  margin: 22px 0 0;
}

.fact-table div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.fact-table div:last-child {
  border-bottom: 0;
}

.fact-table dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.fact-table dd {
  margin: 0;
  font-size: 14px;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.image-button,
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  cursor: zoom-in;
  box-shadow: 0 18px 50px rgba(7, 26, 45, 0.1);
}

.image-button img {
  width: 100%;
  height: 100%;
  min-height: 305px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.image-pair-contain .image-button img,
.contain-image img {
  object-fit: contain;
  padding: 12px;
  background: var(--white);
}

.image-button:hover img,
.gallery-item:hover img {
  transform: scale(1.035);
}

.contain-image:hover img,
.document-card:hover img,
.legacy-document:hover img {
  transform: none;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.deal-grid article {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 45px rgba(7, 26, 45, 0.06);
}

.deal-grid h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.2;
}

.deal-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.mixed-use-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 22px;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(217, 194, 148, 0.17), rgba(233, 240, 239, 0.78));
  border: 1px solid var(--line);
}

.mixed-use-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  color: var(--navy);
}

.mixed-use-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.product-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.california-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.showcase-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.showcase-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.showcase-card.large img {
  height: 546px;
}

.showcase-card:hover img {
  transform: scale(1.025);
}

.document-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.document-card img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  padding: 10px;
  background: var(--white);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.gallery-item {
  min-height: 210px;
}

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

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.method-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.method-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.section-navy .method-grid h3 {
  color: var(--white);
}

.method-grid p {
  margin: 14px 0 0;
  font-size: 14px;
}

.future-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 36px;
  padding: 44px;
  background: linear-gradient(135deg, rgba(217, 194, 148, 0.2), rgba(233, 240, 239, 0.8));
  border: 1px solid var(--line);
}

.future-grid {
  display: grid;
  gap: 14px;
}

.future-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 26, 45, 0.09);
}

.future-grid p {
  margin: 10px 0 0;
  font-size: 15px;
}

.contact-section {
  background:
    linear-gradient(105deg, rgba(7, 26, 45, 0.92), rgba(15, 42, 67, 0.86)),
    url("assets/california/dos-lagos-lakefront.jpeg") center / cover no-repeat;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.76);
}

address {
  display: grid;
  gap: 10px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-style: normal;
  backdrop-filter: blur(10px);
}

address strong {
  font-size: 22px;
}

address span {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  background: #061322;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(3, 10, 18, 0.86);
}

.lightbox.is-visible {
  display: flex;
}

.lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: none !important;
  }

  .mobile-nav.is-visible {
    display: block;
  }

  .hero-facts,
  .overview-grid,
  .history-overview,
  .team-grid,
  .experience-grid,
  .facts-and-images,
  .location-panel,
  .contact-grid,
  .future-panel,
  .mixed-use-panel {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .experience-grid,
  .legacy-document-grid,
  .deal-grid,
  .document-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .showcase-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .container,
  .mobile-nav {
    width: min(calc(100% - 24px), 1180px);
  }

  .nav-shell {
    min-height: 78px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 50px;
    height: auto;
    max-height: 64px;
  }

  .brand strong {
    max-width: 196px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
  }

  .brand small {
    display: none;
  }

  .mobile-language-left {
    position: fixed;
    top: 47px;
    left: 66px;
    z-index: 131;
    display: inline-flex;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 800;
  }

  .site-header.is-scrolled .mobile-language-left,
  .site-header.is-open .mobile-language-left {
    color: var(--navy);
  }

  .language-link {
    display: none;
  }

  .nav-actions {
    gap: 6px;
    flex-shrink: 0;
  }

  .menu-button {
    display: none !important;
  }

  .hero {
    min-height: min(92vh, 820px);
  background:
    linear-gradient(110deg, rgba(7, 26, 45, 0.88), rgba(7, 26, 45, 0.62)),
      url("assets/california/dos-lagos-pool-courtyard.jpeg") center / cover no-repeat;
  }

  .hero-content {
    padding-top: 108px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-facts,
  .team-grid,
  .experience-grid,
  .project-hero-card,
  .location-panel,
  .location-points,
  .image-pair,
  .project-gallery,
  .method-grid,
  .history-overview,
  .legacy-document-grid,
  .deal-grid,
  .mixed-use-panel,
  .product-images,
  .california-showcase,
  .document-gallery {
    grid-template-columns: 1fr;
  }

  .project-hero-card > img {
    min-height: 290px;
  }

  .section-head p,
  .team-card p,
  .team-card span,
  .statement p,
  .experience-card p,
  .experience-card span,
  .project-hero-card p,
  .location-copy p,
  .location-points p,
  .source-basis p,
  .source-basis li,
  .deal-grid p,
  .mixed-use-panel p,
  .method-grid p,
  .future-grid p {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-break: anywhere;
  }

  .team-card {
    min-height: auto;
    overflow: visible;
  }

  .location-panel {
    padding: 20px;
  }

  .location-map,
  .location-map img {
    min-height: 260px;
  }

  .project-hero-card > div,
  .future-panel {
    padding: 28px;
  }

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

  .fact-table div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .legacy-document img {
    height: 420px;
    padding: 10px;
  }

  .showcase-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-card img,
  .showcase-card.large img,
  .document-card img {
    height: 260px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 72px 0;
  }

  .statement,
  .team-card,
  .fact-table {
    padding: 24px;
  }
}
