:root {
  --navy: #071629;
  --navy-2: #0b2039;
  --blue: #176fe8;
  --blue-dark: #0f5dcc;
  --red: #d83a32;
  --brick: #9c483f;
  --paper: #f4f5f3;
  --white: #ffffff;
  --ink: #0c1b2d;
  --muted: #697586;
  --line: #dbe0e5;
  --shadow: 0 24px 70px rgba(9, 24, 43, 0.14);
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.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;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--navy);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(12, 27, 45, 0.08);
  box-shadow: 0 7px 30px rgba(5, 18, 33, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 60px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: 92px;
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-location {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
}

.header-location svg {
  width: 20px;
  height: 20px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 820px;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.015);
  animation: heroZoom 14s ease-out both;
}

@keyframes heroZoom {
  to { transform: scale(1.075); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 33, 0.94) 0%, rgba(6, 23, 43, 0.75) 43%, rgba(5, 17, 33, 0.13) 78%),
    linear-gradient(0deg, rgba(4, 15, 28, 0.46) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 100px;
  align-items: end;
  padding-top: 100px;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-dark);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #8fc0ff;
}

.hero h1,
.intro h2,
.section-heading h2,
.building h2,
.contact h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  color: inherit;
  font-style: normal;
  font-weight: 500;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(62px, 7.2vw, 108px);
}

.hero h1 em {
  color: #8ec0ff;
}

.hero-lead {
  max-width: 630px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions,
.building-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(7, 22, 41, 0.2);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-side {
  padding: 25px 0 6px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-side-label {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-side li {
  padding: 13px 0;
}

.hero-side strong,
.hero-side span {
  display: block;
}

.hero-side strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.hero-side span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 110px;
  align-items: end;
}

.intro h2,
.section-heading h2,
.building h2,
.contact h2 {
  font-size: clamp(44px, 5vw, 74px);
}

.intro h2 em,
.section-heading h2 em {
  color: var(--blue);
}

.intro-copy {
  padding-bottom: 3px;
  color: var(--muted);
}

.intro-copy p {
  max-width: 570px;
  margin: 0;
}

.intro-copy p + p {
  margin-top: 20px;
}

.intro-copy .intro-lead {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.35fr;
  margin-top: 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 158px;
  padding: 32px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.stat strong {
  font-family: "Manrope", sans-serif;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.stat-address {
  border-right: 0;
  background: var(--navy);
  color: var(--white);
}

.stat-address > span {
  color: rgba(255, 255, 255, 0.66);
}

.stat-address b {
  color: var(--white);
  font-size: 15px;
}

.stat-pin {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  background: var(--blue);
}

.stat-pin svg {
  width: 22px;
}

.directory {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 100px;
  align-items: end;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--muted);
}

.section-heading-compact {
  grid-template-columns: 1fr;
}

.directory-tools {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.05fr 1.7fr;
  gap: 28px;
  align-items: center;
}

.search-box {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid #aab3bd;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 5px 20px rgba(16, 62, 114, 0.06);
}

.search-box svg {
  width: 21px;
  color: var(--blue);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.search-box input::placeholder {
  color: #89929f;
}

.filter-list {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-list::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid #ccd3da;
  border-radius: 100px;
  color: #566272;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.directory-meta {
  margin: 34px 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.directory-meta p {
  margin: 0;
}

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

.company-card {
  min-height: 300px;
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.company-card > .company-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.16;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.company-card > :not(.company-card-photo) {
  position: relative;
  z-index: 1;
}

.company-card:hover > .company-card-photo {
  opacity: 0.24;
  transform: scale(1.035);
}

.company-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--accent, var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.company-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.company-card:hover::after {
  transform: scaleX(1);
}

.company-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.company-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--accent, var(--blue));
  background: color-mix(in srgb, var(--accent, var(--blue)) 10%, white);
  transition: background 0.3s ease;
}

.company-card:hover .company-icon {
  background: rgba(255, 255, 255, 0.1);
}

.company-icon svg {
  width: 25px;
  height: 25px;
}

.company-category {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.company-card:hover .company-category {
  color: rgba(255, 255, 255, 0.54);
}

.company-card h3 {
  margin: 37px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.company-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.company-card:hover > p {
  color: rgba(255, 255, 255, 0.66);
}

.company-card-action {
  width: 100%;
  margin-top: auto;
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}

.company-card-action svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.company-card:hover .company-card-action {
  color: var(--white);
}

.company-card-action:hover svg {
  transform: translateX(4px);
}

.empty-state {
  padding: 80px 20px;
  text-align: center;
  background: var(--white);
}

.empty-state span {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.empty-state p {
  color: var(--muted);
}

.text-button {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.building {
  position: relative;
  padding: 132px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.building-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 34, 0.97) 0%, rgba(6, 25, 47, 0.9) 52%, rgba(8, 29, 52, 0.72)),
    url("assets/architectural-texture.png") center / cover no-repeat;
}

.building-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 108px;
  align-items: center;
}

.building h2 em {
  color: #8fc0ff;
}

.building-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.building-principles {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.building-principles article {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.building-principles article > span {
  padding-top: 4px;
  color: #8fc0ff;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.building-principles h3 {
  margin: 0 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.building-principles article p {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.building-note {
  margin-top: 24px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

.building-note svg {
  width: 22px;
  flex: 0 0 auto;
  color: var(--blue);
}

.building-note p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.value {
  background: var(--white);
}

.value-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.value-grid article {
  position: relative;
  padding: 54px 45px 20px 0;
  border-right: 1px solid var(--line);
}

.value-grid article + article {
  padding-left: 45px;
}

.value-grid article:last-child {
  border-right: 0;
}

.value-grid svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.value-index {
  position: absolute;
  right: 24px;
  top: 55px;
  color: #b5bdc6;
  font-size: 11px;
  font-weight: 800;
}

.value-grid h3 {
  margin: 30px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.value-grid p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  min-height: 630px;
  padding: 120px 0;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.contact-image,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-image {
  background: url("assets/sg-group-building.jpg") center 77% / cover no-repeat;
}

.contact-overlay {
  background:
    linear-gradient(90deg, rgba(4, 17, 33, 0.94), rgba(4, 17, 33, 0.68) 56%, rgba(4, 17, 33, 0.32)),
    linear-gradient(0deg, rgba(4, 17, 33, 0.7), transparent 55%);
}

.contact-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 90px;
  align-items: end;
}

.contact h2 em {
  color: #8fc0ff;
}

.contact-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(6, 23, 43, 0.72);
  backdrop-filter: blur(14px);
}

.contact-card > p {
  margin: 0 0 12px;
  color: #8fc0ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  line-height: 1.45;
}

.copy-address {
  min-height: 54px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.copy-address svg {
  width: 18px;
}

.site-footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.65);
  background: #04101f;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.brand-footer {
  justify-self: start;
}

.brand-footer img {
  height: 84px;
}

.footer-top > p {
  margin: 0;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.footer-top nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  font-size: 12px;
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.company-dialog {
  width: min(1040px, calc(100vw - 48px));
  max-height: min(760px, calc(100svh - 32px));
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.42);
}

.company-dialog::backdrop {
  background: rgba(2, 11, 22, 0.75);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: sticky;
  right: 18px;
  top: 18px;
  z-index: 5;
  margin: 18px 18px -60px auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.dialog-close svg {
  width: 20px;
}

.dialog-body {
  padding: 76px 48px 40px;
}

.dialog-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--dialog-accent, var(--blue));
  background: color-mix(in srgb, var(--dialog-accent, var(--blue)) 10%, white);
}

.dialog-icon svg {
  width: 29px;
}

.dialog-kicker {
  margin: 0 0 24px;
  color: var(--dialog-accent, var(--blue));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-body h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.dialog-description {
  margin: 20px 0 0;
  color: var(--muted);
}

.dialog-details {
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-details p {
  margin: 5px 0;
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.dialog-details strong {
  min-width: 96px;
  color: var(--ink);
}

.dialog-body .button {
  width: 100%;
}

.company-card { cursor: pointer; }
.company-card:focus-within { outline: 2px solid var(--blue); outline-offset: -2px; }
.tenant-layout { display: grid; grid-template-columns: 44% 56%; min-height: 580px; }
.tenant-visual { position: relative; background: var(--navy); min-width: 0; }
.tenant-photo { width: 100%; height: 580px; object-fit: contain; background: #142234; }
.tenant-photo-caption { padding: 18px 24px; color: #fff; font-size: 12px; letter-spacing: .02em; }
.tenant-photo-tabs { display: flex; gap: 8px; padding: 0 24px 24px; }
.tenant-photo-tabs button { padding: 9px 12px; background: transparent; color: white; border: 1px solid #657386; cursor: pointer; font-size: 12px; }
.tenant-photo-tabs button[aria-pressed="true"] { background: white; color: var(--navy); border-color: white; }
.tenant-subtitle { margin: 12px 0 28px; font-size: 18px; color: var(--ink); }
.dialog-kicker span { color: var(--muted); margin-left: 8px; }
.dialog-description { font-size: 15px; line-height: 1.8; }
.dialog-details p { margin: 12px 0; }
.dialog-details a { color: var(--blue); font-weight: 700; }
.tenant-back { display: block; margin: 24px auto 0; border: 0; background: transparent; color: var(--muted); font-size: 13px; cursor: pointer; }
.tenant-brand-art { min-height: 580px; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #8fc0ff; background: linear-gradient(145deg, #102c4d, #071629); }
.tenant-brand-art svg { width: 100px; height: 100px; margin-bottom: 48px; stroke-width: 1; }
.tenant-brand-art span { color: white; font: 700 22px "Manrope", sans-serif; letter-spacing: .12em; }
.tenant-brand-art p { font-size: 12px; }
@media (max-width: 760px) {
  .company-dialog { width: calc(100vw - 24px); max-height: calc(100svh - 24px); }
  .tenant-layout { grid-template-columns: 1fr; min-height: 0; }
  .tenant-photo { height: 310px; }
  .tenant-brand-art { min-height: 200px; }
  .tenant-brand-art svg { width: 56px; height: 56px; margin-bottom: 20px; }
  .tenant-photo-caption { padding: 12px 20px; }
  .tenant-layout .dialog-body { padding: 32px 24px; }
}

.entrance-gallery {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.entrance-gallery h3 { margin: 0; font-family: "Manrope", sans-serif; font-size: 20px; }
.entrance-gallery h3 { margin-bottom: 20px; }
.entrance-gallery figure { margin: 0 0 24px; }
.entrance-gallery img { width: 100%; height: auto; max-height: 460px; object-fit: contain; background: var(--paper); }
.entrance-gallery figcaption { margin-top: 10px; font-size: 12px; color: var(--muted); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 300;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1050px) {
  .desktop-nav {
    margin-left: 52px;
    gap: 26px;
  }

  .header-location span {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-side {
    display: none;
  }

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

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

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

  .directory-tools {
    grid-template-columns: 1fr;
  }

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

  .building-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 50px;
  }

  .contact-content {
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 32px, 600px);
  }

  .section {
    padding: 82px 0;
  }

  .desktop-nav,
  .header-location {
    display: none;
  }

  .header-inner {
    height: 68px;
  }

  .brand img {
    height: 52px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    color: inherit;
    background: transparent;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 68px 0 0;
    padding: 45px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: var(--white);
    background: var(--navy);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    font-weight: 700;
  }

  .hero {
    min-height: 760px;
  }

  .hero-photo {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 17, 33, 0.93), rgba(4, 17, 33, 0.46)),
      linear-gradient(0deg, rgba(4, 15, 28, 0.68), transparent 55%);
  }

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

  .hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 13.8vw, 58px);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .building-grid,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro h2,
  .section-heading h2,
  .building h2,
  .contact h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .stat,
  .stat:nth-child(2) {
    min-height: 125px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .directory-tools {
    margin-top: 42px;
  }

  .filter-list {
    width: calc(100vw - 16px);
    margin-right: -16px;
    padding-right: 16px;
  }

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

  .company-card {
    min-height: 270px;
  }

  .building {
    padding: 90px 0;
  }

  .building-principles article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .value-grid article,
  .value-grid article + article {
    padding: 36px 20px 36px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact {
    min-height: 760px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-address {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .brand-footer img {
    height: 78px;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-top nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .dialog-body {
    padding: 66px 26px 34px;
  }

  .dialog-body h2 {
    font-size: 30px;
  }

  .dialog-details p {
    flex-direction: column;
    gap: 0;
  }
}

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

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