/*
Theme Name: FOMO Workspace
Theme URI: https://fomo.no
Author: FOMO
Description: Custom theme for FOMO - Rogaland's most ambitious workspace ecosystem
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fomo
*/

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  /* Colors */
  --fomo-black: #111111;
  --fomo-dark: #141414;
  --fomo-dark-alt: #0a0a0a;
  --fomo-white: #ffffff;
  --fomo-cream: #f9f4e8;
  --fomo-cream-50: rgba(249, 244, 232, 0.5);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --container-padding: 90px;
  --nav-height: 104px;

  /* Layout */
  --site-width: 1440px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #000000;
  background-image: url(assets/images/ambitious-companies-bg.png);
  background-size: 100% 100%;
  background-attachment: fixed;
  font-family: var(--font-body);
  color: #000000;
  background: var(--fomo-dark);
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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


/* ====== MOVED TO home.css — START (lines 83–467) ====== */
/* ========================================
   LANDING PAGE HERO
   ======================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Hero Content - Left Column */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 576px;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 79px;
  line-height: 1.1;
  color: var(--fomo-white);
}

/* Fun Fact / Social Proof */
.fun-fact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  position: relative;
}

.avatar-stack .avatar {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 3px solid var(--fomo-dark-alt);
  object-fit: cover;
  position: relative;
  box-shadow: -1px 1px 1px 0px rgba(20, 20, 20, 0.1);
}

.avatar-stack .avatar:nth-child(2) {
  margin-left: -30px;
}

.avatar-stack .avatar:nth-child(3) {
  margin-left: -30px;
}

.avatar-stack .avatar-plus {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 3px solid var(--fomo-dark-alt);
  background: var(--fomo-dark);
  margin-left: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-stack .avatar-plus svg {
  width: 14px;
  height: 14px;
  fill: var(--fomo-cream);
}

.fun-fact-text {
  color: var(--fomo-cream);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.16px;
}

.fun-fact-text .count {
  font-family: var(--font-body);
  font-weight: 700;
  display: block;
}

.fun-fact-text .label {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fomo-cream-50);
  display: block;
}

/* Hero Right Column */
.hero-right {
  position: absolute;
  right: var(--container-padding);
  bottom: 100px;
  width: 407px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.hero-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: var(--fomo-white);
  text-align: right;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--fomo-white);
  color: var(--fomo-black);
  border: 2px solid var(--fomo-white);
  width: 210px;
}

.btn-primary:hover {
  background: transparent;
  color: var(--fomo-white);
}

.btn-outline {
  background: transparent;
  color: var(--fomo-white);
  border: 0.8px solid var(--fomo-white);
  width: 195px;
}

.btn-outline:hover {
  background: var(--fomo-white);
  color: var(--fomo-black);
}




/* ========================================
   RESPONSIVE — COMPANIES
   ======================================== */
@media (max-width: 960px) {
  .companies-heading .heading-light,
  .companies-heading .heading-bold {
    font-size: 42px;
  }

  .companies-body {
  background-color: #f0ebe0;
  background-image: url(assets/images/ambitious-companies-bg.png);
  background-size: 100% 100%;
  background-attachment: fixed;
    padding: 100px var(--container-padding) 120px;
  }

  .leaf-left { left: -60px; width: 280px; }
  .leaf-right { right: -60px; width: 240px; }

  .logo-item {
    padding: 0 40px;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .companies-heading .heading-light,
  .companies-heading .heading-bold {
    font-size: 30px;
  }

  .companies-description {
    font-size: 16px;
  }

  .companies-body {
  background-color: #f0ebe0;
  background-image: url(assets/images/ambitious-companies-bg.png);
  background-size: 100% 100%;
  background-attachment: fixed;
    padding: 80px var(--container-padding) 100px;
  }

  .leaf-left { left: -120px; width: 220px; }
  .leaf-right { right: -120px; width: 180px; }

  .logo-item {
    padding: 0 28px;
    font-size: 16px;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  :root {
    --container-padding: 48px;
  }

  .hero-heading {
    font-size: 56px;
  }

  .hero-left {
    width: 480px;
  }

  .hero-right {
    width: 360px;
  }
}

@media (max-width: 960px) {
  :root {
    --container-padding: 32px;
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-left {
    width: 100%;
  }

  .hero-right {
    position: relative;
    right: unset;
    bottom: unset;
    width: 100%;
    align-items: flex-start;
  }

  .hero-description {
    text-align: left;
  }

  .hero-heading {
    font-size: 48px;
  }

  /* Nav responsive — handled in mobile menu section below */
}

@media (max-width: 600px) {
  :root {
    --container-padding: 20px;
  }

  .hero-heading {
    font-size: 38px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-outline,
  .sling-btn  {
    width: 100%;
  }

  .site-logo {
    width: 120px;
    height: 60px;
  }

  .site-logo .logo-text {
    width: 80px;
    height: 22px;
  }

  .site-logo .logo-icon {
    width: 48px;
    height: 27px;
    right: -4px;
    top: 14px;
  }
}

/* ====== MOVED TO home.css — END ====== */
/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  position: relative;
  background: #1a1a1a;
  color: #fff;
  padding: 140px 0 0;
}

/* Overlapping logo */
.footer-logo-overlap {
  position: absolute;
  top: -60px;
  left: var(--container-padding);
  z-index: 10;
  line-height: 0;
}

.footer-logo-overlap img {
  width: 320px;
  height: auto;
  display: block;
}

.footer-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Nav links */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-col a:hover {
  color: #fff;
}

/* Middle: address + social */
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-address strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-address p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom span,
.footer-bottom a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .footer-logo-overlap img {
    width: 240px;
  }
}

@media (max-width: 600px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-logo-overlap img {
    width: 180px;
  }
  .site-footer {
    padding: 100px 0 0;
  }
}


/* ========================================
   BLANK PAGE TEMPLATE
   ======================================== */
.fomo-blank-page {
  width: 100%;
}

.fomo-blank-page .wp-block-html {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* ====== MOVED TO private-offices.css — START (lines 1680–3017) ====== */
/* ========================================
   PRIVATE OFFICES -- HERO
   ======================================== */
.offices-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
}

.offices-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.offices-hero-bg img,
.offices-hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.offices-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.offices-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.offices-hero-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 1.05;
  color: var(--fomo-white);
  margin-bottom: 24px;
  text-align: center;
}

.offices-hero-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 36px;
  text-align: center;
}

.offices-hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.offices-hero-cta .btn-primary,
.offices-hero-cta .btn-outline {
  width: 220px;
  padding: 14px 40px;
  font-size: 15px;
}

/* Stats Bar */
.offices-stats-bar {
  position: relative;
  z-index: 10;
  display: flex;
  width: 80%;
  max-width: 960px;
  margin: 0 auto -60px auto;
  background-color: #f0ebe0;
  background-image: url(assets/images/ambitious-companies-bg.png);
  background-size: 100% 100%;
  background-position: center;
}

.offices-stat {
  flex: 1;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(20, 20, 20, 0.1);
}

.offices-stat:last-child {
  border-right: none;
}

.offices-stat-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -1px;
}

.offices-stat-plus {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: #1a1a1a;
  vertical-align: super;
}

.offices-stat-unit {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  vertical-align: baseline;
  letter-spacing: 2px;
  color: #1a1a1a;
}

.offices-stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 960px) {
  .offices-hero-heading {
    font-size: 52px;
  }
  .offices-stats-bar {
    width: 95%;
    flex-direction: column;
  }
  .offices-stat {
    border-right: none;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
    padding: 24px 30px;
  }
  .offices-stat:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .offices-hero-heading {
    font-size: 38px;
  }
  .offices-hero-description {
    font-size: 16px;
  }
  .offices-hero-cta {
    flex-direction: column;
  }
  .offices-hero-cta .btn-primary,
  .offices-hero-cta .btn-outline {
    width: 100%;
  }
  .offices-stat-number {
    font-size: 36px;
  }
  .offices-hero {
    min-height: 700px;
  }
}

/* ========================================
   PRIVATE OFFICES -- FEATURES GRID
   ======================================== */
.offices-features {
  position: relative;
  background: #ffffff;
  padding: 120px 0 120px;
  overflow: hidden;
}

.of-leaf-left {
  position: absolute;
  top: -20px;
  left: 0;
  width: 280px;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.of-leaf-right {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 260px;
  height: auto;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.of-flamingo {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 140px;
  height: auto;
  z-index: 1;
}

.of-inner {
  position: relative;
  z-index: 2;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.of-header {
  text-align: center;
  margin-bottom: 80px;
}

.of-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.of-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.55);
  max-width: 580px;
  margin: 0 auto;
}

.of-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 50px;
}

.of-card {
  cursor: pointer;
  padding: 20px;
  border-radius: 4px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.of-card:hover {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.of-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: grayscale(0.5) opacity(0.5);
}

.of-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.of-card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20, 20, 20, 0.55);
}

/* Card wrapper for inline popup positioning */
.of-card-wrap {
  position: relative;
}

/* Inline popup - positioned beside the card */
.of-popup {
  display: none;
  position: absolute;
  top: 0;
  z-index: 20;
  background: #fff;
  padding: 32px 36px;
  width: 380px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Palm leaves background in popup */
.of-popup::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background-image: url(assets/images/plant-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.of-popup > * {
  position: relative;
  z-index: 1;
}

/* Default: open to the right */
.of-popup {
  left: calc(100% + 16px);
}

/* Cards in right column: open to the left */
.of-card-wrap:nth-child(3n) .of-popup {
  left: auto;
  right: calc(100% + 16px);
}

/* Cards in middle column: open to the right */
.of-card-wrap:nth-child(3n+2) .of-popup {
  left: calc(100% + 16px);
  right: auto;
}

.of-popup.active {
  display: block;
}

.of-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #1a1a1a;
  line-height: 1;
  padding: 4px;
}

.of-popup-close:hover {
  color: #666;
}

.of-popup p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.of-popup ul {
  list-style: disc;
  padding-left: 20px;
  margin: 14px 0 0;
}

.of-popup ul li {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.9;
  color: #1a1a1a;
}

@media (max-width: 960px) {
  .of-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  .of-title {
    font-size: 40px;
  }
  .of-flamingo {
    width: 100px;
  }
}

@media (max-width: 600px) {
  .of-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .of-title {
    font-size: 32px;
  }
  .offices-features {
    padding: 60px 0 80px;
  }
  .of-flamingo {
    display: none;
  }
}

.of-card.active {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 960px) {
  .of-popup {
    width: 340px;
  }
}

@media (max-width: 600px) {
  .of-popup {
    position: fixed;
    top: 50%;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    width: 90vw;
    z-index: 100;
  }
}



/* ========================================
   PRIVATE OFFICES -- SHOWCASE / CAROUSEL
   ======================================== */
.offices-showcase {
  position: relative;
  background: #ffffff;
}

.showcase-paper {
  position: relative;
  width: 100%;
}

/* The paper background image defines the section height */
.showcase-paper > img {
  display: block;
  width: 100%;
  height: auto;
  visibility: hidden;
}

/* Content overlay fills the paper image area */
.showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(assets/images/showcase-paper-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.showcase-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--container-padding) 0;
  margin-bottom: 60px;
}

.showcase-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.showcase-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.55);
  max-width: 560px;
  margin: 0 auto 28px;
}

.showcase-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Carousel at the bottom of the paper section */
.showcase-carousel-wrap {
  overflow: hidden;
  width: 100%;
  padding: 0;
}

.showcase-carousel {
  display: flex;
  gap: 20px;
  animation: showcaseScroll 40s linear infinite;
}

@keyframes showcaseScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.showcase-carousel:hover {
  animation-play-state: paused;
}

.showcase-slide {
  position: relative;
  flex: 0 0 380px;
  height: 260px;
  overflow: hidden;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.showcase-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.showcase-logo {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.5px;
}

.logo-item img {
  height: 36px;
  width: auto;
  display: block;
}


/* Bottom torn edge */
.showcase-torn-bottom {
  position: relative;
  z-index: 2;
  line-height: 0;
  background: #ffffff;
  margin-bottom: -1px;
}

.showcase-torn-bottom img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .showcase-title { font-size: 40px; }
  .showcase-slide { flex: 0 0 300px; height: 200px; }
}

@media (max-width: 600px) {
  .showcase-title { font-size: 30px; }
  .showcase-slide { flex: 0 0 260px; height: 170px; }
  .showcase-buttons { flex-direction: column; }
  .showcase-text { padding: 40px 20px 20px; }
}

/* ========================================
   PRIVATE OFFICES -- CAMPUS EXPLORER
   ======================================== */
.offices-campus {
  position: relative;
  background: #fff;
  overflow-x: clip;
  margin-top: 0;
}

.campus-header {
  text-align: center;
  padding: 60px var(--container-padding) 30px;
  max-width: var(--site-width);
  margin: 0 auto;
  background: #fff;
}

.campus-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.campus-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.55);
  max-width: 540px;
  margin: 0 auto;
}

/* Aerial map */
.campus-map {
  position: relative;
  width: 100%;
  line-height: 0;
}

.campus-map > img {
  width: 100%;
  height: auto;
  display: block;
}

.campus-label {
  position: absolute;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  z-index: 2;
}

.campus-label:hover {
  background: #333;
  transform: translateY(-2px);
}

.campus-label.active {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Detail cards */
.campus-details {
  max-width: 1060px;
  margin: -140px auto 0;
  z-index: 3;
  padding: 0 var(--container-padding) 40px;
  padding-bottom:80px;
}

.campus-detail {
  display: none;
  background: rgba(240, 235, 224, 0.95);
  backdrop-filter: blur(10px);
  overflow: hidden;
  opacity: 0;
  transform: translateX(var(--slide-in, 100vw));
}

.campus-detail.active {
  display: flex;
  animation: campusSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.campus-detail.sliding-out {
  display: flex;
  animation: campusSlideOut 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

@keyframes campusSlideIn {
  0% { opacity: 0; transform: translateX(var(--slide-in, 100vw)); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes campusSlideOut {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(var(--slide-out, -100vw)); }
}

.campus-detail-img {
  flex: 0 0 280px;
  overflow: hidden;
}

.campus-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campus-detail-info {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
}

.campus-detail-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.campus-detail-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20, 20, 20, 0.6);
  margin-bottom: 16px;
}

.campus-detail-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: inline-block;
}

.campus-detail-link:hover {
  text-decoration: underline;
}

.campus-detail-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 400;

  font-size: 14px;
  color: rgba(20, 20, 20, 0.5);
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  padding-top: 16px;
  margin-top: auto;
}

@media (max-width: 960px) {
  .campus-title { font-size: 40px; }
  .campus-detail { flex-direction: column; }
  .campus-detail-img { flex: none; height: 200px; }
  .campus-details { max-width: 90%; }
}

@media (max-width: 600px) {
  .campus-title { font-size: 32px; }
  .campus-label { font-size: 10px; padding: 6px 12px; }
  .campus-detail-name { font-size: 24px; }
  .campus-detail-tags { flex-wrap: wrap; }
}a

/* ========================================
   PRIVATE OFFICES -- WORKPLACE ECOSYSTEM
   ======================================== */
.offices-ecosystem {
  position: relative;
  background: #ffffff;
  padding: 100px 0 120px;
  overflow: hidden;
}

.eco-flamingo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 140px;
  height: auto;
  z-index: 1;
}

.eco-inner {
  position: relative;
  z-index: 2;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Stacked images */
.eco-images {
  position: relative;
  flex: 0 0 48%;
  min-height: 560px;
}

.eco-img-back {
  position: absolute;
  top: 0;
  left: -40px;
  width: 80%;
  transform: rotate(-5deg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 1;
  background: #fff;
  padding: 8px;
}

.eco-img-back img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.eco-img-front {
  position: absolute;
  top: 30px;
  left: 60px;
  width: 90%;
  transform: rotate(2deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
  background: #fff;
  padding: 8px;
}

.eco-img-front img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Content */
.eco-content {
  flex: 1;
}

.eco-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.eco-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.55);
  margin-bottom: 20px;
}

.eco-text strong em {
  color: #1a1a1a;
}

/* Transport stats */
.eco-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.eco-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: #1a1a1a;
}

.eco-stat-icon {
  font-size: 18px;
  opacity: 0.6;
}

.eco-stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(20, 20, 20, 0.2);
}

@media (max-width: 960px) {
  .eco-inner {
    flex-direction: column;
    gap: 60px;
  }
  .eco-images {
    flex: none;
    width: 100%;
    min-height: 400px;
  }
  .eco-title {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .eco-images {
    min-height: 300px;
  }
  .eco-title {
    font-size: 30px;
  }
  .eco-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .eco-stat-divider {
    display: none;
  }
  .offices-ecosystem {
    padding: 60px 0 80px;
  }
  .eco-flamingo {
    display: none;
  }
}

/* ========================================
   PRIVATE OFFICES -- TRUST SECTION
   ======================================== */
.offices-trust {
  position: relative;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.trust-leaf-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 300px;
  height: auto;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.trust-leaf-right {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 280px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.trust-marquee-top {
  border-bottom: none;
  padding: 30px 0;
}

.trust-marquee-bottom {
  border-bottom: none;
  padding: 30px 0;
}

.trust-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px var(--container-padding);
  max-width: 700px;
  margin: 0 auto;
}

.trust-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.trust-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.55);
}

@media (max-width: 960px) {
  .trust-title { font-size: 40px; }
  .trust-leaf-left { width: 200px; }
  .trust-leaf-right { width: 180px; }
}

@media (max-width: 600px) {
  .trust-title { font-size: 32px; }
  .trust-content { padding: 50px var(--container-padding); }
  .trust-leaf-left, .trust-leaf-right { display: none; }
}



/* ========================================
   PRIVATE OFFICES -- WORKSPACE CTA
   ======================================== */
.offices-workspace-cta {
  position: relative;
  /* background-color: white; */
}

.ws-main {
  position: relative;
  width: 100%;
  z-index: 13;
}

.ws-bg-img {
  display: block;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.ws-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(assets/images/offices-cta-frame.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.ws-card {
  position: relative;
  z-index: 2;
  width: 620px;
  max-width: 85%;
  background: #ffffff;
  padding: 45px 55px 40px;
  text-align: center;
  overflow: hidden;
}

.ws-card .companies-texture {
  border-radius: 0;
}

.ws-leaf {
  position: absolute;
  top: -30px;
  left: -20px;
  width: 200px;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.ws-flamingo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 90px;
  height: auto;
  z-index: 0;
}

.ws-card-inner {
  position: relative;
  z-index: 1;
}

.ws-badge {
  display: inline-block;
  background: #c5a74e;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 18px;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.ws-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.ws-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20, 20, 20, 0.6);
  max-width: 440px;
  margin: 0 auto 28px;
}

.ws-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.ws-buttons .cta-btn {
  width: 200px;
}

@media (max-width: 960px) {
  .ws-card { padding: 40px 36px 35px; }
  .ws-title { font-size: 34px; }
}

@media (max-width: 600px) {
  .ws-card { padding: 32px 24px 28px; }
  .ws-title { font-size: 28px; }
  .ws-buttons { flex-direction: column; }
  .ws-buttons .cta-btn { width: 100%; }
  .ws-leaf { width: 140px; }
  .ws-flamingo { width: 60px; }
}

/* ========================================
   PRIVATE OFFICES -- FOMO DESIGN
   ======================================== */
.offices-design {
  position: relative;
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
  transition: background-color 0.6s ease;
}

.offices-design:hover {
  background-color: #f5d5d0;
}

/* Leaves SVG - hidden above, flush with top on hover */
.dl {
  position: absolute;
  top: 0;
  width: 65%;
  height: auto;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.dl-left {
  left: -5%;
}

.dl-right {
  right: -5%;
  transform: translateY(-100%) scaleX(-1);
}

.offices-design:hover .dl-left {
  opacity: 1;
  transform: translateY(0);
}

.offices-design:hover .dl-right {
  opacity: 1;
  transform: translateY(0) scaleX(-1);
}

.design-inner {
  position: relative;
  z-index: 2;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Media (image + video overlay) */
.design-media {
  position: relative;
  flex: 0 0 45%;
  overflow: hidden;
}

.design-img-default {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.6s ease, opacity 0.6s ease;
}

.offices-design:hover .design-img-default {
  filter: grayscale(1) brightness(0.4);
}

.design-video-overlay {
  position: absolute;
  inset: 10%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.offices-design:hover .design-video-overlay {
  opacity: 1;
}

.design-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.design-content {
  flex: 1;
}

.design-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.design-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.55);
  margin-bottom: 32px;
}

.design-buttons {
  display: flex;
  gap: 12px;
}

.design-buttons .cta-btn {
  width: 220px;
}

@media (max-width: 960px) {
  .design-inner {
    flex-direction: column;
    gap: 40px;
  }
  .design-media { flex: none; width: 100%; }
  .design-title { font-size: 38px; }
}

@media (max-width: 600px) {
  .design-title { font-size: 30px; }
  .design-buttons { flex-direction: column; }
  .design-buttons .cta-btn { width: 100%; }
  .offices-design { padding: 60px 0; }
  .design-leaf-left, .design-leaf-right { display: none; }
}

/* ====== MOVED TO private-offices.css — END ====== */
/* ========================================
   HEADER NAV -- UPDATED WITH DROPDOWNS
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: linear-gradient(to bottom, rgba(0,0,0,var(--header-bg-opacity, 0.4)), transparent);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background 0.3s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (max-width:960px){
  .main-nav{
      position: relative;
  }
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}



.logo-img {
  height: 36px;
  width: auto;
}

.nav-link {
  /* display: inline-flex;
  align-items: center; */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--fomo-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-arrow {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/* Dropdown container */
.nav-dropdown {
  position: relative;
  /* display: flex;
  align-items: center; */
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  margin-top: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(-90deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile toggle button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  margin-right:auto;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.site-header.menu-open .mobile-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .mobile-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Mobile menu panel ---- */
@media (max-width: 960px) {
  .mobile-toggle {
    display: flex;
    position: absolute;
    top: 36px;
    left: 40px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  /* Expand header to full viewport when menu is open */
  .site-header.menu-open {
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .site-header.menu-open .main-nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 100%;
    max-width: none;
    padding: var(--nav-height) 40px 40px;
    overflow-y: auto;
  }

  .site-header.menu-open .nav-left,
  .site-header.menu-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  /* Logo stays pinned at top center */
  .site-header.menu-open .nav-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: var(--nav-height);
    display: flex;
    align-items: center;
  }
  .nav-center{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Close button pinned top-left — same position as closed state */

  /* Links inside mobile menu */
  .site-header.menu-open .nav-link {
    font-size: 16px;
    letter-spacing: 1.5px;
    padding: 14px 0;
    display: block;
    text-align: center;
  }

  /* Dropdown: override hover, use click (toggled via JS) */
  .site-header.menu-open .nav-dropdown-menu {
    position: static;
    min-width: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-header.menu-open .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
  }

  .site-header.menu-open .nav-dropdown.open .nav-arrow {
    transform: rotate(-90deg);
  }

  .site-header.menu-open .nav-dropdown-menu a {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
  }

  .site-header.menu-open .nav-dropdown-menu a:hover {
    background: none;
    color: #fff;
  }

  /* Divider between left and right sections */
  .site-header.menu-open .nav-right {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    margin-top: 8px;
  }

  /* Body scroll lock */
  body.menu-open {
    overflow: hidden;
  }
}


/* ========================================
   MARQUEE BASE STYLES
   ======================================== */
.marquee-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 30px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

/* Animations are driven by JS (main.js) for pixel-perfect seamless looping.
   These keyframes remain as a CSS-only fallback if JS fails to load. */
.marquee-left {
  animation: marqueeLeft 30s linear infinite;
}

.marquee-right {
  animation: marqueeRight 30s linear infinite;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-logos {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}

.logo-item {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--fomo-dark);
  white-space: nowrap;
  letter-spacing: 0.5px;
}


/* ========================================
   COMPANIES SECTION
   ======================================== */
.companies-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 0;
}

.companies-texture-bg {
  position: absolute;
  inset: 0;
  background-image: url(assets/images/ambitious-bg-tear.png);
  background-size: 100% 100%;
  background-position: center;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.companies-middle {
  position: relative;
  overflow: hidden;
}

.companies-leaf-left {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.companies-leaf-right {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.companies-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px var(--container-padding);
  max-width: 800px;
  margin: 0 auto;
}

.companies-heading {
  font-family: var(--font-display);
  margin-bottom: 24px;
}

.companies-heading-light {
  font-weight: 400;
  font-size: 52px;
  line-height: 1.15;
  color: rgba(20, 20, 20, 0.25);

}

.companies-heading-bold {
  font-weight: 400;
  font-size: 52px;
  line-height: 1.15;
  color: #1a1a1a;
}

.companies-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.55);
  max-width: 600px;
  margin: 0 auto;
}

.torn-edge {
  position: relative;
  line-height: 0;
  /* margin-bottom: -2px; */
}

.torn-edge img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: cover;
  object-position: bottom;
}

@media (max-width: 960px) {
  .companies-heading-light,
  .companies-heading-bold {
    font-size: 40px;
  }
  .companies-leaf-left { width: 180px; }
  .companies-leaf-right { width: 160px; }
}

@media (max-width: 600px) {
  .companies-heading-light,
  .companies-heading-bold {
    font-size: 32px;
  }
  .companies-content {
    padding: 50px var(--container-padding);
  }
  .companies-leaf-left,
  .companies-leaf-right {
    display: none;
  }
}

/* ====== MOVED TO home.css — START (lines 3337–4309) ====== */
/* ========================================
   HOME -- ECOSYSTEM GRID
   ======================================== */
.home-ecosystem {
  position: relative;
  background-color: #ffffff;
  padding: 80px 0 100px;
}

.home-eco-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--container-padding) 50px;
}

.home-eco-grid {
  position: relative;
  z-index: 1;
}

.home-eco-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.home-eco-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.55);
  max-width: 480px;
  margin: 0 auto;
}

.home-eco-flamingo {
  position: absolute;
  top: 0;
  right: var(--container-padding);
  width: 80px;
  height: auto;
}

/* Grid */
.home-eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Card */
.home-eco-card {
  cursor: pointer;
  background: #ffffff;
  color: #1a1a1a;
}

/* Media container */
.home-eco-media {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-bottom: 0;
}

.home-eco-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-eco-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  transform: translate(-50%, -50%) scale(0.85);
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Hover state */
.home-eco-card:hover .home-eco-img {
  filter: grayscale(1) brightness(0.3);
}

.home-eco-card:hover .home-eco-video {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home-eco-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 4px;
  padding: 16px 20px 0;
}

.home-eco-card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(20, 20, 20, 0.5);
  padding: 0 20px 30px;
}

@media (max-width: 960px) {
  .home-eco-media { height: 280px; }
  .home-eco-title { font-size: 38px; }
}

@media (max-width: 600px) {
  .home-eco-grid { grid-template-columns: 1fr; gap: 30px; }
  .home-eco-media { height: 240px; }
  .home-eco-title { font-size: 30px; }
  .home-ecosystem { padding: 60px 0 80px; }
}

/* ========================================
   HOME -- FOMO REPRESENTS
   ======================================== */
.home-represents {
  position: relative;
  background: #FEE7E7;
  padding: 100px 0 0;
  overflow: hidden;
}

.home-represents .companies-texture-bg {
  opacity: 1;
}

.represents-inner {
  position: relative;
  z-index: 2;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.represents-top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.represents-text {
  flex: 1;
}

.represents-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.15;
  color: #1a1a1a;
}

/* Portrait with pink background and leaves */
.represents-portrait {
  position: relative;
  flex: 0 0 340px;
  height: 400px;
  overflow: visible;
}

.represents-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  background: #f0c4be;
}

.represents-portrait-leaves {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* Stats */
.represents-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 60px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: rgba(20, 20, 20, 0.55);
}

.represents-stat-divider {
  width: 1px;
  height: 22px;
  background: rgba(20, 20, 20, 0.2);
  flex-shrink: 0;
}

/* Carousel */
.represents-carousel-wrap {
  overflow: hidden;
  width: 100%;
}

.represents-carousel {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: representsScroll 30s linear infinite;
}

@keyframes representsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.represents-slide {
  flex: 0 0 calc(33.333vw - 11px);
  height: 340px;
  overflow: hidden;
}

.represents-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .represents-top { flex-direction: column; gap: 40px; }
  .represents-portrait { flex: none; width: 100%; height: 350px; }
  .represents-heading { font-size: 40px; }
  .represents-slide { flex: 0 0 calc(50vw - 8px); height: 280px; }
  .represents-stats { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .represents-heading { font-size: 30px; }
  .represents-slide { flex: 0 0 80vw; height: 240px; }
  .home-represents { padding: 60px 0 0; }
  .represents-stats { font-size: 14px; }
}

/* ========================================
   HOME -- LOCATIONS
   ======================================== */
.home-locations {
  position: relative;
  background-color: #f0ebe0;
  background-image: url(assets/images/locations-bg.jpg);
  background-size: 100% 100%;
  background-position: center;
  padding: 100px 0 120px;
  overflow: hidden;
}
.home-locations .companies-texture-bg {
  display: none;
}


.locations-inner {
  position: relative;
  z-index: 2;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  gap: 80px;
}

.locations-left {
  flex: 0 0 45%;
}

.locations-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.locations-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.55);
  margin-bottom: 40px;
  max-width: 420px;
}

.locations-map {
  width: 100%;
  height: 480px;
  background: #e8e2d6;
  overflow: hidden;
}

.locations-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.3) contrast(0.9);
}

/* Right column: location cards */
.locations-right {
  flex: 1;
  padding-top: 10px;
}

.location-card {
  cursor: pointer;
  padding: 8px 0 0;
  transition: opacity 0.3s ease;
}

.location-card:not(.active) {
  opacity: 0.45;
}

.location-card:hover {
  opacity: 1;
}

.location-card.active {
  opacity: 1;
}

.location-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.location-card-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.1;
  color: #1a1a1a;
}

.location-card:not(.active) .location-card-name {
  color: rgba(20, 20, 20, 0.35);
}

.location-card-badge {
  display: inline-block;
  border: 1px solid #1a1a1a;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  padding: 4px 12px;
  color: #1a1a1a;
  white-space: nowrap;
}

.location-card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(20, 20, 20, 0.55);
  margin-bottom: 10px;
}

.location-card-address {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.location-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(20, 20, 20, 0.12);
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .locations-inner { flex-direction: column; gap: 40px; }
  .locations-left { flex: none; width: 100%; }
  .location-card-name { font-size: 32px; }
  .locations-map { height: 350px; }
}

@media (max-width: 600px) {
  .locations-title { font-size: 36px; }
  .location-card-name { font-size: 26px; }
  .locations-map { height: 280px; }
  .home-locations { padding: 60px 0 80px; }
}


/* ========================================
   NEXT WORKSPACE SECTION
   ======================================== */

.nw-section {
  width: 100%;
  background-color: #f0ebe0;
  background-image: url('assets/images/paper-texture.png');
  background-size: 100% 100%;
}

/* ?? Band: photo + tear overlay stacked ?? */
.nw-band {
  position: relative;
  width: 100%;
  line-height: 0;
}

/* Full-bleed photo � NO overflow clip needed; the tear SVG sits on top */
.nw-photo {
  display: block;
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center 30%;
  /* Clip the photo to the exact torn bottom edge using clip-path polygon */
  /* Points mirror the SVG path: x as % of width, y as % of height (700px) */
  clip-path: polygon(
    0% 0%,    100% 0%,   100% 6.1%,
    /* right side down to tear line, then trace torn edge right-to-left */
    72.8% 6.1%,
    72.6% 7.3%, 70.7% 8.6%, 66.7% 7.9%, 63.4% 7.1%,
    59.0% 4.6%, 52.3% 4.6%, 50.9% 4.6%, 48.0% 4.7%,
    42.9% 4.0%, 37.5% 4.3%, 33.3% 4.3%, 25.0% 4.4%,
    20.8% 6.9%, 16.7% 7.3%, 13.5% 5.7%, 8.3% 5.7%,
    4.2% 5.0%,  0%    4.3%
  );
}

/* Tear overlay: absolutely positioned at the bottom of the band.
   The SVG inside is the exact cream shape that seamlessly continues the page background.
   preserveAspectRatio=none makes it stretch to any screen width. */
.nw-tear {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 5;
  line-height: 0;
}

.nw-tear-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Floating card */
.nw-card {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  background: #faf7f0;
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(180,160,120,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(180,160,120,0.07) 0%, transparent 55%);
  padding: 36px 48px 44px;
  width: 540px;
  text-align: center;
  box-shadow: 0 12px 60px rgba(0,0,0,0.22), 0 2px 12px rgba(0,0,0,0.10);
  overflow: visible;
}

/* Leaf decorations */
.nw-leaf {
  position: absolute;
  top: -40px;
  width: 150px;
  height: auto;
  pointer-events: none;
  opacity: 0.8;
}
.nw-leaf--left  { left: -50px;  transform: scaleX(-1) rotate(-15deg); }
.nw-leaf--right { right: -50px; transform: rotate(10deg); }

/* Badge */
.nw-badge {
  display: inline-block;
  background: #c8a84b;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  margin-bottom: 20px;
}

/* Heading */
.nw-heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

/* Description */
.nw-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(20,20,20,0.6);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA buttons */
.nw-ctas {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.nw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nw-btn--dark    { background: #1a1a1a; color: #fff; border: 2px solid #1a1a1a; }
.nw-btn--dark:hover    { background: transparent; color: #1a1a1a; }
.nw-btn--outline { background: transparent; color: #1a1a1a; border: 1.5px solid #1a1a1a; }
.nw-btn--outline:hover { background: #1a1a1a; color: #fff; }

/* Flamingo */
.nw-flamingo {
  position: absolute;
  bottom: -8px;
  right: -38px;
  width: 100px;
  height: auto;
  pointer-events: none;
  object-fit: contain;
}

/* ?? Tagline block ?? */
.nw-tagline-block {
  background-color: #f0ebe0;
  background-image: url('assets/images/paper-texture.png');
  background-size: 100% 100%;
  padding: 90px 120px;
  text-align: center;
}
.nw-tagline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.38;
  max-width: 920px;
  margin: 0 auto;
  color: #1a1a1a;
}
.nw-tagline strong        { font-weight: 700; color: #1a1a1a; }
.nw-tagline-light         { color: rgba(26,26,26,0.38); font-weight: 400; }

/* ?? Responsive ?? */
@media (max-width: 768px) {
  .nw-photo  { height: 520px; }
  .nw-tear   { height: 80px; }
  .nw-card   { width: calc(100% - 48px); padding: 28px 24px 36px; top: 36%; }
  .nw-heading { font-size: 28px; }
  .nw-ctas   { flex-direction: column; align-items: center; }
  .nw-btn    { width: 100%; max-width: 280px; }
  .nw-leaf   { width: 100px; }
  .nw-leaf--left  { left: -20px; }
  .nw-leaf--right { right: -20px; }
  .nw-flamingo    { width: 72px; right: -16px; }
  .nw-tagline-block { padding: 60px 24px; }
}


/* ========================================
   STATEMENT SECTION
   ======================================== */
.statement-section {
  background-color: #f0ebe0;
  background-image: url('assets/images/statement-bg.jpg');
  background-size: 100% 100%;
  background-position: center;
  padding: 60px var(--container-padding);
  display: flex;
  justify-content: center;
  align-items: center;
}
.statement-inner {
  border: 1px solid rgba(45, 36, 22, 0.18);
  padding: 72px 80px;
  max-width: 80%;
  width: 100%;
  text-align: center;
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.38;
  margin: 0;
}
.statement-bold {
  font-weight: 700;
  color: #2d2416;
}
.statement-light {
  font-weight: 400;
  color: rgba(45, 36, 22, 0.38);
}
@media (max-width: 1024px) {
  .statement-section { padding: 50px 60px; }
  .statement-inner { padding: 56px 52px; }
}
@media (max-width: 768px) {
  .statement-section { padding: 40px 24px; }
  .statement-inner { padding: 40px 28px; }
}
/* Testimonials on home page - no marquee, no plants, adjusted padding */
.home-testimonials {
  padding: 100px 0 100px;
}
.home-testimonials .testimonials-leaf-left,
.home-testimonials .testimonials-leaf-right {
  display: none;
}

/* Plants spanning statement + testimonials boundary */
.statement-section {
  position: relative;
  overflow: visible;
  z-index: 2;
}
.statement-section::before,
.statement-section::after {
  content: '';
  position: absolute;
  bottom: -160px;
  width: 280px;
  height: 380px;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
}
.statement-section::before {
  left: 0;
  background-image: url('assets/images/plant-left.png');
  background-position: left bottom;
}
.statement-section::after {
  right: 0;
  background-image: url('assets/images/plant-right.png');
  background-position: right bottom;
}
.home-testimonials {
  position: relative;
  z-index: 1;
}

/* ========================================
   PEOPLE BEHIND FOMO SECTION
   ======================================== */
.home-people {
  position: relative;
  background-color: #f0ebe0;
  background-image: url('assets/images/statement-bg.jpg');
  background-size: 100% 100%;
  background-position: center;
  padding: 100px 90px 120px;
  overflow: hidden;
}
.home-people-header {
  text-align: center;
  margin-bottom: 56px;
}
.home-people-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 20px;
}
.home-people-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}
.home-people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1260px;
  margin: 0 auto;
}
.home-person-card {
  position: relative;
  background: #2e2e2e;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.home-person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.home-person-card:hover img {
  transform: scale(1.04);
}
.home-person-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
}
.home-person-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  display: block;
  margin-bottom: 4px;
}
.home-person-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  display: block;
}
.home-people-plant {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 280px;
  height: auto;
  pointer-events: none;
  opacity: 0.85;
}
@media (max-width: 1024px) {
  .home-people-grid { grid-template-columns: repeat(2, 1fr); }
  .home-people { padding: 80px 60px 100px; }
}
@media (max-width: 640px) {
  .home-people-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .home-people { padding: 60px 24px 80px; }
  .home-people-title { font-size: 36px; }
}


/* ========================================
   PEOPLE BEHIND FOMO SECTION
   ======================================== */
.people-section {
  position: relative;
  background-color: #f0ebe0;
  background-image: url('assets/images/people-fomo-bg.jpg');
  background-size: 100% 100%;
  background-position: center;
  padding: 100px var(--container-padding) 120px;
  overflow: hidden;
}
.people-plant {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 420px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.people-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.people-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 18px;
}
.people-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(20, 20, 20, 0.6);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.people-card {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: #3a3a3a;
  overflow: hidden;
}
.people-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.people-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 4px;
  display: block;
}
.people-card-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}
@media (max-width: 1024px) {
  .people-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .people-title { font-size: 40px; }
}
@media (max-width: 600px) {
  .people-section { padding: 70px 24px 90px; }
  .people-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .people-title { font-size: 32px; }
  .people-plant { width: 200px; }
}

/* ?? People card hover states ?? */
.people-card {
  cursor: pointer;
}
/* Default state: plain photo */
.people-card .people-card-default {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.4s ease;
  opacity: 1;
  z-index: 1;
}
/* Hover image: pink botanical card */
.people-card .people-card-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: 2;
}
.people-card:hover .people-card-default {
  opacity: 0;
}
.people-card:hover .people-card-hover {
  opacity: 1;
}
/* Card info sits above both images */
.people-card .people-card-info {
  z-index: 3;
}
/* Hide default overlay gradient on hover (hover image has its own) */
.people-card:hover .people-card-info {
  background: none;
}

/* People card: Book a Meeting button */
.people-card-btn {
  display: inline-block;
  margin-top: 2px;
  padding: 12px 0;
  width: calc(100% - 0px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.people-card:hover .people-card-btn {
  opacity: 1;
  transform: translateY(0);
}
.people-card-btn:hover {
  background: rgba(255,255,255,0.15);
}
/* Section with no header */
.people-no-header {
  padding-top: 120px;
  padding-bottom: 120px;
}

.people-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 22px 22px; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%); }

/* ====== MOVED TO home.css — END ====== */
/* Offices paper bg section */
.offices-paper-bg {
  width: 100%;
  background: url(assets/images/private-offices-bg.png) center center / 100% 100% no-repeat;
  aspect-ratio: 1440 / 840;
}
/* ====== MOVED TO private-offices.css — START (lines 4456–4568) ====== */
/* ============================================
   OFFICES PAPER BG content
   ============================================ */
.opb-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 90px 80px;
}
.opb-text {
  text-align: center;
  max-width: 720px;
}
.opb-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.opb-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(20,20,20,0.6);
  margin-bottom: 36px;
}
.opb-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.opb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.opb-btn-dark {
  background: #1a1a1a;
  color: #fff;
  border: 2px solid #1a1a1a;
}
.opb-btn-dark:hover {
  background: transparent;
  color: #1a1a1a;
}
.opb-btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}
.opb-btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}
.opb-carousel-wrap {
  overflow: hidden;
  width: 100%;
}
.opb-carousel {
  display: flex;
  gap: 0;
  animation: opbScroll 40s linear infinite;
}
.opb-carousel:hover {
  animation-play-state: paused;
}
@keyframes opbScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.opb-slide {
  position: relative;
  flex: 0 0 25%;
}
.opb-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.opb-slide::after {
  content: '';
  position: absolute;
  inset: 0;
}
.opb-logo {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ====== MOVED TO private-offices.css — END ====== */
