/* =====================================================
   SINOCAN CORPORATE CENTER
   Single-page marketing site stylesheet
   ===================================================== */

/* ---------- 1. Reset & Tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  /* Palette */
  --navy:        #0E1B2C;
  --navy-soft:   #1A2A40;
  --navy-deep:   #08111C;
  /* Brand gold — --gold-deep is the exact value from the official logo
     artwork; --gold is a lightened tint for legibility on the navy. */
  --gold:        #C9A24B;
  --gold-soft:   #D9B970;
  --gold-deep:   #A6862C;
  --cream:       #F7F3EC;
  --cream-warm:  #EFE9DD;
  --grey-light:  #EFEBE3;
  --grey-line:   #DAD3C5;
  --charcoal:    #1A1A1A;
  --muted:       #6E6E6E;
  --white:       #FFFFFF;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:    1200px;
  --section-pad:  clamp(64px, 9vw, 130px);
  --radius:       2px;

  /* Motion */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. Base ---------- */
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

p { color: var(--charcoal); }
p + p { margin-top: 1em; }

em {
  font-style: italic;
  font-family: var(--font-display);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em;
  background: rgba(14, 27, 44, 0.06);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ---------- 3. Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 243, 236, 0.97);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  transition: color 0.35s var(--ease);
}
.site-header.scrolled .brand { color: var(--navy); }

.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.18em;
}
.brand-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.32em;
  margin-top: 4px;
  opacity: 0.85;
}

/* Logo in header — swaps between light/dark variants on scroll */
.brand { display: block; }
/* Horizontal lockup — sized by width so the wordmark stays legible */
.brand-logo {
  width: 218px;
  height: auto;
  transition: width 0.35s var(--ease);
}
.site-header.scrolled .brand-logo { width: 190px; }
.brand-logo-dark { display: none; }
.site-header.scrolled .brand-logo-light { display: none; }
.site-header.scrolled .brand-logo-dark { display: block; }

/* Shared gold accent for headings on dark/light sections */
.gold-accent { color: var(--gold); font-style: italic; }
.section:not(.section-dark):not(.section-contact):not(.section-more-info) .gold-accent { color: var(--gold-deep); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 21px;
}
.site-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
  opacity: 0.85;
}
.site-nav a:hover { opacity: 1; color: var(--gold-soft); }
.site-header.scrolled .site-nav a { color: var(--navy); opacity: 0.75; }
.site-header.scrolled .site-nav a:hover { opacity: 1; color: var(--gold-deep); }

.nav-cta {
  border: 1px solid currentColor;
  padding: 9px 17px !important;
  border-radius: var(--radius);
  margin-left: 4px;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; border-color: var(--gold) !important; opacity: 1 !important; }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--navy); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-large {
  padding: 18px 36px;
  font-size: 14px;
}

/* ---------- 5. Eyebrow / Section Headings ---------- */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold); }

.section-title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 500;
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }

.section-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 48px;
}
.section-lead.light { color: rgba(255,255,255,0.7); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 30% 20%, rgba(201, 162, 75, 0.18), transparent 60%),
    linear-gradient(180deg, #0a1626 0%, #0E1B2C 40%, #06101a 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -30%; right: -10%;
  width: 70%; height: 80%;
  background:
    linear-gradient(135deg, transparent 49%, rgba(201, 162, 75, 0.08) 50%, transparent 51%),
    linear-gradient(135deg, transparent 65%, rgba(201, 162, 75, 0.05) 66%, transparent 67%);
  background-size: 100% 100%;
  transform: rotate(-10deg);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.hero .eyebrow {
  color: var(--gold);
}

/* Prominent logo on the front page */
.hero-logo {
  width: clamp(240px, 30vw, 360px);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(201,162,75,0.45);
  background: rgba(201,162,75,0.08);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.grade-a {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  padding: 3px 9px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  color: var(--gold);
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 760px;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stats span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  animation: cuePulse 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes cuePulse {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- 7. Sections ---------- */
.section {
  padding: var(--section-pad) 0;
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark p { color: rgba(255,255,255,0.75); }
.section-light-grey { background: var(--grey-light); }

/* ---------- 8. About (two-col) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.col-text p { font-size: 17px; line-height: 1.7; color: #444; }
.col-text .lead {
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  margin-top: 32px;
}
.figure-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow:
    0 1px 2px rgba(14,27,44,0.06),
    0 30px 60px -20px rgba(14,27,44,0.25);
}
.figure-placeholder {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(201,162,75,0.08) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.figure-placeholder::after {
  content: attr(data-label);
}
.figure-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- 9. Highlights ---------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.highlight-card {
  background: var(--navy);
  padding: 48px 36px;
  transition: background 0.3s var(--ease);
}
.highlight-card:hover { background: var(--navy-soft); }
.hc-icon {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 24px;
  line-height: 1;
}
.highlight-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
}
.highlight-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

/* ---------- 10. Spaces Table ---------- */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 56px;
}
.spaces-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.spaces-table thead th {
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
  padding: 16px 20px;
  border-bottom: 2px solid var(--navy);
}
.spaces-table tbody td {
  padding: 20px;
  border-bottom: 1px solid var(--grey-line);
  vertical-align: top;
}
.spaces-table tbody tr:hover td { background: rgba(14,27,44,0.03); }
.spaces-table .total-row td {
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  border-bottom: none;
}
.spaces-table .total-row td:first-child { color: var(--gold); }

.badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}
.badge-available {
  background: rgba(46, 125, 74, 0.12);
  color: #2E7D4A;
  border: 1px solid rgba(46, 125, 74, 0.3);
}
.badge-partial {
  background: rgba(201, 162, 75, 0.14);
  color: var(--gold-deep);
  border: 1px solid rgba(201, 162, 75, 0.35);
}
.badge-occupied {
  background: rgba(110, 110, 110, 0.12);
  color: var(--muted);
  border: 1px solid rgba(110, 110, 110, 0.28);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.term-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.term-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.term-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  margin-top: 6px;
}
.term-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.terms-disclaimer {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.spaces-cta { margin-top: 28px; }

/* ---------- 11. Floor Plans ---------- */
.fp-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  margin-top: 32px;
  min-height: 640px;
}
.fp-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 8px;
  max-height: 720px;
  overflow-y: auto;
}
.fp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  text-align: left;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  width: 100%;
}
.fp-item:hover { background: var(--cream-warm); }
.fp-item.active {
  background: var(--navy);
  color: var(--white);
}
.fp-no {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  min-width: 32px;
}
.fp-item.active .fp-no { color: var(--gold-soft); }
.fp-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.fp-viewer {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 640px;
}
.fp-viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.fp-viewer-header a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.fp-viewer-header a:hover { color: var(--gold-soft); }
.fp-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  background: var(--white);
  padding: 10px;
}
#fpFrame {
  flex: 1;
  width: 100%;
  min-height: 580px;
  border: none;
  background: var(--grey-light);
}
#fpImage {
  width: 100%;
  height: auto;
  align-self: center;
  object-fit: contain;
  background: var(--white);
}
#fpImage[hidden], #fpFrame[hidden] { display: none; }

/* ---------- 12. Specs Tabs ---------- */
.spec-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--grey-line);
}
.spec-tab {
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  margin-bottom: -1px;
}
.spec-tab:hover { color: var(--navy); }
.spec-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.spec-panel { display: none; }
.spec-panel.active { display: block; animation: fadeIn 0.4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.spec-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}
.spec-cols h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-line);
}
.spec-cols ul li {
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  border-bottom: 1px dashed var(--grey-line);
}
.spec-cols ul li:last-child { border-bottom: none; }
.spec-cols strong { color: var(--navy); font-weight: 600; }

/* ---------- 13. Location ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 32px;
}
.loc-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.address-block {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.address-label {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.address-line {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.distance-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-line);
  font-size: 15px;
}
.distance-list li:last-child { border-bottom: none; }
.distance-list li span:first-child { color: var(--navy); font-weight: 500; }
.distance-list li span:last-child { color: var(--muted); }
.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  border: 1px solid var(--grey-line);
}
.loc-map iframe {
  width: 100%; height: 100%; border: 0;
  min-height: 480px;
}

/* ---------- 13b. Plan Your Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.visit-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.visit-icon {
  font-size: 28px;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 18px;
}
.visit-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-line);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  font-size: 15px;
  border-bottom: 1px dashed var(--grey-line);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: #444; }
.hours-list li span:last-child { color: var(--navy); font-weight: 600; white-space: nowrap; }
.visit-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}
.policy-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #444;
  border-bottom: 1px dashed var(--grey-line);
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.policy-list strong { color: var(--navy); font-weight: 600; }

.visit-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--navy);
  border-radius: var(--radius);
}
.visit-cta p {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0;
}

/* ---------- 14. Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.team-card:hover {
  background: rgba(201,162,75,0.08);
  transform: translateY(-4px);
}
.team-role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.team-card h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.25;
}
.team-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* ---------- 15. Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: var(--grey-light);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover { transform: scale(1.01); }
.gallery-item.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(14,27,44,0.04) 0 10px, transparent 10px 20px),
    var(--cream-warm);
  border: 1px dashed var(--grey-line);
}
.gallery-item.empty::after {
  content: attr(data-caption);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 16px;
}
.gallery-item.loaded::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(14,27,44,0.85), transparent);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item.loaded:hover::after { opacity: 1; }

/* ---------- 16. Contact ---------- */
.section-contact {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,162,75,0.14), transparent 60%),
    var(--navy-deep);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 48px;
}
.contact-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.cc-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.cc-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.cc-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-top: 4px;
}
.cc-email, .cc-phone {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}
.cc-email:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }

.contact-cta-row {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ---------- 17. Footer ---------- */
.site-footer {
  background: #060d18;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo { width: 200px; height: auto; }
.footer-tag {
  margin-top: 16px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold-soft);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 8px;
}
.footer-nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s var(--ease);
}
.footer-nav a:hover { color: var(--gold); }
.footer-legal {
  text-align: right;
  font-size: 13px;
  line-height: 1.6;
}
.footer-legal .muted { color: rgba(255,255,255,0.4); font-size: 12px; margin-top: 4px; }

/* ---------- 18. Responsive ---------- */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 56px; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .terms-grid { grid-template-columns: repeat(3, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-legal { text-align: left; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--white) !important;
    opacity: 1 !important;
  }
  .nav-cta {
    margin-top: 20px;
    text-align: center;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
  }
  .site-header.scrolled .site-nav a { color: var(--white); }
  .site-nav.open { transform: translateX(0); }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 92vh; padding: 110px 0 60px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-cta { gap: 12px; }

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

  .fp-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .fp-list {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    padding: 4px;
  }
  .fp-item {
    flex-direction: column;
    flex: 0 0 80px;
    gap: 2px;
    padding: 10px 6px;
    text-align: center;
  }
  .fp-no { min-width: 0; font-size: 18px; }
  .fp-name { font-size: 11px; }
  /* On a phone the plan is a wide landscape drawing — let the stage take its
     natural height instead of forcing a tall empty box around it. */
  .fp-stage { min-height: 0; padding: 6px; }
  #fpImage { width: 100%; height: auto; }
  .fp-viewer { min-height: 0; }
  .fp-main { gap: 14px; }
  #fpFrame { min-height: 420px; }

  /* Legend on a phone: keep the unit suffix on one line and let a long
     status badge wrap rather than run off the edge. */
  .area-unit-sm, .area-num-sm { white-space: nowrap; }
  .fp-legend { padding: 18px 16px; }
  .fp-legend-table .badge {
    white-space: normal;
    font-size: 8.5px;
    padding: 4px 8px;
    line-height: 1.3;
    display: inline-block;
  }
  .fp-legend-table td { padding-right: 4px; }

  .spaces-table thead { display: none; }
  .spaces-table tbody td { display: block; padding: 4px 16px; border: none; }
  .spaces-table tbody tr {
    display: block;
    padding: 16px;
    border-bottom: 1px solid var(--grey-line);
  }
  .spaces-table tbody td:first-child { font-weight: 600; color: var(--navy); font-size: 16px; }
  .spaces-table tbody td:not(:first-child) { color: var(--muted); font-size: 14px; }
  .spaces-table .total-row td { padding: 12px 16px; }

  .visit-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .visit-cta .btn { justify-content: center; }

  .contact-card { padding: 28px 24px; }
  .section-title { font-size: 32px; }
}

@media (max-width: 420px) {
  .terms-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
}

/* ---------- 18b. Enhanced sq.m. labels ---------- */
.cell-unit { font-weight: 600; color: var(--navy); }
.cell-area { white-space: nowrap; }
.area-num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.area-unit {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}
.area-num-total {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.area-unit-total {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-left: 8px;
}
.area-num-sm {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-right: 6px;
}
.area-unit-sm {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- 18b2. Ideal Uses / Tenant Mix ---------- */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.use-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.use-level {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.use-card h3 {
  font-size: 23px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.use-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 20px;
}
.use-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}
.use-tags li {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--cream-warm);
  border: 1px solid var(--grey-line);
  border-radius: 100px;
  padding: 6px 13px;
}

/* Featured floor block — gold on black */
.feature-floor {
  background:
    radial-gradient(ellipse 70% 80% at 85% 15%, rgba(201,162,75,0.2), transparent 62%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(201,162,75,0.35);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.feature-floor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.ff-content { position: relative; z-index: 1; max-width: 940px; }
.ff-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.ff-title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.ff-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.76) !important;
  margin-bottom: 34px;
}
.ff-lead strong { color: var(--gold-soft); font-weight: 600; }

.ff-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.ff-cat {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}
.ff-cat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 8px;
}
.ff-cat-body {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68) !important;
}

.ff-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.ff-specs > div { display: flex; flex-direction: column; gap: 5px; }
.ff-specs strong {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.ff-specs span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ff-note {
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.42) !important;
  margin-bottom: 26px;
  max-width: 640px;
}

/* ---------- 18c. Tenants ---------- */
.tenant-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.tenant-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,75,0.22);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.tenant-card:hover {
  background: rgba(201,162,75,0.1);
  border-color: rgba(201,162,75,0.5);
  transform: translateY(-4px);
}
.tenant-logo {
  height: 76px;
  margin-bottom: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Real logos sit on a white plate — most tenant marks are dark artwork
   and would disappear against the navy section. */
.tenant-logo.logo-loaded {
  background-color: var(--white);
  border-radius: 3px;
  padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.tenant-logo.logo-fallback {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: var(--radius);
  background: rgba(201,162,75,0.06);
}
.tenant-card h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px;
}
.tenant-cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft) !important;
}
.tenant-floor {
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold) !important;
  background: rgba(201,162,75,0.1);
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
}
.tenant-note {
  margin-top: 32px;
  font-size: 12.5px;
  font-style: italic;
  color: rgba(255,255,255,0.45) !important;
  text-align: center;
}

/* ---------- 18d. Floor plan legend ---------- */
/* min-width:0 on every grid/flex child — without it they refuse to shrink
   below their content width and the section overflows on narrow screens. */
.fp-main { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.fp-list, .fp-viewer, .fp-stage, .fp-legend { min-width: 0; }
.fp-legend-table { table-layout: fixed; width: 100%; }
.fp-legend-table td, .fp-legend-table th { overflow-wrap: anywhere; }
.fp-legend {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.fp-legend-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.fp-legend-head h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
}
.fp-legend-use {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(201,162,75,0.1);
  border: 1px solid rgba(201,162,75,0.28);
  padding: 5px 12px;
  border-radius: 100px;
}
.fp-legend-table { width: 100%; border-collapse: collapse; }
.fp-legend-table thead th {
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px 8px 0;
  border-bottom: 1px solid var(--grey-line);
}
.fp-legend-table tbody td {
  padding: 12px 12px 12px 0;
  border-bottom: 1px dashed var(--grey-line);
  vertical-align: middle;
}
.fp-legend-table tbody tr:last-child td { border-bottom: none; }
.lg-unit { font-weight: 600; color: var(--navy); font-size: 15px; }
.lg-area-na { color: var(--muted); font-size: 15px; font-style: italic; }

/* Featured 12th-floor markers */
.fp-item-featured .fp-name { display: flex; flex-direction: column; gap: 3px; }
.fp-tag {
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.fp-item-featured.active .fp-tag { color: var(--gold-soft); }
.row-featured td { background: rgba(201,162,75,0.07); }
.row-featured:hover td { background: rgba(201,162,75,0.12) !important; }
.row-tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  padding: 3px 9px;
  border-radius: 100px;
  vertical-align: middle;
}
.fp-legend-total {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--grey-line);
  font-size: 14px;
  color: var(--muted);
}
.fp-legend-total strong { color: var(--navy); font-size: 16px; }
.fp-legend-total .lg-avail { color: var(--gold-deep); }
.fp-legend-total .lg-sep { margin: 0 10px; color: var(--grey-line); }
.fp-disclaimer {
  margin-top: 24px;
  font-size: 12.5px;
  font-style: italic;
  color: var(--muted);
}

/* ---------- 18e. Location: map tabs, landmarks, access ---------- */
.loc-map-wrap { display: flex; flex-direction: column; }
.map-tabs { display: flex; gap: 2px; margin-bottom: 12px; }
.map-tab {
  padding: 10px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}
.map-tab:hover { color: var(--navy); border-color: var(--gold); }
.map-tab.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.map-link {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  align-self: flex-start;
}
.map-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.loc-subhead {
  margin-top: 72px;
  margin-bottom: 28px;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.landmark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.landmark-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.lm-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.landmark-card ul li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  font-size: 13.5px;
  border-bottom: 1px dashed var(--grey-line);
}
.landmark-card ul li:last-child { border-bottom: none; }
.landmark-card ul li span:first-child { color: var(--navy); font-weight: 500; }
.landmark-card ul li span:last-child { color: var(--muted); white-space: nowrap; font-size: 12.5px; }

.access-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--grey-line);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.access-item {
  background: var(--navy);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.access-item strong { color: var(--gold); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.access-item span { color: rgba(255,255,255,0.65); font-size: 12px; }

/* ---------- 18f. Gallery filters + watermark ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.gal-filter {
  padding: 9px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--grey-line);
  border-radius: 100px;
  transition: all 0.2s var(--ease);
}
.gal-filter:hover { color: var(--navy); border-color: var(--gold); }
.gal-filter.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.gallery-item.hidden { display: none; }
.inline-link {
  color: var(--gold-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(166,134,44,0.4);
  transition: border-color 0.2s var(--ease);
}
.inline-link:hover { border-bottom-color: var(--gold-deep); }

/* Watermark overlay — sits above every gallery image */
.gallery-item.loaded::before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 148px;
  height: 38px;
  background: url("../assets/images/watermark.svg") no-repeat right bottom;
  background-size: contain;
  opacity: 0.9;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
  pointer-events: none;
  z-index: 2;
}
/* Diagonal repeating watermark for stronger protection on hover */
.gallery-item.loaded::after { z-index: 3; }
.gallery-note {
  margin-top: 28px;
  font-size: 12.5px;
  font-style: italic;
  color: var(--muted);
}

/* ---------- 18g. FAQ ---------- */
.faq-list {
  display: grid;
  gap: 2px;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-line);
}
.faq-item { background: var(--white); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 26px;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream-warm); color: var(--gold-deep); }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.25s var(--ease);
  line-height: 1;
}
.faq-item[open] summary { background: var(--navy); color: var(--white); }
.faq-item[open] summary::after { content: "−"; color: var(--gold); }
.faq-body {
  padding: 24px 26px 28px;
  border-top: 1px solid var(--grey-line);
  animation: fadeIn 0.3s var(--ease);
}
.faq-body p { font-size: 15px; line-height: 1.7; color: #444; }
.faq-body ul { margin-top: 8px; }
.faq-body ul li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.faq-body ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.faq-body strong { color: var(--navy); font-weight: 600; }

/* ---------- 18h. Inquiry form ---------- */
.inquiry-wrap {
  margin-top: 56px;
  padding: 44px 40px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(201,162,75,0.25);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
}
.inquiry-head { margin-bottom: 32px; }
.inquiry-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.inquiry-sub { font-size: 15px; color: rgba(255,255,255,0.65); }
.req { color: var(--gold); }

.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label,
.form-checks legend {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.32); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,162,75,0.07);
}
.form-field input.invalid { border-color: #E06B6B; background: rgba(224,107,107,0.08); }
.form-field select option { background: var(--navy); color: var(--white); }
.field-error { font-size: 12px; color: #E88B8B; min-height: 1em; }

.form-checks {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.form-checks legend { padding: 0 8px; }
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.check input { width: 17px; height: 17px; accent-color: var(--gold); cursor: pointer; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.form-hint { font-size: 12.5px; color: rgba(255,255,255,0.5); font-style: italic; max-width: 380px; }
.form-status { font-size: 14px; min-height: 1.2em; }
.form-status.error { color: #E88B8B; }
.form-status.success { color: var(--gold-soft); }

/* ---------- 18i. For More Information ---------- */
.section-more-info {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,162,75,0.16), transparent 65%),
    var(--navy);
  color: var(--white);
  text-align: center;
}
.more-info-inner { max-width: 780px; margin: 0 auto; }
.mi-logo { width: 220px; height: auto; margin: 0 auto 28px; }
.section-more-info .eyebrow { color: var(--gold); }
.mi-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
}
.mi-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,162,75,0.4);
  padding-bottom: 6px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  word-break: break-word;
}
.mi-email:hover { color: var(--gold-soft); border-color: var(--gold-soft); }
.mi-placeholder {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}
.mi-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.mi-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}
.mi-meta > div { display: flex; flex-direction: column; gap: 6px; }
.mi-meta strong {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.mi-meta span { font-size: 14.5px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ---------- 18j. Extra gold-on-black accents ---------- */
.section-dark .section-title,
.section-contact .section-title { position: relative; }
.highlight-card { border-left: 2px solid transparent; }
.highlight-card:hover { border-left-color: var(--gold); }
.team-card { border-top: 2px solid rgba(201,162,75,0.35); }
.spaces-table thead th { border-bottom-color: var(--gold); }
.contact-card { border-top: 2px solid rgba(201,162,75,0.4); }

/* ---------- 18k. Responsive for new blocks ---------- */
@media (max-width: 1024px) {
  .uses-grid { grid-template-columns: 1fr; }
  .ff-cats { grid-template-columns: 1fr; }
  .ff-specs { grid-template-columns: repeat(2, 1fr); }
  .tenant-grid { grid-template-columns: repeat(3, 1fr); }
  .landmark-grid { grid-template-columns: repeat(2, 1fr); }
  .access-strip { grid-template-columns: repeat(3, 1fr); }
  .mi-meta { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero-logo { width: 220px; }
  .hero-badge { font-size: 9.5px; letter-spacing: 0.16em; padding: 8px 14px; }
  .brand-logo { width: 168px; }
  .site-header.scrolled .brand-logo { width: 150px; }

  .tenant-grid { grid-template-columns: repeat(2, 1fr); }
  .ff-specs { grid-template-columns: 1fr; gap: 16px; }
  .use-card { padding: 26px 22px; }
  .landmark-grid { grid-template-columns: 1fr; }
  .access-strip { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-checks { grid-template-columns: 1fr; }
  .inquiry-wrap { padding: 28px 22px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { justify-content: center; }
  .form-hint { max-width: none; text-align: center; }

  .faq-item summary { font-size: 15px; padding: 18px 48px 18px 20px; }
  .faq-body { padding: 20px; }

  .area-num { font-size: 22px; }
  .loc-subhead { font-size: 22px; margin-top: 48px; }
  .mi-actions { flex-direction: column; }
  .gallery-item.loaded::before { width: 112px; height: 29px; right: 10px; bottom: 10px; }
}

/* ---------- 19. On-scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .section { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .section.in-view { opacity: 1; transform: none; }
  .hero { opacity: 1; } /* hero loads visible */
}

/* ---------- 20. Print niceties ---------- */
@media print {
  .site-header, .hero-cta, .scroll-cue, .nav-toggle, .fp-list { display: none; }
  .hero { min-height: auto; }
  body { background: white; color: black; }
}
