/* ============================================================
   FOOTER LOGO OVERLAP
   ============================================================ */
.site-footer {
  padding-top: 136px;
}

.footer-logo-overlap {
  top: -68px;
  z-index: 10;
}

/* ============================================================
   GLOBAL OVERFLOW GUARD
   ============================================================ */
html,
body {
  overflow-x: clip;
  background-image: url(../images/ambitious-companies-bg.png);
  
}

/* Prevent subpixel gaps between stacked sections */
.about-hero,
.about-system,
.about-spaces,
.about-team,
.aj-outer,
.about-marquee,
.acta-section,
#about-cta,
.about-offerings,
.about-testimonials-section {
  margin-bottom: -1px;
}

/* ============================================================
   ABOUT HERO
   ============================================================ */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

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

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

.about-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 24px 0;
}

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

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

.about-hero-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;
}

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

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

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

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

/* ============================================================
   ABOUT CTA
   ============================================================ */
#about-cta {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: transparent;
}

/* Apply CTA-section-cutout.png as the sole background.
   !important overrides the globally-injected inline style that sets background-color:#fff,
   which would otherwise fill the transparent torn-paper areas with white. */
#about-cta .ws-main {
  background-image: url('../images/CTA-section-cutout.png') !important;
  background-color: transparent !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  aspect-ratio: 1440 / 876;
}

/* Disable ::before from style.css — it would add the image a second time */
#about-cta .ws-main::before {
  display: none;
}

#about-cta .ws-bg-img {
  display: none !important;
}

/* Suppress offices-cta-frame.png from private-offices.css / style.css */
#about-cta .ws-overlay {
  background-image: none !important;
}

#about-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 220px;
  padding: 0 40px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

#about-cta .cta-btn-dark:hover {
  background: transparent;
  color: #3a3a2e;
}

#about-cta .cta-btn-outline {
  background: transparent;
  color: #3a3a2e;
  border: 2px solid #3a3a2e;
}

#about-cta .cta-btn-outline:hover {
  background: #3a3a2e;
  color: #fff;
}

/* ============================================================
   ABOUT SYSTEM
   ============================================================ */
.about-system {
  background: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 120px 0 40px;
}

.about-system::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

/* Texture overlay
.about-system::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/paper-texture-light.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
} */

/* Header block */
.as-header {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 90px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Line 1: title + pill */
.as-line1 {
  display: flex;
  align-items: center;
  gap: 32px;
}

.as-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 80px);
  font-weight: 400;
  font-style: normal;
  color: #111;
  margin: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.as-pill-img {
  width: 180px;
  height: 88px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

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

/* Line 2: desc left + subtitle right */
.as-line2 {
  display: flex;
  align-items: center;
  gap: 24px;
}

.as-desc {
  width: 378px;
  flex-shrink: 0;
}

.as-desc p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #111;
  line-height: 1.3;
  letter-spacing: -0.28px;
  margin: 0;
  text-align: right;
}

.as-subtitle {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 80px);
  font-weight: 400;
  font-style: normal;
  color: #111;
  margin: 0;
  line-height: 1.1;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}

/* Values list */
.as-values {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Each value row */
.as-value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 122px;
  width: 100%;
  min-height: 181px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

/* Left photo wrapper */
.as-val-img {
  flex-shrink: 0;
  width: 285px;
  height: 321px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-val-img--left {
  /* photo inside rotated */
}

.as-val-img--left img {
  width: 260px;
  height: 300px;
  object-fit: cover;
  display: block;
  border: 6px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(-5deg);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.as-val-img--right img {
  width: 260px;
  height: 300px;
  object-fit: cover;
  display: block;
  border: 6px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(5deg);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Center word block */
.as-val-center {
  flex-shrink: 0;
  width: 234px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.as-val-word {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  color: #111;
  display: block;
}

.as-val-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  color: #111;
  display: block;
  line-height: 1.3;
}

/* Active state */
.as-value-item--active .as-val-center {
  opacity: 1;
}

.as-value-item--active .as-val-img--left img,
.as-value-item--active .as-val-img--right img {
  opacity: 1;
}

/* Muted state */
.as-value-item--muted .as-val-center {
  opacity: 0.4;
}

/* ============================================================
   ABOUT SPACES
   ============================================================ */
.about-spaces {
  position: relative;
  z-index: 3;
  background: #fff;
  overflow: hidden;
  padding-top: 0;
}

.as2-deco {
  position: relative;
  width: 100%;
  pointer-events: none;
}

/* Torn paper clips at 160px, plants overflow freely */
.as2-torn {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top;
}

.as2-plant {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.as2-plant--left {
  top: -20px;
  left: -40px;
  width: 280px;
  opacity: 0.35;
}

.as2-plant--right {
  top: -20px;
  right: -40px;
  width: 280px;
  opacity: 0.35;
  transform: scaleX(1);
}

/* Header */
.as2-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 24px auto 48px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.as2-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  color: #111;
  margin: 0;
  line-height: 1.1;
}

.as2-sub {
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Two carousel rows */
.as2-carousels {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-bottom: 0px;
  overflow: hidden;
}

.as2-row {
  overflow: hidden;
  width: 100%;
}

.as2-track {
  display: flex;
  width: max-content;
  gap: 0px;
}

.as2-row--left .as2-track {
  animation: as2-scroll-left 40s linear infinite;
}

.as2-row--right .as2-track {
  animation: as2-scroll-right 40s linear infinite;
}

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

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

@keyframes as2-scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.as2-slide {
  flex-shrink: 0;
  width: 380px;
  height: 260px;
  overflow: hidden;
}

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


/* ============================================================
   ABOUT TEAM
   ============================================================ */
.about-team {
  position: relative;
  background-color: #feecec;
  background-image: url('../images/paper-texture-light.png');
  background-repeat: repeat;
  background-size: auto;
  padding: 100px 90px 100px;
  overflow: hidden;
}

/* Flamingo — left side */
.at-flamingo {
  position: absolute;
  left: -160px;
  top: 0;
  height: 90%;
  width: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

/* Plant — right side */
.at-plant {
  position: absolute;
  right: -40px;
  top: 0;
  width: 320px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

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

.at-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  color: #111;
  margin: 0;
  line-height: 1.1;
}

.at-desc {
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* 4-column grid */
.at-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1260px;
  margin: 0 auto;
}

/* Each card */
.at-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #d9cfc8;
}

.at-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FCC9CA, #2D2D2D);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.at-card:hover::before {
  opacity: 1;
}

.at-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Name/role overlay at bottom */
.at-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.at-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.at-card-role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

/* ============================================================
   ABOUT JOURNEY
   ============================================================ */

/* Outer container — tall enough for 4 slides × 100vh of scroll travel */
.aj-outer {
  position: relative;
  height: 500vh;
  background: #fff;
}

/* Sticky wrapper pins the visible slide in the viewport */
.aj-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* Horizontal track — 4 slides wide */
.aj-track {
  display: flex;
  flex-direction: row;
  width: 400vw;
  height: 100%;
  will-change: transform;
}

/* Each slide fills one viewport */
.aj-slide {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  overflow: hidden;
}

/* Left text panel */
.aj-left {
  flex: 0 0 37%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 90px 80px 90px;
  background: #fff;
  gap: 24px;
}

/* Step number badge */
.aj-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  align-self: flex-start;
}

/* Step title */
.aj-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: normal;
  color: #111;
  margin: 0;
  line-height: 1.1;
}

/* Step body */
.aj-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

/* Right image panel */
.aj-right {
  flex: 1;
  overflow: hidden;
}

.aj-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   ABOUT MARQUEE (shared component)
   ============================================================ */
.about-marquee {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 32px 0;
  overflow: hidden;
}
/* .amenities-marquee{
} */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  background:#fff;
  /* padding-bottom:4rem; */
  border-top: 1px solid #fff;
}

.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 {
  width: 138px;
  height: auto;
  display: block;
  filter: brightness(0);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT CTA
   ============================================================ */
.acta-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: transparent;
  margin-top: -55px;
  margin-bottom: -55px;
}

.acta-bg-photo {
  position: absolute;
  inset: 0;
  /* background: url('../images/cta-bg-about.jpg') center / cover no-repeat; */
  z-index: 0;
}

.acta-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1440 / 876;
  background: url('../images/CTA-section-cutout.png') center / 100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acta-texture {
  position: absolute;
  inset: 0;
  /* background: url('../images/paper-texture.png') repeat; */
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.acta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex: 1;
}

.acta-card {
  width: 834px;
  max-width: 90%;
  background: rgba(255, 255, 255, 0.97);
  border: 16px solid #fff;
  border-radius: 4px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 56px;
  text-align: center;
  box-sizing: border-box;
}

.acta-badge {
  display: inline-block;
  background: #e4b23a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.acta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.96px;
  text-transform: capitalize;
  color: #111;
  margin: 0;
}

.acta-desc {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: rgba(17, 17, 17, 0.65);
  margin: 0;
  max-width: 620px;
}

.acta-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.acta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 48px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}

.acta-btn:hover {
  opacity: 0.85;
}

.acta-btn--dark {
  background: #111;
  color: #fff;
  border: none;
}

.acta-btn--outline {
  background: transparent;
  color: #111;
  border: 0.8px solid #111;
}

/* ============================================================
   ABOUT OFFERINGS
   ============================================================ */
.about-offerings {
  position: relative;
  background-color: #f5f0e8;
  background-image: url('../images/paper-texture-light.png');
  background-repeat: repeat;
  background-size: auto;
  padding: 100px 90px;
  margin-top: 100px;
  overflow: hidden;
}

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

.aof-leaf--left {
  top: 60px;
  left: -60px;
  width: 340px;
}

.aof-leaf--right {
  top: 60px;
  right: -60px;
  width: 340px;
  transform: scaleX(1);
}

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

.aof-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  color: #111;
  margin: 0;
  line-height: 1.1;
}

.aof-desc {
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.55);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

/* List */
.aof-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 1260px;
  margin: 0 auto;
}

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

.aof-item:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

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

.aof-item-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(17, 17, 17, 0.3);
  margin: 0;
  line-height: 1.1;
  transition: color 0.3s ease;
}

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

/* Image */
.aof-item-img {
  flex-shrink: 0;
  width: 320px;
  height: 200px;
  overflow: hidden;
  opacity: 0;
  max-width: 0;
  transition: opacity 0.35s ease, max-width 0.35s ease;
}

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

/* Arrow */
.aof-arrow {
  flex-shrink: 0;
  font-size: 1.4rem;
  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 is-active */
.aof-item.is-active .aof-item-title {
  color: #111;
}

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

.aof-item.is-active .aof-item-img {
  opacity: 1;
  max-width: 320px;
}

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

/* ============================================================
   ABOUT TESTIMONIALS
   ============================================================ */
.about-testimonials-section.resident-testimonials,
.about-testimonials-section {
  position: relative;
  display: block !important;
  visibility: visible !important;
  background: #fff !important;
  padding: 100px 90px !important;
  overflow: visible !important;
  margin-top: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  opacity: 1 !important;
}

.about-testimonials-section .testimonials-header {
  padding: 0;
  margin-bottom: 48px;
}

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

.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: #fff;
  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: 400;
  font-style: normal;
  color: #111;
  margin: 0;
  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;
  position: relative;
}

/* Large quote mark */
.testimonial-quote-mark {
  display: block;
  width: 96px;
  height: auto;
  pointer-events: none;
  position: absolute;
  top: -24px;
  left: -16px;
  opacity: 0.4;
}

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

/* Quote text */
.testimonial-text {
  font-size: 1rem;
  color: #111;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* 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 #c9a84c;
}

.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;
  display: block;
}

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

/* ============================================================
   ABOUT MARQUEE (second instance at bottom)
   ============================================================ */
.about-marquee {
  background: #fff;
  padding: 32px 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 {
  width: 138px;
  height: auto;
  display: block;
  filter: brightness(0);
  opacity: 0.5;
  flex-shrink: 0;
}

@media (max-width: 900px) {

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

  .atest-plant--left {
    left: -100px;
    opacity: 0.15;
  }

  .atest-plant--right {
    right: -100px;
    opacity: 0.15;
  }

  .marquee-logos {
    gap: 48px;
    padding: 0 24px;
  }

  .logo-item {
    width: 240px;
  }

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

  .testimonial-card {
    padding: 0;
  }

  /* Offerings section */
  .about-offerings {
    padding: 80px 40px;
  }

  .aof-leaf--left {
    left: -80px;
    opacity: 0.15;
  }

  .aof-leaf--right {
    right: -80px;
    opacity: 0.15;
  }

  .aof-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
    gap: 16px;
  }

  .aof-item-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .aof-item-title {
    color: #111;
  }

  .aof-item-desc {
    max-height: 400px;
    opacity: 1;
    max-width: 100%;
  }

  .aof-item-img,
  .aof-item.is-active .aof-item-img {
    width: 100%;
    max-width: 100%;
    height: 240px;
    opacity: 1;
    order: -1;
  }

  .aof-arrow {
    display: none;
  }

  /* New CTA section — maintain image proportions on mobile */
  .acta-frame {
    aspect-ratio: unset;
    background-size: cover;
    background-position: center center;
    padding: 64px 32px;
  }

  .acta-card {
    width: 100%;
    max-width: 100%;
    border-width: 8px;
    padding: 40px 32px;
    gap: 24px;
  }

  .acta-title {
    font-size: 36px;
  }

  .acta-desc {
    font-size: 16px;
  }

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

  .acta-btn {
    width: 100%;
  }

  /* Legacy CTA section — no PNG on mobile, plain background, no overlap */
  #about-cta {
    background: #f5f0e8;
    overflow: hidden;
  }

  #about-cta .ws-main {
    background-image: none !important;
    aspect-ratio: unset !important;
  }

  #about-cta .ws-overlay {
    position: relative !important;
    padding: 60px 32px;
  }

  #about-cta .ws-card {
    width: 100%;
    max-width: 100%;
    padding: 40px 32px;
    text-align: center;
  }

  #about-cta .ws-buttons {
    flex-direction: column;
  }

  #about-cta .cta-btn {
    width: 100%;
  }

  .about-offerings {
    margin-top: 0;
    padding-top: 80px;
  }

  /* Journey — disable horizontal scroll, go vertical */
  .aj-outer {
    height: auto;
  }

  .aj-sticky {
    position: static;
    height: auto;
    overflow: visible;
  }

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

  .aj-slide {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .aj-right {
    width: 100%;
    height: 320px;
    order: -1;
  }

  .aj-left {
    flex: none;
    width: 100%;
    padding: 40px;
  }

  .aj-body {
    max-width: 100%;
  }

  .as2-header {
    padding: 0 24px;
    margin-top: -60px;
  }

  .as2-plant--left {
    left: -60px;
  }

  .as2-plant--right {
    right: -60px;
  }

  .about-team {
    padding: 80px 40px;
  }

  .at-flamingo {
    left: -60px;
    opacity: 0.15;
    height: auto;
    width: 220px;
  }

  .at-plant {
    right: -60px;
    opacity: 0.15;
  }

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

  .as-header {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    align-items: flex-start;
    text-align: left;
  }

  .as-line1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .as-pill-img {
    display: none;
  }

  .as-title {
    white-space: normal;
    text-align: left;
  }

  .as-line2 {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 8px;
  }

  .as-desc {
    width: 100%;
  }

  .as-desc p {
    text-align: left;
  }

  .as-subtitle {
    white-space: normal;
    text-align: left;
    flex: unset;
    width: 100%;
  }

  .as-value-item {
    flex-direction: column;
    margin-left: 0;
    padding: 24px 40px;
    gap: 16px;
    min-height: unset;
    align-items: flex-start;
  }

  .as-val-img {
    width: 100%;
    height: auto;
  }

  .as-val-img--right {
    display: none;
  }

  .as-val-img--left img {
    width: 100%;
    height: 220px;
    transform: none;
    opacity: 1;
  }

  .as-val-center {
    opacity: 1;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .as-val-word {
    font-size: 2rem;
  }

  .as-val-sub {
    font-size: 12px;
  }

}

/* ============================================================
   LARGE SCREEN / 4K OVERRIDES
   ============================================================ */

@media (min-width: 2560px) {

  /* Scale logos so track width stays well ahead of the 2560px+ viewport */
  .logo-item {
    width: 220px;
  }

  .marquee-logos {
    gap: 120px;
    padding: 0 60px;
  }

  /* Prevent subpixel dark gap above marquee at large screens */
  .about-marquee {
    border-top: 2px solid #fff;
    padding-bottom: 80px;
  }

  .about-offerings {
    padding-top: 160px;
  }

  .acta-section {
    margin-top: -100px;
    margin-bottom: -100px;
  }
}

@media (min-width: 3840px) {
  .logo-item {
    width: 300px;
  }

  .marquee-logos {
    gap: 160px;
    padding: 0 80px;
  }

  .as2-slide {
    width: 600px;
    height: 400px;
  }

  .aj-left {
    flex: 0 0 44%;
    padding: 120px 140px 120px 140px;
    gap: 40px;
  }

  .aj-num {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .aj-title {
    font-size: 4.5rem;
  }

  .aj-body {
    font-size: 1.6rem;
    line-height: 1.7;
    max-width: 680px;
  }

  .about-team {
    padding: 160px 140px;
  }

  .at-header {
    max-width: 1100px;
    margin-bottom: 80px;
    gap: 24px;
  }

  .at-title {
    font-size: 4.5rem;
  }

  .at-desc {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .at-grid {
    max-width: 2200px;
    gap: 28px;
  }

  .at-card-info {
    padding: 100px 32px 32px;
  }

  .at-card-name {
    font-size: 1.8rem;
  }

  .at-card-role {
    font-size: 1.3rem;
  }

  .at-plant {
    width: 600px;
    right: -80px;
  }

  /* Offerings */
  .about-offerings {
    padding: 160px 140px;
  }

  .aof-header {
    max-width: 1100px;
    margin-bottom: 80px;
    gap: 24px;
  }

  .aof-title {
    font-size: 4.5rem;
  }

  .aof-desc {
    font-size: 1.5rem;
    max-width: 800px;
  }

  .aof-list {
    max-width: 2200px;
  }

  .aof-item {
    padding: 56px 0;
    gap: 60px;
  }

  .aof-item-title {
    font-size: 3.5rem;
  }

  .aof-item-desc {
    font-size: 1.4rem;
    max-width: 800px;
  }

  .aof-item.is-active .aof-item-desc {
    max-height: 200px;
  }

  .aof-item-img {
    width: 560px;
    height: 360px;
  }

  .aof-item.is-active .aof-item-img {
    max-width: 560px;
  }

  .aof-arrow {
    font-size: 2.2rem;
  }

  .aof-leaf--left,
  .aof-leaf--right {
    width: 600px;
  }

  /* Testimonials */
  .about-testimonials-section.resident-testimonials,
  .about-testimonials-section {
    padding: 160px 140px !important;
  }

  .about-testimonials-section .testimonials-header {
    margin-bottom: 80px;
  }

  .testimonials-title {
    font-size: 4.5rem;
  }

  .testimonials-badge {
    font-size: 1.1rem;
    padding: 10px 24px;
  }

  .testimonials-grid {
    max-width: 2200px;
    gap: 64px;
  }

  .testimonial-card {
    gap: 32px;
    padding: 0 60px;
  }

  .testimonial-quote-mark {
    width: 160px;
  }

  .testimonial-stars {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .testimonial-avatar {
    width: 90px;
    height: 90px;
  }

  .testimonial-name {
    font-size: 1.5rem;
  }

  .testimonial-role {
    font-size: 1.2rem;
  }

  .atest-plant--left,
  .atest-plant--right {
    width: 600px;
  }

  /* CTA section margins */
  .acta-section {
    margin-top: -150px;
    margin-bottom: -150px;
  }

  /* CTA card */
  .acta-card {
    width: 1400px;
    gap: 52px;
    padding: 80px 100px;
    border-width: 24px;
  }

  .acta-badge {
    font-size: 1.2rem;
    padding: 10px 28px;
  }

  .acta-title {
    font-size: 5rem;
  }

  .acta-desc {
    font-size: 1.6rem;
    max-width: 1000px;
  }

  .acta-buttons {
    gap: 16px;
  }

  .acta-btn {
    width: 340px;
    height: 80px;
    font-size: 1.2rem;
    border-radius: 6px;
  }

  /* Eliminate sub-pixel gap lines between sections */
  .aj-outer,
  .about-marquee,
  #about-cta,
  .about-offerings,
  .about-testimonials-section {
    margin-bottom: -2px;
  }

  .about-marquee {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .about-team {
    border-bottom: 2px solid #feecec;
  }

  .about-offerings {
    border-top: 2px solid #f5f0e8;
    border-bottom: 2px solid #f5f0e8;
  }

  .about-testimonials-section {
    border-top: 2px solid #fff !important;
  }

  /* Hero section */
  .about-hero-content {
    max-width: 2400px;
  }

  .about-hero-heading {
    font-size: 8rem;
    margin-bottom: 40px;
  }

  .about-hero-description {
    font-size: 1.8rem;
    max-width: 1100px;
    margin-bottom: 60px;
  }

  .about-hero-cta {
    gap: 1.4rem;
  }

  .about-hero-cta .btn {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    white-space: nowrap;
    min-width: max-content;
    line-height: 1;
  }

  .about-hero-cta .btn-primary {
    border-width: 3px;
  }

  .about-hero-cta .btn-outline {
    border-width: 3px;
  }

  /* Built As A System section */
  .about-system {
    padding: 180px 0 60px;
  }

  .as-header {
    max-width: 2000px;
    padding: 0 140px;
    gap: 16px;
  }

  .as-line1 {
    gap: 56px;
  }

  .as-title,
  .as-subtitle {
    font-size: 7rem;
  }

  .as-pill-img {
    width: 320px;
    height: 156px;
  }

  .as-line2 {
    gap: 40px;
  }

  .as-desc {
    width: 640px;
  }

  .as-desc p {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .as-value-item {
    gap: 200px;
    min-height: 280px;
  }

  .as-val-img {
    width: 460px;
    height: 520px;
  }

  .as-val-img--left img,
  .as-val-img--right img {
    width: 420px;
    height: 480px;
    border-width: 10px;
  }

  .as-val-center {
    width: 380px;
  }

  .as-val-word {
    font-size: 5rem;
  }

  .as-val-sub {
    font-size: 1.2rem;
  }

  /* Spaces section header */
  .as2-header {
    max-width: 1400px;
    margin-bottom: 80px;
    gap: 24px;
  }

  .as2-title {
    font-size: 4.5rem;
  }

  .as2-sub {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {

  /* Footer logo */
  .site-footer {
    padding-top: 96px;
  }

  .footer-logo-overlap {
    top: -48px;
  }

  /* Testimonials section */
  .about-testimonials-section.resident-testimonials,
  .about-testimonials-section {
    padding: 48px 20px 40px !important;
  }

  .about-testimonials-section .testimonials-header {
    padding: 0;
    margin-bottom: 32px;
  }

  .testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .marquee-logos {
    gap: 32px;
    padding: 0 16px;
  }

  .logo-item {
    width: 200px;
  }

  /* Offerings section */
  .about-offerings {
    padding: 80px 20px 40px;
  }

  .aof-item-img {
    height: 200px;
  }

  /* CTA section */
  #about-cta .ws-main {
    aspect-ratio: unset !important;
    height: auto !important;
    min-height: 0 !important;
  }

  #about-cta .ws-overlay {
    padding: 64px 20px;
  }

  #about-cta .ws-card {
    padding: 32px 20px;
  }

  .aj-right {
    height: 240px;
  }

  .aj-left {
    padding: 24px 20px;
  }

  .as2-header {
    padding: 0 20px;
    margin-top: -60px;
  }

  .as2-plant--left {
    left: -80px;
    width: 220px;
  }

  .as2-plant--right {
    right: -80px;
    width: 220px;
  }

  .about-team {
    padding: 48px 20px 40px;
  }

  .at-flamingo {
    left: -80px;
    opacity: 0.1;
  }

  .at-plant {
    right: -80px;
    width: 240px;
    opacity: 0.1;
  }

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

  .about-system {
    padding: 48px 0 40px;
  }

  .as-header {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    align-items: flex-start;
    text-align: left;
  }

  .as-line1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .as-pill-img {
    display: none;
  }

  .as-title {
    font-size: 2.4rem;
    white-space: normal;
    text-align: left;
  }

  .as-line2 {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 8px;
  }

  .as-desc {
    width: 100%;
  }

  .as-desc p {
    text-align: left;
    font-size: 13px;
  }

  .as-subtitle {
    font-size: 2.4rem;
    white-space: normal;
    text-align: left;
    flex: unset;
    width: 100%;
  }

  /* Values: stack as image → label, single column */
  .as-value-item {
    flex-direction: column;
    margin-left: 0;
    padding: 24px 20px;
    gap: 16px;
    min-height: unset;
    align-items: flex-start;
  }

  /* Show only left image, hide right */
  .as-val-img {
    width: 100%;
    height: auto;
  }

  .as-val-img--right {
    display: none;
  }

  /* Remove tilt, show image */
  .as-val-img--left img {
    width: 100%;
    height: 220px;
    transform: none;
    opacity: 1;
  }

  /* Label aligned left below image */
  .as-val-center {
    opacity: 1;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .as-val-word {
    font-size: 2rem;
  }

  .as-val-sub {
    font-size: 12px;
  }

}