/* ============================================================
   MEETINGS HERO
   ============================================================ */
.meetings-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.offices-workspace-cta .ws-main {
  background-color:white !important;
  z-index:-1000;
}
.meetings-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.meetings-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.meetings-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.meetings-hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  color: #fff;
}

.meetings-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.meetings-hero-description {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.meetings-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.meetings-hero-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.meetings-hero-cta .btn-primary {
  background: #fff;
  color: #111;
  border: 2px solid #fff;
}

.meetings-hero-cta .btn-primary:hover {
  background: transparent;
  color: #fff;
}

.meetings-hero-cta .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.meetings-hero-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   MEETINGS SPACES
   ============================================================ */
.meetings-spaces {
  position: relative;
  background-color: #f5f0e8;
  background-image: url('../images/paper-texture-light.png');
  background-repeat: repeat;
  background-size: auto;
  padding: 100px 20px 80px;
  overflow: hidden;
}

/* Leaf decorations */
.ms-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.2;
  z-index: 0;
}

.ms-leaf--left {
  top: -40px;
  left: -80px;
  width: 380px;
}

.ms-leaf--right {
  top: -40px;
  right: -80px;
  width: 380px;
  transform: scaleX(1);
}

/* Header */
.ms-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.ms-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: #111;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.ms-desc {
  font-size: 1.22rem;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;
}

/* 4-column card grid */
.ms-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* Card */
.ms-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: background 0.25s ease;
  cursor: pointer;
}

.ms-card:hover {
  background: #fff;
}

/* Card image */
.ms-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ms-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.ms-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ms-card:hover .ms-card-img img {
  transform: scale(1.03);
}

/* Card body */
.ms-card-body {
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-card-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: #111;
  margin: 0;
}

/* Specs row */
.ms-card-specs {
  display: flex;
  gap: 32px;
}

.ms-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ms-spec-label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.45);
}

.ms-spec-val {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
}

/* Divider */
.ms-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(17, 17, 17, 0.1);
}

/* Description */
.ms-card-desc {
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* View More button */
.ms-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.ms-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 120px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ms-view-more:hover {
  background: #111;
  color: #fff;
}

/* ============================================================
   MEETINGS FEATURE
   ============================================================ */
.mf-section {
  width: 100%;
}

.mf-row {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 840px;
  overflow: hidden;
}

.mf-row--dark {
  background: #2e2e2a;
}

/* Paper texture overlay */
.mf-texture {
  position: absolute;
  inset: 0;
  background-image: url('../images/paper-texture.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* Leaf */
.mf-leaf {
  position: absolute;
  top: 320px;
  left: 23%;
  width: 520px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Left content panel — roughly 40% width */
.mf-content {
  position: relative;
  z-index: 2;
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px 190px 80px 90px;
}

/* Right image panel — remaining 58% */
.mf-image {
  flex: 0 0 65%;
  position: relative;
  overflow: hidden;
}

.mf-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Heading */
.mf-heading {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mf-heading--large {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 400;
}

.mf-heading--white {
  color: #fff;
}

/* Body text */
.mf-body {
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
}

.mf-body--white {
  color: rgba(255, 255, 255, 0.75);
}

/* Button */
.mf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 22px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mf-btn--white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.mf-btn--white:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   MEETINGS RESTAURANT
   ============================================================ */
.mr-section {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 100px 90px;
  background: none;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.mr-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/ambitious-companies-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

/* Stacked tilt photos — left side */
.mr-photos {
  position: relative;
  z-index: 1;
  flex: 0 0 43%;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mr-photo {
  position: absolute;
  width: 500px;
  height: 620px;
  overflow: hidden;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.mr-photo--back {
  top: 50%;
  left: 50%;
  z-index: 1;
  margin-left: -250px;
  margin-top: -310px;
  transform: rotate(-4deg);
}

.mr-photo--front {
  top: 50%;
  left: 50%;
  z-index: 2;
  margin-left: -210px;
  margin-top: -270px;
  transform: rotate(2deg);
}

/* Tilt animation triggered by JS on scroll */
.mr-photo--tilt-back {
  transform: rotate(-6deg) translate(-10px, 10px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mr-photo--tilt-front {
  transform: rotate(4deg) translate(10px, -10px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

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

/* Right text content */
.mr-content {
  position: relative;
  z-index: 1;
  flex: 0 0 49%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mr-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 400;
  color: #111;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 80%;
}

.mr-body {
  font-size: 1.45rem;
  color: rgba(17, 17, 17, 0.65);
  line-height: 1.7;
  margin: 0;
}

/* Pills row */
.mr-pills {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.mr-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #111;
}

.mr-pill svg {
  flex-shrink: 0;
  color: #111;
}

.mr-pill-divider {
  color: rgba(17, 17, 17, 0.2);
  font-size: 1.3rem;
}

/* Button */
.mr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 18px 72px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}

.mr-btn:hover {
  background: #111;
  color: #fff;
}

/* ============================================================
   HOST EVENT
   ============================================================ */
.he-section {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 220px 90px 0;
  overflow: hidden;
}

/* Page-tear background sits at the very top */
.he-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

/* Leaf decorations */
.he-section::before {
  content: '';
  position: absolute;
  top: 60px;
  left: -60px;
  width: 300px;
  height: 400px;
  background-image: url('../images/plant-left.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.he-section::after {
  content: '';
  position: absolute;
  top: 60px;
  right: -60px;
  width: 300px;
  height: 400px;
  background-image: url('../images/plant-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* Header */
.he-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.he-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  color: #111;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.he-desc {
  font-size: 1.35rem;
  color: rgba(17, 17, 17, 0.55);
  line-height: 1.6;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Event list */
.he-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Each row */
.he-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  transition: padding 0.3s ease;
  gap: 48px;
}

/* Left: title + desc */
.he-item-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.he-item-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: rgba(17, 17, 17, 0.35);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.he-item-desc {
  font-size: 1.25rem;
  color: rgba(17, 17, 17, 0.55);
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

/* Image — hidden by default, revealed on active */
.he-item-img {
  flex-shrink: 0;
  width: 600px;
  height: 290px;
  overflow: hidden;
  opacity: 0;
  max-width: 0;
  transition: opacity 0.35s ease, max-width 0.35s ease;
}

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

/* Arrow */
.he-arrow {
  flex-shrink: 0;
  font-size: 2rem;
  color: rgba(17, 17, 17, 0.3);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

/* Active state — JS adds he-item--active */
.he-item--active .he-item-title {
  color: #111;
}

.he-item--active .he-item-desc {
  max-height: 120px;
  opacity: 1;
}

.he-item--active .he-item-img {
  opacity: 1;
  max-width: 600px;
}

.he-item--active .he-arrow {
  color: #111;
  transform: translateX(4px);
}

/* Muted state — JS adds he-item--muted */
.he-item--muted .he-item-title {
  color: rgba(17, 17, 17, 0.25);
}

.he-item--muted .he-arrow {
  color: rgba(17, 17, 17, 0.2);
}

/* ============================================================
   MEETINGS CTA
   ============================================================ */
.meetings-cta {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 120px;
  background-color: #fff;
  background-image: url('../images/meetings-cta-bg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hide the img tag — we use CSS background instead */
.mcta-photo {
  display: none;
}

/* Floating card */
.mcta-card {
  position: relative;
  z-index: 2;
  background-color: #f5f0e8;
  background-image: url('../images/paper-texture-light.png');
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
  max-width: 840px;
  padding: 60px 80px 70px;
  text-align: center;
  overflow: hidden;
}

.companies-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mcta-leaf {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.mcta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mcta-badge {
  display: inline-block;
  background: #c9a84c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  text-transform: uppercase;
}

.mcta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mcta-desc {
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

.mcta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.cta-btn-dark {
  background: #111;
  color: #fff;
  border: 2px solid #111;
}

.cta-btn-dark:hover {
  background: transparent;
  color: #111;
}

.cta-btn-outline {
  background: transparent;
  color: #111;
  border: 1.5px solid rgba(17, 17, 17, 0.5);
}

.cta-btn-outline:hover {
  background: #111;
  color: #fff;
}

/* ============================================================
   ABOUT MARQUEE (shared component)
   ============================================================ */
.about-marquee {
  background: #fff;
  padding: 32px 0 0;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

.logo-item {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ============================================================
   ABOUT TESTIMONIALS
   ============================================================ */
.about-testimonials-section {
  position: relative;
  background: #fff;
  padding: 0 90px 100px 90px;
  overflow: hidden;
}

/* Plant decorations */
.atest-plant {
  position: absolute;
  pointer-events: none;
  opacity: 0.2;
  z-index: 0;
}

.atest-plant--left {
  top: 40px;
  left: -60px;
  width: 320px;
}

.atest-plant--right {
  top: 40px;
  right: -60px;
  width: 320px;
  transform: scaleX(1);
}

/* Header */
.testimonials-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.testimonials-badge {
  display: inline-block;
  background: #c9a84c;
  color: #000000;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
}

.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #111;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Two-column grid */
.testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1260px;
  margin: 0 auto;
}

/* Card */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 40px;
}

/* Quote mark SVG icon — constrain so flex-column stretch doesn't scale it up */
.testimonial-quote-mark {
  width: 56px;
  height: auto;
  align-self: flex-start;
  pointer-events: none;
  opacity: 0.5;
}

/* Stars */
.testimonial-stars {
  font-size: 1.2rem;
  color: #c9a84c;
  letter-spacing: 2px;
}

/* Quote text */
.testimonial-text {
  font-size: 1.05rem;
  color: #111;
  line-height: 1.7;
  margin: 0;
}

/* Divider */
.testimonial-divider {
  width: 100%;
  height: 1px;
  background: rgba(17, 17, 17, 0.1);
}

/* Author row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(17, 17, 17, 0.08);
}

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

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.testimonial-role {
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.5);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  /* Hero */
  .meetings-hero {
    min-height: 500px;
  }

  .meetings-hero-content {
    padding: 0 24px;
  }

  .meetings-hero-cta .btn {
    padding: 14px 32px;
  }

  /* Spaces */
  .meetings-spaces {
    padding: 80px 24px 60px;
  }

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

  .ms-view-more {
    padding: 16px 60px;
  }

  /* Feature */
  .mf-row {
    flex-direction: column;
    min-height: auto;
  }

  .mf-content {
    flex: none;
    padding: 60px 40px;
  }

  .mf-image {
    flex: none;
    min-height: 400px;
  }

  .mf-leaf {
    display: none;
  }

  /* Restaurant */
  .mr-section {
    flex-direction: column;
    padding: 80px 40px;
    gap: 40px;
  }

  .mr-photos {
    flex: none;
    width: 100%;
    height: 450px;
  }

  .mr-photo {
    width: 340px;
    height: 420px;
  }

  .mr-photo--back {
    margin-left: -170px;
    margin-top: -210px;
  }

  .mr-photo--front {
    margin-left: -140px;
    margin-top: -180px;
  }

  .mr-content {
    flex: none;
    gap: 24px;
  }

  .mr-title {
    max-width: 100%;
  }

  /* Host Event */
  .he-section {
    padding: 180px 40px 80px;
  }

  .he-section::before,
  .he-section::after {
    display: none;
  }

  .he-item-img {
    width: 240px;
    height: 150px;
  }

  .he-item--active .he-item-img {
    max-width: 240px;
  }

  /* CTA */
  .meetings-cta {
    min-height: auto;
    padding: 80px 24px;
  }

  .mcta-card {
    padding: 48px 40px 56px;
  }

  /* Testimonials */
  .about-testimonials-section {
    padding: 80px 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonial-card {
    padding: 0;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Hero */
  .meetings-hero {
    height: 100vh;
    height: 100dvh;
    min-height: 540px;
  }

  .meetings-hero-heading {
    margin-bottom: 16px;
  }

  .meetings-hero-description {
    margin-bottom: 24px;
  }

  .meetings-hero-cta .btn {
    padding: 14px 28px;
    font-size: 0.85rem;
    width: 100%;
  }

  /* Spaces */
  .meetings-spaces {
    padding: 60px 16px 40px;
  }

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

  .ms-card-body {
    padding: 16px 16px 24px;
  }

  .ms-card-name {
    font-size: 1.4rem;
  }

  .ms-view-more {
    padding: 16px 40px;
    width: 100%;
    font-size: 0.95rem;
  }

  .ms-footer {
    margin-top: 40px;
  }

  .ms-leaf--left,
  .ms-leaf--right {
    width: 200px;
  }

  /* Feature */
  .mf-content {
    padding: 40px 24px;
    gap: 16px;
  }

  .mf-image {
    min-height: 300px;
  }

  .mf-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }

  /* Restaurant */
  .mr-section {
    padding: 60px 24px;
    gap: 32px;
  }

  .mr-section::before {
    bottom: -100px;
  }

  .mr-photos {
    height: 340px;
  }

  .mr-photo {
    width: 240px;
    height: 300px;
    border-width: 6px;
  }

  .mr-photo--back {
    margin-left: -120px;
    margin-top: -150px;
  }

  .mr-photo--front {
    margin-left: -100px;
    margin-top: -130px;
  }

  .mr-content {
    gap: 20px;
  }

  .mr-body {
    font-size: 1.1rem;
  }

  .mr-pills {
    gap: 12px;
    margin-top: 8px;
  }

  .mr-pill {
    font-size: 1rem;
    gap: 8px;
  }

  .mr-pill-divider {
    font-size: 1rem;
  }

  .mr-btn {
    padding: 14px 40px;
    font-size: 1rem;
    width: 100%;
  }

  /* Host Event */
  .he-section {
    padding: 140px 24px 60px;
  }

  .he-header {
    margin-bottom: 40px;
  }

  .he-desc {
    font-size: 1.1rem;
  }

  .he-item {
    gap: 16px;
    padding: 24px 0;
  }

  .he-item-img {
    display: none;
  }

  .he-item--active .he-item-img {
    display: none;
  }

  .he-item-desc {
    font-size: 0.9rem;
  }

  /* CTA */
  .meetings-cta {
    padding: 60px 16px;
  }

  .mcta-card {
    padding: 40px 24px 48px;
  }

  .mcta-leaf {
    width: 260px;
  }

  .mcta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
  }

  /* Marquee */
  .marquee-logos {
    gap: 40px;
    padding: 0 20px;
  }

  /* Testimonials */
  .about-testimonials-section {
    padding: 60px 24px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 418px)
   ============================================================ */
@media (max-width: 418px) {

  .meetings-hero-content {
    top: 55%;
  }
}

/* Stop the CTA torn-paper edges from bleeding out — clip to straight edges */
.offices-workspace-cta {
  overflow: hidden;
}
.offices-workspace-cta .ws-main {
  overflow: hidden;
}
.offices-workspace-cta .ws-main::before {
  top: -120px;
  bottom: 0;
}
@media (min-width: 800px){
.offices-workspace-cta .ws-card{
  min-width: fit-content;
}
}

/* ============================================================
   HOST EVENT — HORIZONTAL SLIDER
   ============================================================ */
.hes-outer {
  position: relative;
  height: 500vh;
  z-index: 3;
}

.hes-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hes-track {
  display: flex;
  flex-direction: row;
  width: 400%;
  height: 100%;
  will-change: transform;
}

.hes-panel {
  position: relative;
  width: 25%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width:768px){
  .hes-panel{
      /* margin-bottom:140px; */
  }
  
}
.hes-text {
  position: relative;
  z-index: 2;
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 90px;
  background: #ffffff;
}

.hes-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: #111111;
  margin: 0 0 24px;
}

.hes-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.65);
  margin: 0;
  max-width: 400px;
}

.hes-img {
  flex: 1;
  overflow: hidden;
}

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

/* Tablet & below — disable animation, static stack */
@media (max-width: 1024px) {
  .hes-outer {
    height: auto;
  }

  .hes-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .hes-track {
    flex-direction: column;
    width: 100%;
    transform: none !important;
  }

  .hes-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    flex-direction: column-reverse;
  }

  .hes-img {
    flex: none;
    width: 100%;
    height: 350px;
  }

  .hes-text {
    flex: none;
    padding: 60px 40px 60px 56px;
  }

  .hes-heading { font-size: 28px; }
  .hes-desc { font-size: 15px; }
}

/* Mobile */
@media (max-width: 700px) {
  .hes-img {
    height: 260px;
  }

  .hes-text {
    padding: 40px 24px 48px;
  }

  .hes-heading { font-size: 24px; }
  .hes-desc { max-width: 100%; font-size: 15px; }
}

@media (max-width: 1100px) {
  .page-template-page-meetings .footer-logo-overlap {
    top: -53px;
  }
}

@media (max-width: 900px) {
  .page-template-page-meetings .footer-logo-overlap {
    top: -43px;
  }
}

@media (max-width: 480px) {
  .page-template-page-meetings .footer-logo-overlap {
    top: -33px;
  }
}