/* ===== FONTS ===== */
@font-face {
  font-family: 'Marlidedisplay';
  src: url('../fonts/MarlideDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --white: #fff;
  --black: #000;
  --dark: #181818;
}

/* ===== PASSWORD GATE ===== */
#site-content {
  display: none;
}

html.unlocked #site-content {
  display: block;
}

html.unlocked #password-gate {
  display: none;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.password-gate-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 340px;
}

.password-gate-logo {
  width: 160px;
  height: auto;
}

.password-gate-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.password-gate-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.5rem 0;
  outline: none;
}

.password-gate-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.password-gate-input:focus {
  border-bottom-color: var(--white);
}

.password-gate-button {
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.password-gate-button:hover {
  background-color: var(--white);
  color: var(--black);
}

.password-gate-error {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-align: center;
  display: none;
}

.password-gate-error.is-visible {
  display: block;
}

html {
  /* scroll-behavior handled by JS for snappy easing */
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.br-desktop {
  display: none;
}

@media (min-width: 992px) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
  }
  body::-webkit-scrollbar {
    display: none;
  }
  .br-desktop {
    display: inline;
  }
}

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

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

p {
  margin: 0;
}

/* ===== TYPOGRAPHY ===== */
.heading-h1 {
  font-family: 'Marlidedisplay', serif;
  font-size: 5.5rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
}

.heading-h1.is-white {
  color: var(--white);
}

.heading-h1.is-light {
  color: #fff;
}

.heading-h1.mt-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.subheading {
  text-align: left;
  font-family: 'Marlidedisplay', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.subheading.is-light {
  color: var(--white);
}

.text-52 {
  font-family: 'Marlidedisplay', serif;
  font-size: 3.25rem;
  line-height: 3.625rem;
}

.text-52.is-light {
  color: var(--white);
}

.text-32 {
  font-family: 'Marlidedisplay', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.text-20 {
  font-size: 1.25rem;
  font-weight: 400;
}

.text-20.is-uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.is-light {
  color: var(--white);
  width: 100%;
}

.is-light.text-center.width-750 {
  max-width: 750px;
}

.is-white {
  color: var(--white);
}

.is-white.is-centered {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

/* ===== LAYOUT ===== */
.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-section-large {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.container-large {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  margin-left: 6em;
}

/* ===== EYEBROW TAG ===== */
.eyebrow-tag {
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.15);
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  white-space: nowrap;
  color: var(--black);
}

.eyebrow-tag.light,
.eyebrow-tag.is-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
  width: auto;
  align-self: flex-start;
}

/* ===== NAVBAR ===== */
.main-navbar {
  background-color: #000;
  border-right: 1px solid rgba(255, 248, 223, 0.23);
  width: 6em;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}

.navbar-container {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.brand-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2em;
  display: flex;
}

.nav-logo {
  width: 48px;
}

.nav-links-wrapper {
  z-index: 1;
  gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.nav-link {
  z-index: 1;
  gap: 0.25em;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-direction: column;
  align-items: center;
  font-size: 1.2em;
  text-decoration: none;
  transition: opacity 0.2s;
  display: flex;
  position: relative;
}

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

.nav-link .nav-link-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.5em;
  transition: color 0.2s;
}

.nav-link.is-active .nav-link-text {
  color: var(--white);
}

.nav-background {
  display: none;
}

/* ===== HERO ===== */
.section-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.background-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}

.hero-poster-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.8s ease;
}

.hero-mobile-fallback {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 767px) {
  .hero-poster-img { display: none; }
  .hero-mobile-fallback { display: block; }
}


.vimeo-bg-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  border: none;
}

.hero-logo {
  position: absolute;
  top: 72px;
  z-index: 2;
  max-width: 280px;
  height: auto;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.hero-h1 {
  color: #fff;
  font-family: 'Marlidedisplay', serif;
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hero-h1 { font-size: 2.5rem; }
}

/* ===== TWO COLUMN WRAPPER ===== */
.two-col-wrapper {
  gap: 70px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.two-col-wrapper.reverse {
  flex-direction: row;
}

.two-col-wrapper.conclusion {
  flex-direction: row;
  align-items: stretch;
}

.two-col-wrapper.conclusion .about-image.side {
  height: 100%;
  object-fit: cover;
  max-width: 542px;
  flex-shrink: 0;
}

.about-image {
  width: 100%;
  max-width: 524px;
  max-height: 824px;
  object-fit: cover;
}

.about-image.side {
  max-width: 542px;
}

.content-block {
  gap: 2rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.content-header {
  gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.content-body {
  gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

/* ===== MAP SECTION ===== */
.section-map {
  justify-content: flex-end;
  align-items: flex-start;
  height: 910px;
  display: flex;
  position: relative;
}

.map-embed {
  width: 100%;
  height: 910px;
  position: absolute;
  top: 0;
  left: 0;
  isolation: isolate;
}

.section-map > .padding-global {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.section-map > .padding-global .map-content {
  pointer-events: auto;
}

.map-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 578px;
  display: flex;
  position: relative;
  gap: 16px;
}

/* ===== FEATURED SECTION ===== */
.section {
  border-bottom: 1px solid #000;
}

.featured-wrapper {
  gap: 76px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.featured-left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.featured-sticky {
  gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 450px;
  max-width: 450px;
  display: flex;
  position: sticky;
  top: 0;
}

.featured-main-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-top: 50px;
}

.featured-details {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.featured-details-header {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

/* Articles / Press */
.articles-list {
  gap: 36px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.article-card {
  gap: 24px;
  border-bottom: 1px solid #000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 36px;
  display: flex;
}

.article-card.last {
  border-bottom: none;
}

.article-info {
  gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.article-info a {
  text-decoration: underline;
  font-weight: 600;
}

/* Press articles compact layout */
.articles-list.is-press {
  gap: 0;
}

.articles-list.is-press .article-card {
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  align-items: center;
  border-bottom: 1px solid #000;
}

.articles-list.is-press .article-card.last {
  border-bottom: none;
  padding-bottom: 0;
}

.articles-list.is-press .article-thumb {
  width: 148px;
  min-width: 148px;
  height: 148px;
  object-fit: cover;
  flex-shrink: 0;
}

.article-source-logo {
  display: block;
}

.article-thumb-logo {
  width: 72px;
  min-width: 72px;
  height: 72px;
  background: #f0ede9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.article-thumb-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.article-source {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(88, 89, 91, 0.5);
}

.article-title {
  font-size: 0.9rem;
  line-height: 1.4;
  text-decoration: none;
  color: var(--black);
  display: block;
}

.article-read-more {
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: underline;
  color: var(--black);
  display: block;
  transition: opacity 0.2s;
}

.article-read-more:hover {
  opacity: 0.6;
}

/* Table */
.table-wrapper {
  margin-top: 72px;
}

.table-header {
  background-color: var(--dark);
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  display: flex;
}

.table-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.table-header-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.table-cells {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.table-cell {
  gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 168px;
  padding: 0 30px;
  display: flex;
  text-align: center;
}

.table-cell.mid {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  height: auto;
  padding: 30px;
}

/* ===== BLACK SECTION ===== */
.section-black {
  background-color: var(--dark);
  width: 100%;
}

.black-content {
  gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

/* ===== SLIDER GALLERY ===== */
.slider-pin-wrapper {
  position: relative;
}

.section.is-slider-gallery {
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.slider-gallery-component {
  background-color: #181818;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.slider-bg-component {
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-bg-swiper {
  width: 100%;
  height: 100%;
}

.slider-bg-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-bg-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider-titles-component {
  height: 100%;
  position: relative;
}

.slider-titles-swiper {
  height: 100%;
  overflow: visible;
}

.slider-titles-swiper .swiper-wrapper {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.swiper-slide.is-slider-titles {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: 100%;
  padding: 4%;
  display: flex;
}

.slide-title-content {
  gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.slider-titles-heading {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  white-space: nowrap;
  cursor: default;
  font-family: 'Marlidedisplay', serif;
  font-size: 88px;
  line-height: 0.8;
  transition: color 0.3s, -webkit-text-fill-color 0.3s;
}

.swiper-slide.is-active .slider-titles-heading,
.swiper-slide.swiper-slide-active .slider-titles-heading {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.slide-title-sub {
  gap: 8px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
}

.slider-titles-subheading {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  font-family: 'Marlidedisplay', serif;
  font-size: 52px;
  line-height: 58px;
  transition: color 0.3s, -webkit-text-fill-color 0.3s;
}

.swiper-slide.is-active .slider-titles-subheading,
.swiper-slide.swiper-slide-active .slider-titles-subheading {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.slider-gallery-bottom {
  gap: 1.5em;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 2em;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: relative;
}

.slider-button-wrapper {
  gap: 1em;
  display: flex;
}

.slider-gallery-button {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 4.13em;
  height: 4.13em;
  transition: background-color 0.2s, color 0.2s;
  display: flex;
  cursor: pointer;
  border: none;
}

.slider-gallery-button:hover {
  color: #000;
  background-color: #fff;
}

.slider-button-icon {
  width: 40%;
  height: 40%;
}

.slider-button-icon.is-reversed {
  transform: rotate(-180deg);
}

.slider-gallery-numbers {
  color: var(--white);
  letter-spacing: 0.04em;
  font-size: 1.38em;
  line-height: 1;
}

.slider-thumbs-component {
  width: auto;
  max-width: 35%;
}

.slider-thumbs-overflow {
  overflow: hidden;
}

.slider-thumbs-inner {
  width: 100%;
}

.slider-thumbs-swiper {
  width: 100%;
  overflow: visible;
}

.slider-thumbs-swiper .swiper-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.swiper-slide.is-slider-thumbs {
  flex: none;
  width: 120px;
  padding-right: 0.4em;
}

.slider-thumb-height {
  padding-top: 70%;
  position: relative;
}

.slider-thumb-img {
  cursor: pointer;
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ===== VIDEOS SECTION (Reel style) ===== */
.section-videos {
  padding-top: 80px;
  padding-bottom: 80px;
}

.videos-wrapper {
  gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.videos-subtitle {
  max-width: 620px;
}

.videos-grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

/* Eyebrow centering overrides for center-aligned sections */
.videos-wrapper .eyebrow-tag,
.join-header .eyebrow-tag,
.black-content .eyebrow-tag {
  align-self: center;
}

/* Center headings in videos and views sections */
.videos-wrapper .heading-h1,
.join-header .heading-h1 {
  text-align: center;
}

/* Footer social icons: white on dark footer */
.footer .social-icon {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.footer .footer-socials a:hover .social-icon {
  opacity: 1;
}

/* Reel video cards — height-based sizing so all three share the same row height */
.reel-video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  /* shrink to share the row evenly instead of overflowing the viewport
     (was flex-shrink: 0, which forced a horizontal scrollbar on mid-size
     desktop widths); aspect-ratio on the wrapper keeps each one square */
  flex: 1 1 0;
  min-width: 0;
  max-width: 405px;
}

.reel-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 405px;
  background: #181818;
  overflow: hidden;
}

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

.reel-video-link {
  display: block;
}

.reel-controls {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.reel-fullscreen-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
}

.reel-video-wrapper:fullscreen,
.reel-video-wrapper:-webkit-full-screen {
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.reel-video-wrapper:fullscreen .reel-video,
.reel-video-wrapper:-webkit-full-screen .reel-video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.reel-btn {
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
  padding: 0;
}

.reel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.reel-btn svg {
  width: 20px;
  height: 20px;
}

.reel-label {
  font-family: 'Marlidedisplay', serif;
  font-size: 3.25rem;
  line-height: 3.625rem;
  text-align: center;
}

/* ===== DARK SECTION (Top Agent Network) ===== */
.section-dark {
  background-color: var(--dark);
}

.section-dark .dot {
  background-color: var(--white);
}

/* Alternating 50/50 blocks: text column and image column each take half */
.section-dark .dark-split {
  gap: 64px;
  align-items: center;
}

.section-dark .dark-split > * {
  flex: 1 1 0;
  min-width: 0;
  width: 50%;
}

.section-dark .dark-split + .dark-split {
  margin-top: 96px;
}

/* Every image in this section shares one portrait frame and fills it */
.section-dark .about-image.side {
  width: 100%;
  max-width: none;
  aspect-ratio: 39 / 40;
  height: auto;
  max-height: none;
  object-fit: cover;
}

.kw-logo {
  width: auto;
  max-width: 340px;
  height: 24px;
  object-fit: contain;
  object-position: left center;
}

@media screen and (max-width: 991px) {
  .section-dark .dark-split > * {
    width: 100%;
  }

  /* Always stack the image on top when the block collapses */
  .section-dark .dark-split .about-image.side {
    order: -1;
  }

  .section-dark .dark-split + .dark-split {
    margin-top: 56px;
  }

  .section-dark .about-image.side {
    max-height: 477px;
  }
}

.line-divider {
  background-color: #fff;
  width: 100%;
  height: 1px;
}

.dot {
  background-color: #fff;
  border-radius: 100%;
  min-width: 6px;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  margin-top: 8px;
}

.bullet-list {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.bullet-item {
  gap: 12px;
  display: flex;
  align-items: flex-start;
}

.bullet-item p {
  line-height: 1.5;
}

/* ===== FEATURES SECTION ===== */
.features-wrapper {
  gap: 100px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.features-list {
  width: 100%;
  max-width: 548px;
}

.features-item {
  gap: 10px;
  border-bottom: 1px solid #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 0;
  display: flex;
}

.features-item.last {
  border-bottom: none;
}

.feature-row {
  gap: 10px;
  display: flex;
  align-items: center;
}

.features-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.features-inner {
  gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.social-links {
  gap: 32px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-link {
  display: inline-block;
}

.social-link img {
  width: 32px;
  height: 32px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-buttons .mkt-btn {
  margin-top: 0;
}

/* Instagram follower count-up stat under the checklist */
.follower-stat {
  margin-top: 28px;
  padding-top: 28px;
}

.follower-stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.follower-number {
  font-family: 'Marlidedisplay', serif;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.verified-badge {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.follower-label {
  margin-top: 10px;
  font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.section-cta {
  background-image: url('../images/cta-bg.jpg');
  background-position: center;
  background-size: cover;
}

.section-cta.about {
  background-image: url('../images/jenn-images/views-cta-bg.webp');
  background-position: center;
  background-size: cover;
  position: relative;
}

.section-cta.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.section-cta.about .padding-global {
  position: relative;
  z-index: 1;
}

.join-wrapper {
  gap: 2.625rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1068px;
  margin: 0 auto;
  display: flex;
}

.join-header {
  gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.stats-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.stat-item {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 190px;
  display: flex;
}

/* Reserve width for the number so the count-up can't reflow the row / dividers */
.stat-item .text-52 {
  display: block;
  min-width: 6ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stat-item.middle {
  border-right: 1px solid var(--white);
  border-left: 1px solid var(--white);
  max-width: none;
  padding: 0 140px;
}

/* ===== STATS SECTION ===== */
.section-stats {
  padding-top: 100px;
  padding-bottom: 100px;
}

.stats-wrapper {
  gap: 165px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.stats-text-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  gap: 16px;
}

.stats-numbers {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 516px;
  display: flex;
}

.stats-number-item {
  border-bottom: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  display: flex;
}

.stats-number-item:last-child {
  border-bottom: none;
}

/* Logos */
.logos-container {
  gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 70px;
  display: flex;
}

.logos-grid {
  display: grid;
  gap: 61px;
  justify-items: center;
  align-items: center;
  width: 100%;
}

.logos-grid.four-col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.logos-grid.five-col {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.logo {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.logo img {
  max-height: 40px;
  object-fit: contain;
}

/* Marquee variant (built by JS, shown only on small screens - see mobile block) */
.logos-marquee {
  display: none;
}

/* ===== STRATEGY SECTION ===== */
.section-strategy {
  background-image: url('../images/jenn-images/strategy-bg.jpg');
  background-position: center;
  background-size: cover;
  padding: 116px 0;
  position: relative;
}

.section-strategy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

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

.strategy-wrapper {
  gap: 195px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.strategy-wrapper.strategy-no-video {
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.strategy-content {
  gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  display: flex;
}

.strategy-video {
  width: 333px;
  min-width: 333px;
  height: 590px;
  flex-shrink: 0;
}

/* ===== CONCLUSION ===== */
.benefits-list {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.benefit-item {
  gap: 10px;
  display: flex;
  align-items: flex-start;
}

.benefit-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark);
  padding: 100px 0;
}

.footer-wrapper {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.footer-wrapper.mobile {
  display: none;
}

.footer-center {
  gap: 48px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-center img {
  max-width: 200px;
  height: auto;
}

.footer-contact-row {
  gap: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.phone {
  color: var(--white);
  text-decoration: none;
  -webkit-text-fill-color: var(--white);
}

.phone.middle {
  border-right: 1px solid var(--white);
  border-left: 1px solid var(--white);
  padding: 0 24px;
}

.footer-socials {
  gap: 14px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-icon {
  width: 24px;
  height: 24px;
}

.built-by {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.built-by a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.built-by a:hover {
  text-decoration: underline;
}

.footer-copyrights {
  gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.copyright {
  color: rgba(88, 89, 91, 0.5);
  font-size: 12px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media screen and (max-width: 991px) {
  .main-navbar {
    display: none;
  }

  .main-wrapper {
    margin-left: 0;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .two-col-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .two-col-wrapper.reverse {
    flex-direction: column;
  }

  .two-col-wrapper.conclusion {
    flex-direction: column;
  }

  .two-col-wrapper.conclusion .about-image.side {
    height: auto;
  }

  .about-image,
  .about-image.side {
    max-width: 100%;
  }

  .featured-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .featured-sticky {
    min-width: 100%;
    max-width: 100%;
    position: relative;
  }

  .features-wrapper {
    /* reverse so the eyebrow / headline / body / buttons / social icons stack
       on top of the checkmark list on small screens */
    flex-direction: column-reverse;
    gap: 40px;
  }

  .stats-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .strategy-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .strategy-video {
    width: 100%;
    max-width: 333px;
  }

  .stat-item.middle {
    padding: 0 40px;
  }

  .section-map {
    height: auto;
    min-height: 860px;
  }

  .slider-titles-heading {
    font-size: 15vw;
  }

  .slider-thumbs-component {
    display: none;
  }

  .slider-gallery-bottom {
    flex-wrap: wrap;
  }

  .table-cells {
    grid-template-columns: 1fr;
  }

  .table-cell {
    height: auto;
    padding: 30px;
  }

  .table-cell.mid {
    border-left: none;
    border-right: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .footer-wrapper.desktop {
    display: none;
  }

  .footer-wrapper.mobile {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    display: flex;
  }

  .footer-wrapper.mobile img {
    max-width: 180px;
    height: auto;
  }

  .footer-contact-row--mobile {
    flex-direction: column;
    gap: 6px;
  }

  .footer-contact-row--mobile .phone {
    font-size: 12px;
  }

  .footer-contact-row--mobile .phone.middle {
    border: none;
    padding: 0;
  }

  .logos-grid.four-col {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .logos-grid.five-col {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

}

/* Mobile */
@media screen and (max-width: 767px) {
  .heading-h1 {
    font-size: 3.75rem;
  }

  .text-52,
  .text-58,
  .reel-label {
    font-size: 45px;
    line-height: 1.1;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-section-large {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-videos .heading-h1 {
    text-align: center;
  }

  .videos-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .reel-video-card {
    flex: 0 0 auto;
    width: min(320px, 100%);
  }

  .stats-row {
    flex-direction: column;
    gap: 30px;
  }

  .stat-item p:not([class*="text-52"]) {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .stat-item.middle {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    padding: 30px 0;
    width: 100%;
    max-width: none;
  }

  .section-map {
    height: auto;
    min-height: 850px;
  }

  .map-embed {
    height: 850px;
  }

  .article-card {
    flex-direction: column;
  }

  .articles-list.is-press .article-card {
    flex-direction: row;
    align-items: center;
  }

  .feature-row {
    align-items: flex-start;
  }

  .feature-row img {
    margin-top: 3px;
  }

  .stats-number-item .text-20 {
    text-align: right;
    font-size: 1rem;
  }

  .featured-details-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .slider-titles-heading {
    font-size: 60px;
    white-space: normal;
    word-break: break-word;
  }

  .slider-titles-subheading {
    font-size: 32px;
  }

  .swiper-slide.is-slider-titles {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5%;
    padding-top: 100px;
  }

  .slide-title-sub {
    flex-wrap: wrap;
    justify-content: center;
  }

  .slider-gallery-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .logos-grid.four-col,
  .logos-grid.five-col {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Swap the cramped logo grid for a continuous marquee on mobile */
  .logos-container {
    display: none;
  }

  .logos-marquee {
    display: block;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  }

  .logos-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: logos-scroll 38s linear infinite;
  }

  .logos-marquee .logo {
    flex: 0 0 auto;
    width: auto;
    padding: 0 26px;
  }

  /* Optically matched sizes - text wordmarks sit shorter than icon marks so
     they don't visually dominate; compact / icon marks get a little more height */
  .logos-marquee .logo img {
    max-height: 30px;
    width: auto;
  }

  .logos-marquee .logo img[alt="YouTube"] { max-height: 24px; }
  .logos-marquee .logo img[alt="Facebook"] { max-height: 22px; }
  .logos-marquee .logo img[alt="SFGate"] { max-height: 24px; }
  .logos-marquee .logo img[alt="The Wall Street Journal"] { max-height: 20px; }
  .logos-marquee .logo img[alt="Financial Times"] { max-height: 21px; }
  .logos-marquee .logo img[alt="Mansion Global"] { max-height: 19px; }
  .logos-marquee .logo img[alt="Realtor.com"] { max-height: 28px; }
  .logos-marquee .logo img[alt="Architectural Digest"] { max-height: 40px; }
  .logos-marquee .logo img[alt="Juwai"] { max-height: 40px; }

  @keyframes logos-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @media (prefers-reduced-motion: reduce) {
    .logos-marquee-track { animation: none; }
  }

  .strategy-wrapper.strategy-no-video {
    max-width: 100%;
  }
}

/* ===== MARKETING SECTION ===== */
.section-marketing {
  background-color: var(--white);
}

/* Drop the section's bottom padding so it doesn't stack with the next section's top padding */
.section-marketing > .padding-global {
  padding-bottom: 0;
}

.marketing-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
}

.marketing-header p {
  max-width: 750px;
}

.marketing-block {
  align-items: center;
}

.marketing-block + .marketing-block {
  margin-top: 90px;
}

.section-marketing .content-header h3 {
  margin: 0;
  font-weight: 400;
}

.section-marketing .dot {
  background-color: var(--dark);
}

/* Preview website button */
.mkt-btn {
  display: inline-block;
  margin-top: 0.5rem;
  align-self: flex-start;
  border: 1px solid var(--dark);
  background-color: transparent;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.25rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mkt-btn:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* Light variant for dark backgrounds */
.mkt-btn.is-light {
  border-color: var(--white);
  color: var(--white);
}

.mkt-btn.is-light:hover {
  background-color: var(--white);
  color: var(--dark);
}

.black-content .mkt-btn {
  align-self: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
}

.mkt-video-card:hover .mkt-video-texthead .mkt-btn {
  background-color: var(--dark);
  color: var(--white);
}

/* Browser mockup frame */
.browser-frame {
  width: 100%;
  max-width: 640px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-color: #fff;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  background-color: #f1f1f1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cfcfcf;
}

.browser-screen {
  display: block;
  width: 100%;
  height: auto;
}

/* Story-driven video grid (merged into video block) */
.marketing-video-intro {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.marketing-video-intro .eyebrow-tag {
  align-self: center;
}

.marketing-video-intro h3 {
  margin: 0;
  font-weight: 400;
}

.mkt-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.mkt-video-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.mkt-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 9;
  overflow: hidden;
  background: #181818;
  margin-bottom: 20px;
}

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

.mkt-video-card:hover .mkt-video-thumb img {
  transform: scale(1.04);
}

/* Slight in-frame zoom to crop a hairline edge on one side */
.mkt-video-thumb.nudge-left img {
  transform: scale(1.06);
  transform-origin: right center;
}

.mkt-video-thumb.nudge-right img {
  transform: scale(1.06);
  transform-origin: left center;
}

.mkt-video-card:hover .mkt-video-thumb.nudge-left img {
  transform: scale(1.1);
  transform-origin: right center;
}

.mkt-video-card:hover .mkt-video-thumb.nudge-right img {
  transform: scale(1.1);
  transform-origin: left center;
}

.mkt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(24, 24, 24, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.mkt-video-card:hover .mkt-play {
  background: rgba(24, 24, 24, 0.92);
}

.mkt-play svg {
  width: 26px;
  height: 26px;
  color: #fff;
  margin-left: 3px;
}

.mkt-play.is-link svg {
  width: 22px;
  height: 22px;
  margin-left: 0;
}

.mkt-video-title {
  font-family: 'Marlidedisplay', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 10px;
}

.mkt-video-copy {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Wide card — image spans two columns, text stays below in the first column */
.mkt-video-card.is-wide {
  grid-column: span 2;
}

/* Wide thumb: ~2 columns + gutter wide, but the same height as a single-column thumb
   so the title/copy below line up with the neighbouring card. */
.mkt-video-card.is-wide .mkt-video-thumb {
  aspect-ratio: 7 / 3;
}

/* Title on the left, View button aligned to the far (image) edge, tops aligned */
.mkt-video-texthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.mkt-video-texthead .mkt-btn {
  flex-shrink: 0;
  margin-top: 0;
}

/* Body copy stays under the first column */
.mkt-video-card.is-wide .mkt-video-copy {
  max-width: calc((100% - 32px) / 2);
}

.mkt-video-text {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 991px) {
  .marketing-header {
    margin-bottom: 60px;
  }

  .marketing-block + .marketing-block {
    margin-top: 60px;
  }

  /* Stack the browser mockup above the text when the block collapses */
  .two-col-wrapper.marketing-block {
    flex-direction: column-reverse;
  }

  .browser-frame {
    max-width: 100%;
  }

  .marketing-video-intro {
    margin-bottom: 40px;
  }

  .mkt-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .mkt-video-card.is-wide {
    grid-column: auto;
  }

  .mkt-video-card.is-wide .mkt-video-thumb {
    aspect-ratio: 10 / 9;
  }

  .mkt-video-card.is-wide .mkt-video-copy {
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .mkt-video-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Wide card: stack title, copy, then button */
  .mkt-video-card.is-wide .mkt-video-texthead {
    display: contents;
  }

  .mkt-video-card.is-wide .mkt-video-title {
    order: 1;
    margin-bottom: 14px;
  }

  .mkt-video-card.is-wide .mkt-video-copy {
    order: 2;
  }

  .mkt-video-card.is-wide .mkt-video-texthead .mkt-btn {
    order: 3;
    align-self: flex-start;
    margin-top: 20px;
  }
}


/* ===== SCROLL REVEAL (soft fade-in as you scroll) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
