/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1c2430;
  background: #ffffff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  line-height: 1.15; margin: 0 0 .5em;
  font-family: 'Manrope', 'Inter', -apple-system, sans-serif;
  font-weight: 800; letter-spacing: -.025em;
}
.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;
}

/* .btn and friends set a display value, which beats the browser's [hidden]
   rule. Without this, buttons the script hides still render (the room popup
   was showing "View Full Details" linking to # for rooms with no page). */
[hidden] { display: none !important; }

:root {
  --navy: #364954;        /* original site slate */
  --navy-dark: #022d3e;   /* original site deep teal */
  --gold: #fcde00;        /* original site CTA yellow */
  --gold-dark: #e3c800;   /* yellow hover */
  --gold-soft: #c9f7ff;   /* original site pale cyan */
  --steel: #84a7bc;       /* original site steel blue */
  --steel-ink: #4a6b80;   /* readable steel on white */
  --ink: #1b2230;
  --muted: #5c6577;
  --line: #e5e8ee;
  --bg-alt: #f2f6f8;
}

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); text-align: center; }
.section-sub {
  text-align: center; max-width: 640px; margin: 0 auto 40px;
  color: var(--muted); font-size: 1.05rem;
}
.narrow { max-width: 760px; }

.btn {
  display: inline-block; padding: 15px 30px; border-radius: 2px;
  font-weight: 600; text-decoration: none; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---------- Placeholder media blocks ---------- */
.placeholder-media {
  position: relative;
  background:
    repeating-linear-gradient(135deg, #d7dee7, #d7dee7 12px, #ccd5e0 12px, #ccd5e0 24px);
  border: 1px dashed #9fb0c4;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
  text-align: center;
}
.placeholder-label {
  background: rgba(15, 25, 40, .78);
  color: #fff;
  padding: 10px 16px;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.4;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: #fff; text-decoration: none;
  flex-shrink: 0; white-space: nowrap;
}
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid var(--gold-soft);
  font-family: 'Manrope', 'Inter', -apple-system, sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--gold-soft);
  position: relative;
}
.logo-mark::before, .logo-mark::after {
  content: ""; position: absolute; width: 5px; height: 5px;
  border: 1px solid var(--gold-soft);
}
.logo-mark::before { top: -3px; left: -3px; border-width: 1px 0 0 1px; }
.logo-mark::after { bottom: -3px; right: -3px; border-width: 0 1px 1px 0; }
.logo-text {
  font-weight: 600; font-size: 1.2rem;
  font-family: 'Manrope', 'Inter', -apple-system, sans-serif; letter-spacing: .01em;
}
.logo-text span { color: var(--gold-soft); font-weight: 500; }

.main-nav { flex-shrink: 0; }
.main-nav > ul {
  display: flex; flex-wrap: nowrap; gap: 22px; list-style: none; margin: 0; padding: 0;
}
.main-nav a {
  color: #cfd6e2; text-decoration: none; font-size: .78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .07em; white-space: nowrap;
}
.main-nav a:hover { color: #fff; }

.header-phone {
  color: #fff; text-decoration: none; font-weight: 600;
  border: 1px solid rgba(255,255,255,.3); padding: 9px 18px; border-radius: 2px;
  font-size: .8rem; letter-spacing: .04em;
  white-space: nowrap;
}
.header-phone:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  background-color: var(--navy-dark); /* guaranteed fallback if image fails to load */
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  min-height: unset; border-radius: 0; border: none;
  background-size: cover; background-position: center; background-color: var(--navy-dark);
}
.hero-scrim {
  position: absolute; inset: 0;
  /* Only darken far enough to hold the type. The boardroom is the strongest
     asset on the page and the old scrim was hiding it. */
  background:
    linear-gradient(100deg, rgba(2,45,62,.94) 0%, rgba(2,45,62,.90) 46%, rgba(2,45,62,.78) 68%, rgba(2,45,62,.26) 88%, rgba(2,45,62,.08) 100%),
    linear-gradient(180deg, rgba(2,45,62,.34) 0%, rgba(2,45,62,0) 30%);
}
.hero-inner {
  position: relative; z-index: 2;
  color: #fff;
  padding-top: 64px; padding-bottom: 64px;
  max-width: 720px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  color: var(--gold-soft); font-weight: 600; margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.05rem; color: #dbe1ea; max-width: 560px; margin-bottom: 28px;
}
.hero-price {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 32px;
}
.hero-price-label {
  font-size: .8rem; color: var(--steel); text-transform: uppercase; letter-spacing: .1em;
}
.hero-price-value {
  font-family: 'Manrope', 'Inter', -apple-system, sans-serif;
  font-size: 2.1rem; font-weight: 800; color: var(--gold);
}
.hero-price-value span { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500; color: #dbe1ea; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.stagger.is-visible { transition-delay: var(--reveal-delay, 0ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---------- Section divider ---------- */
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
.section-divider::before, .section-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line); max-width: 420px;
}
.section-divider svg { width: 14px; height: 14px; color: var(--steel); flex-shrink: 0; }

/* ---------- Diagonal / settle section ---------- */
.diagonal-section {
  position: relative; overflow: hidden;
  padding: 110px 0 140px;
  background: var(--navy);
}
.diagonal-shapes { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.shape { position: absolute; }
.shape-a {
  top: -25%; right: -18%; width: 46%; height: 150%;
  background: linear-gradient(150deg, #e4d9c3, #c9b48a);
  clip-path: polygon(100% 0, 100% 100%, 35% 100%, 62% 0);
}
.shape-b { display: none; }
.diagonal-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.diagonal-copy { color: #fff; }
.diagonal-copy h2 { color: #fff; }
.diagonal-lead { font-size: 1.15rem; color: var(--gold-soft); font-weight: 600; margin-bottom: 14px; }
.diagonal-copy p { color: #d7dce6; }
.diagonal-copy .btn { margin-top: 12px; }
.eyebrow-dark { color: var(--gold-soft); }
.diagonal-photo img {
  width: 100%; height: auto; border: 8px solid #fff; box-shadow: 0 24px 48px rgba(0,0,0,.3);
}

/* ---------- Neighborhood ---------- */
.neighborhood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.neighborhood-card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: 3px; padding: 26px;
}
.neighborhood-card h3 {
  font-size: .92rem; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 600;
}
.neighborhood-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy); padding: 28px 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; color: #fff; }
.trust-item strong { font-size: 1rem; }
.trust-item span { color: #b7c0cf; font-size: .85rem; }

/* ---------- Tour ---------- */
.panorama-tour {
  width: 100%; height: 55vh; min-height: 380px; max-height: 560px;
  border-radius: 3px; overflow: hidden; background: #14181f;
  border: 1px solid var(--line);
}
.tour-hint { text-align: center; color: var(--muted); font-size: .85rem; margin: 14px 0 0; }

.tour-fallback { position: relative; background: #14181f; }
.tour-fallback-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-fallback-caption {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(2, 45, 62, .82); color: #fff;
  padding: 8px 14px; border-radius: 3px; font-size: .85rem; font-weight: 600;
}
.tour-fallback-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.85); color: var(--navy-dark);
  font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.tour-fallback-nav:hover { background: #fff; }
.tour-fallback-prev { left: 16px; }
.tour-fallback-next { right: 16px; }
.tour-fallback-note {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(2, 45, 62, .82); color: #dbe1ea;
  padding: 6px 14px; border-radius: 3px; font-size: .75rem; text-align: center; max-width: 80%;
}
.tour-grid-video { max-width: 560px; margin: 32px auto 0; }

/* ---------- Floor plan navigator ---------- */
.floor-nav-wrap { margin-top: 40px; }
.floor-nav-label {
  text-align: center; font-size: .8rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin: 0 0 14px;
}
.fp-svg {
  display: block; width: 100%; max-width: 940px; margin: 0 auto; height: auto;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 3px;
}

/* room / zone shapes */
.fp-shape {
  stroke: var(--navy); stroke-width: 7;
  transition: fill .15s ease;
}
.fp-outline { fill: none; stroke: var(--navy); stroke-width: 7; pointer-events: none; }
.fp-shape-avail  { fill: #ffffff; }
.fp-shape-leased { fill: #eceef1; }
.fp-shape-open   { fill: var(--bg-alt); }
.fp-shape-circ   { fill: var(--bg-alt); stroke: none; }
.fp-shape-util   { fill: #dfe3e8; }
.fp-shape-entry  { fill: var(--navy); stroke: var(--gold-soft); stroke-width: 5; }

.fp-clickable { cursor: pointer; }
.fp-clickable:hover .fp-shape,
.fp-clickable:focus-visible .fp-shape { fill: #e8f2f7; }
.fp-clickable:focus-visible { outline: none; }
.fp-clickable:focus-visible .fp-shape { stroke: var(--steel-ink); stroke-width: 10; }

.fp-clickable.is-active .fp-shape { fill: var(--navy); }
.fp-clickable.is-active .fp-t-name { fill: #ffffff; }
.fp-clickable.is-active .fp-t-dim  { fill: var(--gold-soft); }

/* labels */
.fp-zone text {
  text-anchor: middle; pointer-events: none;
  font-family: 'Inter', -apple-system, sans-serif;
}
.fp-t-name {
  font-size: 31px; font-weight: 600; fill: var(--ink); letter-spacing: 1.2px;
}
.fp-t-name.fp-t-sm { font-size: 27px; }
.fp-t-name.fp-t-entry { fill: #fff; letter-spacing: 1.6px; }
.fp-t-dim { font-size: 26px; fill: var(--muted); }
.fp-t-dim.fp-t-sm { font-size: 23px; }
.fp-t-micro { font-size: 21px; fill: var(--muted); letter-spacing: 1px; }

/* status badges */
.fp-badge-avail  { fill: var(--navy-dark); }
.fp-badge-leased { fill: #dcdfe3; }
.fp-t-badge { font-size: 23px; font-weight: 700; letter-spacing: 1.1px; }
.fp-t-badge-avail  { fill: #ffffff; }
.fp-t-badge-leased { fill: #6f7681; }

.fp-legend {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin: 16px 0 0; font-size: .8rem; color: var(--muted);
}
.fp-legend-item { display: flex; align-items: center; gap: 6px; }

.tour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tour-embed { aspect-ratio: 16 / 10; min-height: unset; position: relative; }
.play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

/* ---------- Amenities ---------- */
.amenities-list { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--line); }
.amenities-row {
  display: grid; grid-template-columns: 44px 32px 1fr; gap: 22px; align-items: center;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.amenities-index {
  font-family: 'Manrope', 'Inter', -apple-system, sans-serif; font-size: 1.15rem;
  color: var(--steel); font-weight: 700;
}
.amenities-icon { display: flex; color: var(--steel-ink); }
.amenities-icon svg { width: 22px; height: 22px; }
.amenities-copy h3 {
  font-size: .92rem; margin: 0 0 4px; font-family: 'Inter', sans-serif;
  text-transform: uppercase; letter-spacing: .04em; font-weight: 600;
}
.amenities-copy p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Pricing watermark ---------- */
.pricing-section { position: relative; overflow: hidden; }
.pricing-watermark {
  position: absolute; top: 50%; left: -14%; transform: translateY(-50%) rotate(-4deg);
  width: 560px; max-width: none; opacity: .06; pointer-events: none;
  filter: grayscale(1); z-index: 0;
}
.pricing-section .wrap { position: relative; z-index: 1; }

/* ---------- Two column layout ---------- */
.two-col {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.two-col.reverse { grid-template-columns: .9fr 1.1fr; }
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child { order: 1; }

.floorplan-wrap {
  border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: #fff;
}
.floorplan-wrap img { width: 100%; height: auto; }

/* ---------- Pricing table ---------- */
.pricing-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .92rem; }
.pricing-table th, .pricing-table td {
  text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line);
}
.pricing-table th { color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: .75rem; letter-spacing: .03em; }
.table-note { font-size: .85rem; color: var(--muted); margin-top: -8px; }

/* ---------- Gallery ---------- */

.tour-embed video { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; background: #000; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  padding: 30px; margin: 0; color: var(--ink);
}
.testimonial p {
  margin: 0 0 16px; font-family: 'Manrope', 'Inter', -apple-system, sans-serif;
  font-style: italic; font-size: 1.05rem; font-weight: 500;
}
.testimonial cite {
  font-style: normal; font-weight: 600; font-size: .76rem; color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: .06em;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--line); border-radius: 3px; padding: 16px 20px; margin-bottom: 12px; background: #fff;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--muted); margin: 12px 0 0; }

/* ---------- Contact ---------- */
.contact-form { display: flex; flex-direction: column; gap: 6px; max-width: 480px; }
.contact-form label { font-size: .85rem; font-weight: 600; margin-top: 10px; }
.contact-form input, .contact-form textarea {
  padding: 12px; border: 1px solid var(--line); border-radius: 3px; font: inherit;
}
.contact-form button { margin-top: 18px; align-self: flex-start; }
.map-embed {
  border: 1px solid var(--line); border-radius: 3px; overflow: hidden;
  min-height: 320px; background: var(--bg-alt);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #cfd6e2; padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px;
}
.footer-grid p { margin: 0 0 8px; font-size: .9rem; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 600; margin-bottom: 12px !important;
  font-family: 'Manrope', 'Inter', -apple-system, sans-serif; font-size: 1.1rem;
}
.logo-mark-footer { width: 28px; height: 28px; font-size: .9rem; }
.footer-grid a { text-decoration: none; color: var(--gold-soft); }
.footer-heading {
  color: #fff; text-transform: uppercase; letter-spacing: .08em;
  font-size: .76rem; font-weight: 600; margin: 0 0 14px !important;
}
/* A second heading inside a column was sitting flush against the list above it,
   so "Shared Spaces" read as part of the office list. Separate the groups. */
.footer-heading-next {
  margin-top: 30px !important; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: #cfd6e2; font-size: .88rem; }
.footer-links a:hover { color: #fff; }
.footer-service-area { color: #8b95a8; font-size: .82rem; margin-top: 12px !important; }
.footer-grid .table-note { color: #8b95a8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-copy { font-size: .82rem; color: #8b95a8; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  
  .testimonial-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse > *:first-child,
  .two-col.reverse > *:last-child { order: unset; }
  .neighborhood-grid { grid-template-columns: repeat(2, 1fr); }
  .diagonal-inner { grid-template-columns: 1fr; }
  .diagonal-copy { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* nav collapses to hamburger while the inline row would still overflow */
@media (min-width: 1001px) and (max-width: 1200px) {
  .main-nav > ul { gap: 16px; }
  .main-nav a { font-size: .72rem; letter-spacing: .05em; }
  .header-phone { padding: 9px 14px; font-size: .76rem; }
}

@media (max-width: 1000px) {
  .main-nav > ul {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden auto;
    transition: max-height .25s ease;
  }
  .main-nav.open > ul { max-height: min(78vh, 620px); }
  .main-nav > ul > li { border-top: 1px solid rgba(255,255,255,.08); }
  .main-nav > ul > li > a { display: block; padding: 14px 24px; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}

@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-row { grid-template-columns: 32px 26px 1fr; gap: 14px; }
  
  .neighborhood-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .shape-a { width: 90%; }
}

/* ---------- Office detail pages ---------- */
.btn-outline {
  background: transparent; color: var(--navy);
  border-color: rgba(16,27,48,.35);
}
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.op-head { padding-bottom: 40px; }
.op-crumbs { font-size: .78rem; color: var(--muted); margin-bottom: 18px; letter-spacing: .03em; }
.op-crumbs a { color: var(--gold-dark); text-decoration: none; }
.op-crumbs a:hover { text-decoration: underline; }
.op-crumbs span { margin: 0 4px; }

.op-title-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.op-title-row h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 6px; }
.op-sub { color: var(--muted); margin: 0; font-size: .95rem; }
.op-badge {
  background: var(--navy-dark); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  padding: 7px 16px; border-radius: 2px; white-space: nowrap; margin-top: 8px;
}

.op-specs {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 3px;
}
.op-specs li {
  background: #fff; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 5px;
}
.op-specs span {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); font-weight: 600;
}
.op-specs strong { font-size: .95rem; color: var(--ink); font-weight: 600; }

.op-photos, .op-views { display: grid; gap: 20px; }
.op-photos { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.op-photo { margin: 0; }
.op-photo img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: 3px;
}
.op-photo figcaption {
  font-size: .8rem; color: var(--muted); margin-top: 10px; line-height: 1.5;
}
.op-left { text-align: left; margin-left: 0; }
.op-link { color: var(--gold-dark); }

.op-cta { text-align: center; }
.op-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.op-other { margin-top: 28px; font-size: .85rem; color: var(--muted); }
.op-other a { color: var(--gold-dark); text-decoration: none; }
.op-other a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .op-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .op-specs { grid-template-columns: 1fr; }
}

.fp-detail { cursor: pointer; }
.fp-detail text {
  font-size: 22px; font-weight: 700; fill: var(--steel-ink);
  letter-spacing: 1px; text-anchor: middle;
}
.fp-detail:hover text { fill: var(--navy); text-decoration: underline; }
.fp-clickable.is-active .fp-detail text { fill: var(--gold-soft); }

/* ---------- Vertical walk-through reel ---------- */
.tour-reel-wrap { margin-top: 48px; }
.tour-reel {
  max-width: 360px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  background: #000; line-height: 0;
}
.tour-reel video { width: 100%; height: auto; display: block; }

/* office-page panorama: taller frame so the vertical field of view is natural */
.op-pano {
  height: auto; aspect-ratio: 16 / 10;
  max-height: 600px; min-height: 340px;
}

/* ---------- Tour navigation arrows ---------- */
@keyframes tourPulse {
  0%   { transform: scale(.85); opacity: .9; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
/* room labels on the arrows, always visible */

/* ---------- Enquiry form additions ---------- */
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form select {
  padding: 12px; border: 1px solid var(--line); border-radius: 3px; font: inherit;
  background: #fff; color: var(--ink);
}

/* ---------- Room page video ---------- */
.op-video {
  max-width: 860px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: #000;
}
/* The room clips are portrait. At full container width they render past 1500px
   tall on a desktop, so cap by height and let the width follow. */
.op-video video { width: 100%; height: auto; display: block; }
@media (min-width: 701px) {
  .op-video { display: flex; justify-content: center; background: #000; }
  .op-video video { width: auto; height: auto; max-width: 100%; max-height: 74vh; }
}

/* ---------- Editorial content pages ---------- */
.art-body { max-width: 760px; margin: 0 auto; }
.art-body h2 { text-align: left; font-size: clamp(1.35rem,2.4vw,1.7rem); margin-top: 2.2em; }
.art-body h3 { font-size: 1.05rem; margin-top: 1.6em; text-transform: uppercase; letter-spacing: .04em; font-family: 'Inter', sans-serif; font-weight: 700; }
.art-body p { color: var(--ink); margin: 0 0 1.1em; }
.art-body ul { color: var(--ink); padding-left: 1.15em; margin: 0 0 1.3em; }
.art-body li { margin-bottom: .5em; }
.art-lede { font-size: 1.12rem; color: var(--muted); margin-bottom: 1.8em; }
.art-callout {
  background: var(--bg-alt); border-left: 3px solid var(--steel);
  padding: 20px 24px; margin: 1.8em 0; border-radius: 0 3px 3px 0;
}
.art-callout p { margin: 0; }
.art-callout strong { display: block; margin-bottom: .35em; }
.art-table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .95rem; }
.art-table th, .art-table td { text-align: left; padding: 11px 10px; border-bottom: 1px solid var(--line); }
.art-table th { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.art-cta { background: var(--navy); color: #fff; padding: 34px; border-radius: 3px; margin-top: 2.5em; text-align: center; }
.art-cta h2 { color: #fff; text-align: center; margin-top: 0; }
.art-cta p { color: #d7dce6; }
.art-related { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 1.2em; }
.art-related a { color: var(--steel-ink); font-size: .88rem; font-weight: 600; text-decoration: none; }
.art-related a:hover { text-decoration: underline; }

/* ---------- Room page: media ---------- */
.op-tour-section { padding-bottom: 0; }
.op-tour-panel { margin-top: 26px; padding-bottom: 72px; }
.op-tour-panel[hidden] { display: none; }

/* ---------- Floor plan room modal ---------- */
.rm-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2, 45, 62, .72);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; overflow-y: auto;
}
.rm-overlay[hidden] { display: none; }
.rm-dialog {
  position: relative; background: #fff; border-radius: 4px;
  max-width: 880px; width: 100%; max-height: 92vh; overflow-y: auto;
  box-shadow: 0 24px 70px rgba(0,0,0,.4);
  animation: rmIn .18s ease-out;
}
@keyframes rmIn { from { opacity: 0; transform: translateY(12px);} to { opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce) { .rm-dialog { animation: none; } }
.rm-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(2,45,62,.08); color: var(--navy-dark); font-size: 1.35rem; line-height: 1;
}
.rm-close:hover { background: rgba(2,45,62,.16); }
.rm-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 26px 30px 18px; border-bottom: 1px solid var(--line);
}
.rm-head h2 { margin: 0 0 4px; font-size: 1.5rem; }
.rm-sub { margin: 0; color: var(--muted); font-size: .9rem; }
.rm-badge {
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 11px; border-radius: 2px; white-space: nowrap; flex-shrink: 0;
}
.rm-badge-avail  { background: var(--navy-dark); color: #fff; }
.rm-badge-leased { background: #e9ecef; color: #5c6577; }
.rm-badge-shared { background: #e2eef5; color: #33607a; }
.rm-body { padding: 22px 30px 8px; }
.rm-specs { list-style: none; margin: 0 0 22px; padding: 0; display: grid;
            grid-template-columns: repeat(2, 1fr); gap: 10px 22px; }
.rm-specs li { display: flex; flex-direction: column; gap: 2px;
               border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.rm-specs span { font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.rm-specs strong { font-size: .92rem; }

/* The office clips are portrait. Stretched to the dialog width they run well
   past a screen height, so cap by height and let the width follow. */

.rm-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.rm-photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; display: block; }
.rm-empty { color: var(--muted); font-size: .92rem; }
.rm-foot {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  padding: 20px 30px 28px; border-top: 1px solid var(--line); margin-top: 18px;
}
.rm-foot .btn { padding: 12px 20px; font-size: .74rem; }
@media (max-width: 640px) {
  .rm-overlay { padding: 0; }
  .rm-dialog { max-height: 100vh; border-radius: 0; }
  .rm-specs { grid-template-columns: 1fr; }
  .rm-photos { grid-template-columns: repeat(2, 1fr); }
  .rm-head, .rm-body, .rm-foot { padding-left: 18px; padding-right: 18px; }
}

/* ---------- Nav dropdowns ---------- */
.nav-has-sub { position: relative; }
.nav-sub-toggle {
  background: none; border: none; cursor: pointer; padding: 0;
  color: #cfd6e2; font: inherit; font-size: .78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .07em; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-sub-toggle:hover, .nav-has-sub:hover .nav-sub-toggle { color: #fff; }
.nav-caret {
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; transition: transform .15s ease;
}
.nav-has-sub:hover .nav-caret, .nav-sub-toggle[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }
.nav-sub {
  display: block;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--navy-dark); border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px; padding: 8px 0; margin: 0; list-style: none;
  min-width: 210px; box-shadow: 0 14px 34px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .15s ease, transform .15s ease;
  z-index: 60;
}
.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-sub li { border: none; }
.nav-sub a {
  display: block; padding: 9px 18px; font-size: .78rem; letter-spacing: .03em;
  text-transform: none; color: #cfd6e2; white-space: nowrap;
}
.nav-sub a:hover { background: rgba(255,255,255,.07); color: #fff; }
/* invisible bridge so the menu does not close crossing the gap */
.nav-has-sub::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px; }

@media (max-width: 900px) {
  .main-nav ul#nav-list { gap: 16px; }
  .main-nav a, .nav-sub-toggle { font-size: .72rem; letter-spacing: .05em; }
}

/* mobile: dropdowns become inline accordions */
@media (max-width: 1000px) {
  .nav-has-sub::after { display: none; }
  .nav-sub-toggle { display: flex; width: 100%; justify-content: space-between; padding: 14px 24px; }
  .nav-sub {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    background: rgba(0,0,0,.22); border: none; box-shadow: none; border-radius: 0;
    min-width: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height .22s ease;
  }
  .nav-has-sub:hover .nav-sub, .nav-has-sub:focus-within .nav-sub { transform: none; }
  .nav-sub-toggle[aria-expanded="true"] + .nav-sub { max-height: 360px; }
  .nav-sub a { padding: 12px 24px 12px 38px; }
}

/* ---------- Footer: consistent 4-column ---------- */
.footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; }
.footer-address { font-style: normal; font-size: .9rem; margin: 0 0 8px; line-height: 1.6; }
.footer-hours { color: #9fb0c0; font-size: .84rem; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; } }
@media (max-width: 620px)  { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Nav: Visit menu with contact details ---------- */
.nav-sub-wide { min-width: 268px; }
.nav-sub-info { padding: 10px 18px; }
.nav-sub-label {
  display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--gold-soft); font-weight: 700; margin-bottom: 5px;
}
.nav-sub-info address {
  font-style: normal; font-size: .78rem; line-height: 1.55; color: #cfd6e2; text-transform: none;
}
.nav-sub-hours { font-size: .74rem; color: #9fb0c0; }
.nav-sub-info + li a, .nav-sub li + .nav-sub-info { border-top: 1px solid rgba(255,255,255,.09); }
@media (max-width: 1000px) {
  .nav-sub-info { padding: 12px 24px 12px 38px; }
}

/* ---------- Modal: always escapable on mobile ---------- */
.rm-close-bottom { display: none; }
@media (max-width: 640px) {
  /* keep the X pinned while the dialog scrolls */
  .rm-close {
    position: fixed; top: 10px; right: 10px; z-index: 210;
    width: 42px; height: 42px; font-size: 1.6rem;
    background: rgba(2,45,62,.92); color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.35);
  }
  .rm-close:hover, .rm-close:focus-visible { background: var(--navy-dark); }
  .rm-head { padding-right: 62px; }
  /* and give a second, obvious way out at the end of the content */
  .rm-close-bottom { display: inline-block; }
  .rm-foot { padding-bottom: 34px; }
}

.tour-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 26px 0 8px; }

/* ---------- Walk-through video on the homepage ---------- */
.tour-video {
  max-width: 900px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: #000;
}
.tour-video video { width: 100%; height: auto; display: block; }
.tour-video-cap {
  margin: 0; padding: 10px 14px; background: var(--navy-dark);
  color: #cfd6e2; font-size: .8rem; text-align: center;
}

/* ---------- Available offices ---------- */

/* These clips are vertical. Pin the ratio so the card does not lurch when
   the poster is replaced by the first video frame. */

@media (max-width: 560px) {
  
  
  
}

/* walkthrough player (vertical) */
.tour-video { max-width: 380px; }

/* ---------- End-of-video call to action ---------- */
.tour-video { position: relative; }
.tv-endcta {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(2,45,62,.78);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 24px; text-align: center;
  animation: tvIn .25s ease-out;
}
.tv-endcta[hidden] { display: none; }
@keyframes tvIn { from { opacity: 0 } to { opacity: 1 } }
.tv-endcta-title {
  font-family: 'Manrope','Inter',sans-serif; font-weight: 800; font-size: 1.5rem;
  color: #fff; margin: 0; letter-spacing: -.02em;
}
.tv-endcta-sub { color: var(--gold-soft); font-size: .88rem; margin: 0 0 8px; }
.tv-endcta-btns { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 230px; }
.tv-endcta-btns .btn { width: 100%; }
.tv-replay {
  margin-top: 10px; background: none; border: none; cursor: pointer;
  color: #cfd6e2; font-size: .8rem; text-decoration: underline; font-family: inherit;
}
.tv-replay:hover { color: #fff; }

/* ---------- Video + side panel ---------- */
.tour-split {
  display: grid; grid-template-columns: 380px 1fr; gap: 34px;
  align-items: start; max-width: 940px; margin: 0 auto;
}
.tour-split .tour-video { max-width: 380px; margin: 0; }
.tour-side {
  background: #fff; border: 1px solid var(--line); border-radius: 3px;
  padding: 26px 24px; text-align: left;
}
.ts-kicker {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
  color: #fff; background: var(--navy-dark); display: inline-block;
  padding: 6px 11px; border-radius: 2px; margin: 0 0 12px;
}
.ts-title { font-size: 1.3rem; margin: 0 0 6px; }
.ts-sub { color: var(--muted); font-size: .88rem; margin: 0 0 18px; }
.ts-form { display: flex; flex-direction: column; gap: 5px; }
.ts-form label { font-size: .76rem; font-weight: 700; margin-top: 8px; color: var(--ink); }
.ts-form input, .ts-form select {
  padding: 11px; border: 1px solid var(--line); border-radius: 3px; font: inherit; font-size: .9rem;
  background: #fff; color: var(--ink);
}
.ts-form .btn { margin-top: 16px; }
.ts-or { text-align: center; font-size: .82rem; color: var(--muted); margin: 10px 0 0; }
.ts-or a { color: var(--steel-ink); font-weight: 700; }
.ts-jump { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.ts-jump-label {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); font-weight: 700; margin: 0 0 10px;
}
.ts-jump-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.ts-chip {
  border: 1px solid var(--steel); background: #fff; color: var(--steel-ink);
  padding: 8px 14px; border-radius: 2px; cursor: pointer;
  font: inherit; font-size: .78rem; font-weight: 700; letter-spacing: .03em;
}
.ts-chip:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
@media (max-width: 860px) {
  .tour-split { grid-template-columns: 1fr; max-width: 480px; gap: 22px; }
  .tour-split .tour-video { max-width: 100%; margin: 0 auto; }
}

/* ---------- Photo gallery: mosaic collage ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 168px; gap: 16px;
  max-width: 1240px; margin: 0 auto;
}
.gallery-item { overflow: hidden; border-radius: 3px; background: var(--bg-alt); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.gallery-item:hover img { transform: scale(1.04); }

/* Deliberate tiling: the two big tiles anchor each band, the rest fill it
   exactly, so the collage never leaves a hole. */
.gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 12px; }
  .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 3; }
  .gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 2; }
}
@media (max-width: 620px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; gap: 10px; }
  .gallery-item:nth-child(n) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(1) { grid-row: span 3; }
}

/* ---------- Office card: video beside a CTA panel ---------- */

/* Phones: the panel stacks under the clip and the video stops dominating. */
@media (max-width: 780px) {
  
  
  
  
}

/* ---------- Room popup: video beside the actions ---------- */
.rm-split { display: grid; grid-template-columns: 300px 1fr; gap: 26px; align-items: start; margin-bottom: 16px; }
.rm-video { border-radius: 3px; overflow: hidden; background: #000; }
.rm-video video { width: 100%; height: auto; display: block; }
.rm-side { text-align: left; }
.rm-side-kicker {
  display: inline-block; margin: 0 0 10px; padding: 5px 10px; border-radius: 2px;
  font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--navy-dark);
}
.rm-side-title { font-size: 1.2rem; margin: 0 0 8px; }
.rm-side-sub { color: var(--muted); font-size: .88rem; margin: 0 0 18px; }
/* the footer element is moved in here, so restyle it as a stacked column */
.rm-side .rm-foot {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0; border-top: 0; margin: 0;
}
.rm-side .rm-foot .btn { width: 100%; text-align: center; }
@media (max-width: 760px) {
  .rm-split { grid-template-columns: 1fr; gap: 18px; }
  .rm-video { max-width: 260px; margin: 0 auto; }
  .rm-side { text-align: center; }
  .rm-side-kicker { display: block; }
}

/* ---------- Availability bar ---------- */
/* Sits directly above the header, so it uses the same deep navy and is divided
   by a hairline gold rule. Reads as one masthead rather than two stacked bars. */
.topbar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(252, 222, 0, .30);
  color: #b9d0dc;
  font-size: .8rem;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 11px 0;
}
.topbar-msg { margin: 0; display: flex; align-items: baseline; gap: 12px; min-width: 0; }
.topbar-dot {
  flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(252, 222, 0, .16);
  transform: translateY(-1px);
}
.topbar-count {
  color: #fff; font-weight: 700; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .1em; white-space: nowrap;
}
.topbar-more { color: #8fb0c0; }
.topbar-more::before { content: ''; }
.topbar-links { display: flex; align-items: center; gap: 20px; flex: none; }
.topbar-cta {
  color: var(--gold); border: 1px solid rgba(252, 222, 0, .55);
  background: transparent; text-decoration: none;
  padding: 7px 16px; border-radius: 2px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.topbar-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.topbar-tel { display: none; color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap; }
.topbar-tel:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .topbar-more { display: none; }
}
/* On a phone the bar carries the availability line and the number to call, and
   drops the button rather than stacking onto extra rows. */
@media (max-width: 700px) {
  .topbar { font-size: .76rem; }
  .topbar-inner { justify-content: center; gap: 14px; padding: 9px 0; }
  .topbar-msg { justify-content: center; }
  .topbar-count { font-size: .66rem; letter-spacing: .08em; }
  .topbar-cta { display: none; }
  .topbar-tel { display: inline; }
}

/* ---------- Floor plan on phones ---------- */
/* At 390px the plan scaled down to 342px wide, which put room names at 6px and
   the status badges at 4px. Give it a real width and let the strip scroll. */
.fp-scroll-hint { display: none; }
@media (max-width: 720px) {
  .fp-scroll {
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    border-radius: 3px;
  }
  .fp-scroll .fp-svg { min-width: 880px; max-width: none; }
  .fp-scroll-hint {
    display: block; text-align: center; font-size: .74rem; color: var(--muted);
    margin: 0 0 10px; font-style: normal;
  }
}

/* ---------- Diagonal band: blue wedge on phones ---------- */
/* Stacked on a phone the copy sits on top of the wedge, and white type on the
   sand gradient was unreadable. Desktop keeps the sand. */
@media (max-width: 900px) {
  .shape-a {
    background: linear-gradient(150deg, var(--steel-ink), var(--navy-dark));
  }
}

/* The kicker colour should follow the room's status: green only means available. */
.rm-side-kicker-avail  { color: #fff; background: var(--navy-dark); }
.rm-side-kicker-shared { color: #fff; background: var(--steel-ink); }
.rm-side-kicker-leased { color: #5c6577; background: #e7e9ee; }

/* ---------- Expanded photo viewer ---------- */
.pv {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(2, 18, 26, .94);
  display: flex; align-items: center; justify-content: center;
  padding: 56px 72px;
}
.pv-figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; gap: 12px; }
.pv-figure img {
  max-width: 100%; max-height: calc(100vh - 130px);
  object-fit: contain; display: block; margin: 0 auto;
  border-radius: 2px; box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.pv-cap { text-align: center; color: #cfe0e8; font-size: .84rem; display: flex; gap: 12px; justify-content: center; }
.pv-count { color: var(--gold); font-weight: 700; letter-spacing: .06em; }
.pv-close, .pv-nav {
  position: fixed; border: 1px solid rgba(255,255,255,.28); background: rgba(2,45,62,.72);
  color: #fff; cursor: pointer; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.pv-close { top: 14px; right: 14px; width: 46px; height: 46px; font-size: 1.7rem; line-height: 1; }
.pv-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 64px; font-size: 1.1rem; }
.pv-prev { left: 12px; }
.pv-next { right: 12px; }
.pv-close:hover, .pv-nav:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.rm-photos img, 

/* On a phone the controls sit clear of the image and stay thumb-sized. */
@media (max-width: 700px) {
  .pv { padding: 64px 10px 88px; }
  .pv-figure img { max-height: calc(100vh - 170px); }
  .pv-nav { top: auto; bottom: 14px; transform: none; width: 56px; height: 48px; }
  .pv-prev { left: 16px; }
  .pv-next { right: 16px; }
  .pv-close { width: 48px; height: 48px; }
  .pv-cap { font-size: .78rem; flex-direction: column; gap: 4px; }
}

/* ---------- Front page slideshow ---------- */
.slideshow {
  position: relative; max-width: 940px; margin: 0 auto 34px;
  border-radius: 3px; overflow: hidden; background: var(--navy-dark);
  aspect-ratio: 16 / 9;
}
.sl-track { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; }
.sl-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .7s ease;
}
.sl-slide.is-current { opacity: 1; visibility: visible; }
.sl-slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.sl-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 20px 16px; color: #fff; font-size: .88rem; font-weight: 600;
  background: linear-gradient(to top, rgba(2,45,62,.88), rgba(2,45,62,0));
  pointer-events: none;
}
.sl-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 58px; border: 0; cursor: pointer;
  background: rgba(2,45,62,.55); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.sl-prev { left: 0; border-radius: 0 3px 3px 0; }
.sl-next { right: 0; border-radius: 3px 0 0 3px; }
.sl-nav:hover { background: var(--gold); color: var(--navy-dark); }
.sl-dots {
  position: absolute; left: 0; right: 0; bottom: 12px;
  display: flex; justify-content: center; gap: 7px;
}
.sl-dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,.7); background: transparent;
  transition: background .2s ease, transform .2s ease;
}
.sl-dot.is-current { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

@media (max-width: 700px) {
  .slideshow { aspect-ratio: 4 / 3; margin-bottom: 24px; border-radius: 2px; }
  .sl-cap { font-size: .8rem; padding: 38px 14px 26px; }
  /* thumb-sized controls, and dots lifted clear of the caption */
  .sl-nav { width: 48px; height: 52px; }
  .sl-dots { bottom: 8px; gap: 9px; }
  .sl-dot { width: 11px; height: 11px; }
}

/* ---------- Availability rows ---------- */
/* Each row is one link to that office's page, so the whole row is the target. */

@media (max-width: 620px) {
  
  
  /* the arrow drops under the detail rather than squeezing the name */
  
}

/* ---------- Expanded photo viewer ---------- */
.pv {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(2, 18, 26, .94);
  display: flex; align-items: center; justify-content: center;
  padding: 56px 72px;
}
.pv-figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; gap: 12px; }
.pv-figure img {
  max-width: 100%; max-height: calc(100vh - 130px);
  object-fit: contain; display: block; margin: 0 auto;
  border-radius: 2px; box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.pv-cap { text-align: center; color: #cfe0e8; font-size: .84rem; display: flex; gap: 12px; justify-content: center; }
.pv-count { color: var(--gold); font-weight: 700; letter-spacing: .06em; }
.pv-close, .pv-nav {
  position: fixed; border: 1px solid rgba(255,255,255,.28); background: rgba(2,45,62,.72);
  color: #fff; cursor: pointer; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.pv-close { top: 14px; right: 14px; width: 46px; height: 46px; font-size: 1.7rem; line-height: 1; }
.pv-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 64px; font-size: 1.1rem; }
.pv-prev { left: 12px; }
.pv-next { right: 12px; }
.pv-close:hover, .pv-nav:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.rm-photos img, 

/* On a phone the controls sit clear of the image and stay thumb-sized. */
@media (max-width: 700px) {
  .pv { padding: 64px 10px 88px; }
  .pv-figure img { max-height: calc(100vh - 170px); }
  .pv-nav { top: auto; bottom: 14px; transform: none; width: 56px; height: 48px; }
  .pv-prev { left: 16px; }
  .pv-next { right: 16px; }
  .pv-close { width: 48px; height: 48px; }
  .pv-cap { font-size: .78rem; flex-direction: column; gap: 4px; }
}

/* ---------- Front page slideshow ---------- */
.slideshow {
  position: relative; max-width: 940px; margin: 0 auto 34px;
  border-radius: 3px; overflow: hidden; background: var(--navy-dark);
  aspect-ratio: 16 / 9;
}
.sl-track { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; }
.sl-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .7s ease;
}
.sl-slide.is-current { opacity: 1; visibility: visible; }
.sl-slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.sl-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 20px 16px; color: #fff; font-size: .88rem; font-weight: 600;
  background: linear-gradient(to top, rgba(2,45,62,.88), rgba(2,45,62,0));
  pointer-events: none;
}
.sl-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 58px; border: 0; cursor: pointer;
  background: rgba(2,45,62,.55); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.sl-prev { left: 0; border-radius: 0 3px 3px 0; }
.sl-next { right: 0; border-radius: 3px 0 0 3px; }
.sl-nav:hover { background: var(--gold); color: var(--navy-dark); }
.sl-dots {
  position: absolute; left: 0; right: 0; bottom: 12px;
  display: flex; justify-content: center; gap: 7px;
}
.sl-dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,.7); background: transparent;
  transition: background .2s ease, transform .2s ease;
}
.sl-dot.is-current { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

@media (max-width: 700px) {
  .slideshow { aspect-ratio: 4 / 3; margin-bottom: 24px; border-radius: 2px; }
  .sl-cap { font-size: .8rem; padding: 38px 14px 26px; }
  /* thumb-sized controls, and dots lifted clear of the caption */
  .sl-nav { width: 48px; height: 52px; }
  .sl-dots { bottom: 8px; gap: 9px; }
  .sl-dot { width: 11px; height: 11px; }
}

/* ---------- Availability rows ---------- */
/* Each row is one link to that office's page, so the whole row is the target. */

@media (max-width: 620px) {
  
  
  /* the arrow drops under the detail rather than squeezing the name */
  
}

/* ---------- Available offices: photo cards ---------- */
.av-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
.av-card {
  background: #fff; border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden; transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.av-card:hover { border-color: var(--steel); box-shadow: 0 14px 34px rgba(2,45,62,.14); transform: translateY(-3px); }
.av-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.av-photo { position: relative; display: block; overflow: hidden; background: var(--bg-alt); }
.av-photo img {
  /* height:auto is required, otherwise the height="900" attribute becomes a CSS
     height and aspect-ratio is ignored. */
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.av-card:hover .av-photo img { transform: scale(1.05); }
.av-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy-dark); color: #fff;
  font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 2px;
}
.av-body { display: flex; flex-direction: column; padding: 20px 20px 22px; flex: 1; }
.av-name {
  font-family: 'Manrope','Inter',sans-serif; font-weight: 800; font-size: 1.2rem;
  letter-spacing: -.02em; margin-bottom: 6px;
}
.av-spec { font-size: .86rem; color: var(--muted); }
.av-rate {
  font-size: .95rem; font-weight: 700; color: var(--steel-ink);
  margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--line);
}
/* pinned to the bottom so the buttons line up across cards of unequal text */
.av-btn {
  margin-top: auto; padding-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy-dark); font-weight: 700;
  font-size: .7rem; letter-spacing: .09em; text-transform: uppercase;
}
.av-btn span { transition: transform .2s ease; }
.av-card:hover .av-btn { color: var(--steel-ink); }
.av-card:hover .av-btn span { transform: translateX(4px); }

@media (max-width: 1000px) {
  .av-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 700px; }
}
@media (max-width: 640px) {
  .av-grid { grid-template-columns: 1fr; gap: 16px; max-width: 420px; }
  .av-body { padding: 16px 16px 18px; }
  .av-name { font-size: 1.1rem; }
}

/* ---------- Availability rows ---------- */
.av-grid { display: flex; flex-direction: column; gap: 14px; max-width: 880px; margin: 0 auto; }
.av-card {
  background: #fff; border: 1px solid var(--line); border-radius: 3px; overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.av-card:hover { border-color: var(--steel); box-shadow: 0 6px 24px rgba(2,45,62,.10); }
/* the whole row is one link to that office's page */
.av-head {
  display: grid; grid-template-columns: 112px 1fr auto;
  align-items: center; gap: 18px; padding: 16px 18px;
  text-decoration: none; color: inherit;
}
.av-thumb { width: 112px; height: 84px; object-fit: cover; border-radius: 2px; display: block; }
.av-meta { display: flex; flex-direction: column; gap: 3px; }
.av-name {
  font-family: 'Manrope','Inter',sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em;
}
.av-dims { font-size: .84rem; color: var(--muted); }
.av-rate { font-size: .84rem; font-weight: 700; color: var(--steel-ink); }
.av-go {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--steel-ink); font-weight: 700;
  font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap;
}
.av-card:hover .av-go { color: var(--navy-dark); }
.av-go span { transition: transform .2s ease; }
.av-card:hover .av-go span { transform: translateX(3px); }

@media (max-width: 620px) {
  .av-head { grid-template-columns: 84px 1fr; gap: 12px; padding: 14px; }
  .av-thumb { width: 84px; height: 64px; }
  .av-go { grid-column: 1 / -1; justify-content: flex-start; padding-top: 2px; }
}
