/* ══════════════════════════════════════════════════════
   OFFICE DETAIL PAGES
   ══════════════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-top: 72px;
}

.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb-bar a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb-bar a:hover { color: var(--burgundy); }
.breadcrumb-bar span:last-child { color: var(--text); font-weight: 500; }

/* Gallery */
.office-hero {
  background: var(--cream);
  padding: 40px 0 0;
}

.office-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-main {
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  background: #c8b8a2;
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
}

.thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.thumb:hover { opacity: 0.85; }
.thumb.active { opacity: 1; border-color: var(--burgundy); }

/* Layout */
.office-content { background: var(--white); padding-top: 56px; }

.office-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

/* Main col */
.office-meta-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

.office-main-col h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 6px;
}

.office-tagline {
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.office-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
}

.amenities-title {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.amenity-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.amenity-icon {
  width: 40px;
  height: 40px;
  background: rgba(100, 0, 23, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.amenity-item h4 { font-size: 0.9rem; margin-bottom: 3px; }
.amenity-item p  { font-size: 0.82rem; }

/* Sidebar */
.office-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.sidebar-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0;
}

.sidebar-desks {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.sidebar-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.btn-outline-burg {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-outline-burg:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-1px);
}

.sidebar-quick {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 4px;
}

.sidebar-quick li {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* Other offices */
.other-offices {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
}

.other-office-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.other-office-link:last-child { border-bottom: none; }
.other-office-link:hover { color: var(--burgundy); }
.other-office-link span { color: var(--burgundy); font-size: 0.82rem; font-weight: 600; }

/* Responsive */
@media (max-width: 1024px) {
  .office-layout { grid-template-columns: 1fr; }
  .office-sidebar { position: static; }
  .gallery-main { height: 380px; }
}

@media (max-width: 640px) {
  .gallery-main { height: 260px; }
  .gallery-thumbs { overflow-x: auto; }
  .amenities-grid { grid-template-columns: 1fr; }
}
