:root {
  --font-display: "Sora", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ink: #12131a;
  --ink-soft: #252735;
  --paper: #fbfaf6;
  --paper-2: #f1f4f7;
  --white: #ffffff;
  --red: #d71920;
  --red-dark: #a80f18;
  --blue: #0b6f8a;
  --cyan: #74c2cf;
  --pearl: #f3eadc;
  --champagne: #c8b894;
  --lime: #f3eadc;
  --violet: #7657ff;
  --green: #007c73;
  --muted: #6b7280;
  --line: rgba(18, 19, 26, 0.13);
  --shadow: 0 24px 70px rgba(18, 19, 26, 0.16);
  --radius: 8px;
  --max: 1180px;
  --scroll-progress: 0%;
  --hero-bg-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: var(--scroll-progress);
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--champagne));
  box-shadow: 0 0 24px rgba(215, 25, 32, 0.28);
  pointer-events: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px;
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease, transform 0.3s ease;
}

/* scroll down -> header slides away (all screens); scroll up brings it back */
.site-header.nav-hidden {
  transform: translateY(-120%);
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 8px 32px rgba(18, 19, 26, 0.1);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 10px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
}

.nav-cta svg,
.button svg,
.text-link svg,
.feature-list svg,
.pillar-card svg,
.guide-grid svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.35;
}

.section {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

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

.hero {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 128px 16px 24px;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  opacity: 0.2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, black, transparent 62%);
  animation: gridDrift 18s linear infinite;
}

.hero::after {
  opacity: 0.22;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.34) 48%, transparent 56% 100%);
  transform: translateX(-120%);
  animation: heroSweep 8s ease-in-out infinite;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08) translate3d(0, var(--hero-bg-y), 0);
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 14, 0.88) 0%, rgba(8, 9, 14, 0.64) 42%, rgba(8, 9, 14, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 9, 14, 0.92) 0%, rgba(8, 9, 14, 0) 42%);
}

.home-document .hero-bg img {
  object-position: 58% center;
  filter: saturate(1.04) contrast(1.04);
}

.home-document .hero-overlay {
  background:
    radial-gradient(circle at 56% 33%, rgba(8, 9, 14, 0.08), rgba(8, 9, 14, 0.42) 35%, transparent 54%),
    linear-gradient(90deg, rgba(8, 9, 14, 0.93) 0%, rgba(8, 9, 14, 0.74) 34%, rgba(8, 9, 14, 0.22) 58%, rgba(8, 9, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 9, 14, 0.92) 0%, rgba(8, 9, 14, 0.1) 46%);
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 40px;
  align-items: end;
}

.home-document .hero-shell {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  align-items: end;
}

.home-document .hero-copy {
  max-width: 660px;
}

.hero-copy {
  padding-bottom: 34px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
}

.hero .eyebrow,
.section-dark .eyebrow,
.section-ink .eyebrow,
.broadcast-card .eyebrow,
.instagram-module .eyebrow,
.reasons-cta .eyebrow {
  color: var(--pearl);
}

.eyebrow-red {
  color: var(--red);
}

.eyebrow-blue {
  color: var(--muted);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(215, 25, 32, 0.24);
  animation: livePulse 1.8s ease-out infinite;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  font-weight: 800;
}

h1 .headline-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  animation: headlineIn 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

h1 .headline-line:nth-child(2) {
  animation-delay: 90ms;
}

h1 .headline-line:nth-child(3) {
  animation-delay: 180ms;
}

h1 .headline-line:nth-child(4) {
  animation-delay: 270ms;
}

h1 .desktop-inline {
  display: inline;
}

h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero-lede {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.75vw, 1.35rem);
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: fadeUp 760ms cubic-bezier(0.16, 1, 0.3, 1) 420ms forwards;
}

.hero-actions,
.webinar-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: fadeUp 760ms cubic-bezier(0.16, 1, 0.3, 1) 560ms forwards;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.32) 48%, transparent 62% 100%);
  transform: translateX(-65%);
  transition: transform 520ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(65%);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.pillar-card:hover,
.pillar-card:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-cta:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible,
.text-link:focus-visible,
.pillar-card:focus-visible,
.play-button:focus-visible,
.youtube-card:focus-visible,
.social-feed a:focus-visible,
.social-channel-card:focus-visible,
.youtube-video-card:focus-visible,
.footer-social a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(215, 25, 32, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  background: var(--pearl);
  color: var(--ink);
}

.button-ghost,
.button-dark-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-dark-ghost {
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  opacity: 0;
  transform: translate3d(28px, 26px, 0) scale(0.98);
  animation: panelIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 620ms forwards;
}

.home-document .hero-panel {
  max-width: 380px;
  justify-self: end;
  margin-bottom: 72px;
}

.home-document .video-tile {
  aspect-ratio: 16 / 10;
}

.home-document .signal-grid div {
  background: rgba(18, 19, 26, 0.54);
}

.video-tile,
.youtube-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-tile {
  aspect-ratio: 4 / 3;
}

.video-tile img,
.youtube-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-tile::after,
.youtube-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.06) 65%);
}

.play-button {
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.video-tile .play-button {
  left: 22px;
  top: 22px;
  animation: playPulse 2.4s ease-in-out infinite;
}

.play-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

span.play-button {
  display: grid;
}

.video-caption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.video-caption span,
.signal-grid span,
.webinar-stack span,
.feature-brief span,
.brief-card span,
.social-feed span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.video-caption strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1.03;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.signal-grid div {
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(18, 19, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.signal-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
}

.live-ribbon {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: fadeUp 760ms cubic-bezier(0.16, 1, 0.3, 1) 780ms forwards;
}

.live-ribbon::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
  box-shadow: 0 0 28px rgba(215, 25, 32, 0.5);
}

.live-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 87, 255, 0.08), transparent);
  transform: translateX(-120%);
  animation: ribbonScan 5.5s ease-in-out infinite;
  pointer-events: none;
}

.ribbon-label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

.ribbon-title {
  font-family: var(--font-display);
  font-weight: 800;
}

.ribbon-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.ribbon-meta a {
  color: var(--blue);
}

.ticker {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  border-block: 1px solid rgba(18, 19, 26, 0.12);
}

.ticker-track {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  padding-inline: 24px;
  animation: marquee 34s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 800;
  white-space: nowrap;
}

.live-ribbon > * {
  position: relative;
  z-index: 1;
}

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

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 156px 78px;
  }
}

@keyframes heroSweep {
  0%,
  46% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 25, 32, 0.42);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(215, 25, 32, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(215, 25, 32, 0);
  }
}

@keyframes headlineIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes panelIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes playPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes ribbonScan {
  0%,
  45% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  filter: blur(10px);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-4px);
  box-shadow: 0 28px 90px rgba(18, 19, 26, 0.2);
}

.tilt-card:hover img {
  transform: scale(1.07);
}

.intro {
  padding-top: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.section-heading.inverted {
  color: var(--white);
}

.section-lede {
  max-width: 840px;
  margin: 0 0 36px auto;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pillar-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: 22px;
  color: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pillar-card.red {
  background: var(--red);
}

.pillar-card.blue,
.pillar-card.green,
.pillar-card.purple {
  background: var(--ink);
}

.pillar-card span {
  display: block;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.pillar-card strong {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 58px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 620px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.split-media.is-visible img {
  transform: scale(1);
}

.split-copy p:not(.eyebrow),
.life-copy p,
.project-hero p,
.media-grid p,
.book-copy p,
.webinar-main p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.feature-list div {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.feature-list svg {
  color: var(--blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  font-weight: 900;
  transition: transform 160ms ease;
}

.section-ink {
  width: 100%;
  max-width: none;
  background: var(--ink);
  padding: 110px max(16px, calc((100vw - var(--max)) / 2));
}

.webinar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 16px;
}

.webinar-main {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 32px;
}

.webinar-date {
  height: 130px;
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
}

.webinar-date span,
.webinar-date strong {
  display: block;
  font-family: var(--font-display);
  line-height: 1;
}

.webinar-date span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 900;
}

.webinar-date strong {
  font-size: 4rem;
}

.status-pill {
  display: inline-flex;
  margin: 0 0 14px;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  background: rgba(0, 87, 255, 0.1);
  color: var(--blue) !important;
  padding: 0 12px;
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.webinar-stack {
  display: grid;
  gap: 16px;
}

.webinar-stack article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.webinar-stack strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.18;
}

.newsroom {
  padding-bottom: 80px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 0.75fr));
  gap: 14px;
}

.feature-brief,
.brief-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
}

.feature-brief {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(0deg, rgba(18, 19, 26, 0.86), rgba(18, 19, 26, 0.16)),
    url("./assets/manama-sunset.jpg") center / cover;
  color: var(--white);
}

.feature-brief p {
  color: rgba(255, 255, 255, 0.78);
}

.brief-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brief-card span {
  color: var(--red);
}

.brief-card h3 {
  font-size: 1.4rem;
}

.life-guide {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.life-copy {
  position: sticky;
  top: 116px;
}

.guide-grid {
  display: grid;
  gap: 14px;
}

.guide-grid article {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}

.guide-grid svg {
  color: var(--red);
  width: 30px;
  height: 30px;
  margin-bottom: 46px;
}

.guide-grid h3 {
  font-size: 1.7rem;
}

.guide-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.life-document {
  background: var(--paper);
}

.life-hero {
  align-content: center;
  padding-bottom: 72px;
}

.life-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 14, 0.86) 0%, rgba(8, 9, 14, 0.62) 44%, rgba(8, 9, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 9, 14, 0.9) 0%, rgba(8, 9, 14, 0) 48%);
}

.life-hero-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  align-items: center;
}

.life-hero .hero-copy {
  padding-bottom: 0;
}

.life-hero h1 {
  max-width: 780px;
  font-size: clamp(3.65rem, 6.5vw, 6.35rem);
}

.life-hero h1 .headline-line {
  display: inline;
  opacity: 1;
  transform: none;
  animation: none;
}

.life-brief-card {
  min-width: 0;
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(18, 19, 26, 0.72);
  color: var(--white);
  padding: 26px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.life-brief-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.life-mini-grid {
  display: grid;
  gap: 12px;
}

.life-mini-grid div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 14px;
}

.life-mini-grid span,
.life-signal-strip span,
.area-card span,
.life-command-grid span,
.arrival-timeline strong {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.life-mini-grid strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.life-signal-strip {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100vw - 32px));
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -46px auto 0;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.life-signal-strip strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.life-signal-strip a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.life-command-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.life-command-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.life-command-grid article:hover,
.life-command-grid article:focus-within {
  transform: translateY(-3px);
  border-color: rgba(0, 87, 255, 0.28);
  box-shadow: var(--shadow);
}

.life-command-grid svg {
  width: 34px;
  height: 34px;
  margin: 40px 0 24px;
  color: var(--blue);
}

.life-command-grid h3 {
  font-size: 1.55rem;
}

.life-command-grid p {
  margin: auto 0 0;
  color: var(--muted);
}

.area-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.area-copy {
  position: sticky;
  top: 116px;
}

.area-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.area-rail {
  display: grid;
  gap: 14px;
}

.area-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  color: var(--ink);
}

.area-card.is-wide {
  min-height: 520px;
  position: relative;
  color: var(--white);
}

.area-card.is-wide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.area-card.is-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 19, 26, 0.84), rgba(18, 19, 26, 0.06) 70%);
}

.area-card.is-wide div {
  position: relative;
  z-index: 1;
}

.area-card.is-wide:hover img {
  transform: scale(1.06);
}

.area-card.red {
  background: var(--red);
  color: var(--white);
}

.area-card.blue,
.area-card.green {
  background: var(--ink);
  color: var(--white);
}

.area-card.red span,
.area-card.blue span,
.area-card.green span,
.area-card.is-wide span {
  color: var(--pearl);
}

.area-card h3 {
  margin-top: 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

.area-card p {
  max-width: 640px;
  margin-bottom: 0;
  color: inherit;
  opacity: 0.78;
}

.life-system {
  margin-top: 0;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.system-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 24px;
}

.system-grid svg {
  width: 32px;
  height: 32px;
  color: var(--pearl);
}

.system-grid h3 {
  font-size: 1.45rem;
}

.system-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.arrival-plan {
  border-top: 1px solid var(--line);
}

.arrival-timeline {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.arrival-timeline article {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.arrival-timeline article:last-child {
  border-bottom: 0;
}

.arrival-timeline strong {
  color: var(--red);
}

.arrival-timeline span {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.life-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
  gap: 48px;
  align-items: center;
}

.life-story-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
}

.life-story-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.life-story-media.is-visible img {
  transform: scale(1.04);
}

.life-story-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.life-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.projects {
  width: 100%;
  max-width: none;
  padding: 0;
}

.project-hero {
  min-height: 740px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 96px max(16px, calc((100vw - var(--max)) / 2));
}

.project-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 12, 18, 0.72), rgba(10, 12, 18, 0.02) 62%),
    linear-gradient(90deg, rgba(10, 12, 18, 0.66) 0%, rgba(10, 12, 18, 0.3) 46%, rgba(10, 12, 18, 0) 72%);
}

.project-hero div {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.project-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.75fr);
  gap: 16px;
}

.youtube-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.youtube-card:hover,
.youtube-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(215, 25, 32, 0.28);
  box-shadow: var(--shadow);
}

.youtube-frame {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  box-shadow: none;
}

.youtube-frame .play-button {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.red-play {
  color: var(--white);
  background: var(--red);
}

.youtube-card h3,
.youtube-card p,
.channel-link {
  margin-left: 24px;
  margin-right: 24px;
}

.youtube-card h3 {
  margin-top: 22px;
}

.youtube-card p {
  margin-bottom: 18px;
}

.channel-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 900;
}

.social-feed {
  display: grid;
  gap: 16px;
}

.social-feed a {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-feed a:hover,
.social-feed a:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.social-feed a:nth-child(2) {
  background: var(--blue);
}

.social-feed a:nth-child(3) {
  background: var(--red);
}

.social-feed strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.12;
}

.social-feed small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.35;
}

.socials-document {
  background: var(--paper);
}

.socials-hero {
  min-height: 100dvh;
  align-content: center;
  padding-bottom: 72px;
}

.socials-hero .hero-overlay {
  background:
    radial-gradient(circle at 76% 20%, rgba(215, 25, 32, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(8, 9, 14, 0.9) 0%, rgba(8, 9, 14, 0.68) 45%, rgba(8, 9, 14, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 9, 14, 0.92) 0%, rgba(8, 9, 14, 0) 48%);
}

.socials-hero-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.08fr);
  align-items: center;
}

.socials-hero .hero-copy {
  padding-bottom: 0;
}

.socials-hero h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 6vw, 6.1rem);
}

.social-embed-stage {
  min-width: 0;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 19, 26, 0.72);
  padding: 14px;
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.social-stage-top,
.social-stage-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.social-stage-top span,
.social-stage-meta span,
.social-channel-card span,
.youtube-video-card span,
.instagram-fallback span {
  display: block;
  color: var(--pearl);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.social-stage-top strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.social-video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--ink);
}

.social-video-shell iframe,
.social-video-shell lite-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-video-shell lite-youtube {
  display: block;
  max-width: none;
  background-position: center;
  background-size: cover;
}

.social-video-shell lite-youtube::before {
  padding-bottom: 0;
}

.social-stage-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.social-stage-meta span {
  overflow-wrap: anywhere;
}

/* featured podcast block (homepage + socials) */
.section.podcast-feature {
  background: linear-gradient(150deg, #14151d 0%, #1c0f12 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: clamp(44px, 6vw, 92px);
  margin-block: clamp(40px, 6vw, 80px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.podcast-feature .section-heading {
  margin-bottom: 22px;
}

.podcast-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.podcast-copy {
  min-width: 0;
}

.podcast-copy h2 {
  margin-bottom: 6px;
}

.podcast-lede {
  color: #fff;
  font-size: 1.14rem;
  line-height: 1.65;
  margin: 14px 0 26px;
  max-width: 48ch;
}

.podcast-lede strong {
  color: var(--gold, #e8c56b);
}

.podcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 860px) {
  .podcast-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.social-stage-meta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.social-proof-row {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -46px auto 0;
}

.social-proof-row div {
  min-height: 104px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow);
}

.social-proof-row span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.social-proof-row strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.channel-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-channel-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-channel-card:hover,
.social-channel-card:focus-visible,
.youtube-video-card:hover,
.youtube-video-card:focus-visible,
.social-conversion-card:hover,
.social-conversion-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.social-channel-card.youtube {
  background: linear-gradient(135deg, var(--red), #721018);
}

.social-channel-card.instagram {
  background:
    radial-gradient(circle at 20% 18%, rgba(200, 184, 148, 0.28), transparent 30%),
    linear-gradient(135deg, #7657ff, #d71920 58%, #12131a);
}

.social-channel-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: auto;
}

.social-channel-card h3 {
  margin-top: 52px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.social-channel-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.social-channel-card strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 16px;
  color: var(--white);
}

.youtube-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.youtube-video-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.youtube-video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--paper-2);
}

.youtube-video-card span {
  margin: 20px 20px 0;
  color: var(--red);
}

.youtube-video-card strong {
  display: block;
  margin: auto 20px 22px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.14;
}

.instagram-module {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(520px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.instagram-copy,
.instagram-embed-card,
.social-conversion-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.instagram-copy {
  min-width: 0;
  overflow: hidden;
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 22px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(30px, 4vw, 54px);
}

.instagram-copy h2 {
  max-width: 100%;
  font-size: clamp(2.6rem, 3.35vw, 4rem);
  overflow-wrap: anywhere;
}

.instagram-handle {
  margin: -10px 0 0;
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
  font-weight: 800;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.instagram-copy .button {
  width: auto;
  max-width: 100%;
  padding-inline: 28px;
}

.instagram-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  overflow-wrap: break-word;
}

.instagram-embed-card {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 18%, rgba(200, 184, 148, 0.24), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(0, 87, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #7657ff, #d71920 54%, #12131a);
  color: var(--white);
  padding: 28px;
}

.instagram-embed-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.instagram-profile-embed {
  position: relative;
  z-index: 2;
  width: min(100%, 640px) !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.instagram-fallback {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  display: grid;
  gap: 16px;
  border-radius: var(--radius);
  background: rgba(18, 19, 26, 0.72);
  padding: clamp(24px, 4vw, 34px);
  backdrop-filter: blur(16px);
  color: var(--white);
}

.instagram-fallback strong {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.instagram-fallback p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.social-conversion-card {
  display: grid;
  justify-items: start;
  gap: 24px;
  background: var(--white);
  padding: clamp(28px, 5vw, 58px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-conversion-card h2 {
  max-width: 980px;
}

.social-conversion-card p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.social-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.book {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.book-copy h2 {
  max-width: 720px;
}

.booking-form {
  display: grid;
  gap: 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  padding: 0 14px;
}

.booking-form textarea {
  min-height: 122px;
  padding: 14px;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.booking-form select option {
  color: var(--ink);
}

.booking-form button {
  margin-top: 8px;
}

.why-document {
  background: var(--paper);
}

.why-hero .hero-bg img {
  object-position: center;
}

.why-hero-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
}

.why-briefing-card {
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(18, 19, 26, 0.74);
  color: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translate3d(28px, 26px, 0) scale(0.98);
  animation: panelIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 620ms forwards;
}

.why-briefing-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.why-briefing-card .status-pill {
  background: rgba(200, 184, 148, 0.12);
  color: var(--pearl) !important;
}

.briefing-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.briefing-stat-grid div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px;
}

.briefing-stat-grid span,
.source-strip span,
.decision-card span,
.question-grid span,
.source-grid span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.briefing-stat-grid span {
  color: rgba(255, 255, 255, 0.62);
}

.briefing-stat-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.18;
}

.source-strip {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100vw - 32px));
  margin: -1px auto 0;
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 18px 22px;
}

.source-strip span {
  color: var(--red);
}

.source-strip strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
}

.source-strip a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

.source-strip svg,
.source-grid svg {
  width: 18px;
  height: 18px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.decision-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  color: var(--white);
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.decision-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -38% -20%;
  height: 48%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 62%);
  opacity: 0.7;
  pointer-events: none;
}

.decision-card.red {
  background: var(--red);
}

.decision-card.blue,
.decision-card.green,
.decision-card.purple {
  background: var(--ink);
}

.decision-card > * {
  position: relative;
  z-index: 1;
}

.decision-card svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.1;
}

.decision-card span {
  color: rgba(255, 255, 255, 0.68);
  margin-top: auto;
}

.decision-card h3 {
  margin-top: 12px;
  font-size: 1.9rem;
}

.decision-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.why-lenses {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.lens-media {
  min-height: 780px;
  overflow: hidden;
  border-radius: var(--radius);
}

.lens-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lens-panel {
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 5vw, 58px);
}

.lens-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.lens-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
}

.lens-list strong {
  color: var(--pearl);
  font-family: var(--font-display);
  font-weight: 900;
}

.lens-list h3 {
  font-size: 1.35rem;
}

.lens-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.question-board {
  border-top: 1px solid var(--line);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.question-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.question-grid span {
  color: var(--red);
}

.question-grid h3 {
  font-size: 1.55rem;
}

.question-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.playbook-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.playbook-grid svg {
  width: 34px;
  height: 34px;
  color: var(--pearl);
}

.playbook-grid h3 {
  font-size: 1.55rem;
}

.playbook-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.source-board {
  border-bottom: 1px solid var(--line);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.source-grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.source-grid a:hover,
.source-grid a:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.source-grid span {
  color: var(--blue);
}

.source-grid strong {
  display: block;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.18;
}

.source-grid svg {
  color: var(--red);
}

.why-cta {
  align-items: center;
}

.cta-panel {
  display: grid;
  gap: 14px;
  border-radius: var(--radius);
  background: var(--ink);
  padding: 24px;
}

.invest-document {
  background: var(--paper);
}

.invest-hero .hero-bg img {
  object-position: 57% center;
  filter: saturate(1.04) contrast(1.04);
}

.invest-hero .hero-overlay {
  background:
    radial-gradient(circle at 58% 34%, rgba(8, 9, 14, 0.06), rgba(8, 9, 14, 0.38) 36%, transparent 56%),
    linear-gradient(90deg, rgba(8, 9, 14, 0.94) 0%, rgba(8, 9, 14, 0.74) 36%, rgba(8, 9, 14, 0.22) 62%, rgba(8, 9, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 9, 14, 0.92) 0%, rgba(8, 9, 14, 0.12) 48%);
}

.invest-hero-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.74fr);
}

.invest-briefing-card .status-pill {
  background: rgba(0, 194, 255, 0.12);
  color: var(--cyan) !important;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pathway-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  padding: 24px;
}

.pathway-card::before {
  content: "";
  position: absolute;
  inset: -20% -35% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(4px);
}

.pathway-card.red {
  background: var(--red);
}

.pathway-card.blue,
.pathway-card.green,
.pathway-card.purple {
  background: var(--ink);
}

.pathway-card > * {
  position: relative;
  z-index: 1;
}

.pathway-card svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.1;
}

.pathway-card span,
.timeline span,
.diligence-grid span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.pathway-card span {
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
}

.pathway-card h3 {
  margin-top: 12px;
  font-size: 1.85rem;
}

.pathway-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.setup-journey {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.journey-copy {
  position: sticky;
  top: 116px;
}

.journey-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.timeline article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.timeline strong {
  grid-row: 1 / 4;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.timeline article span,
.timeline article h3,
.timeline article p {
  grid-column: 2;
}

.timeline span {
  color: var(--blue);
}

.timeline h3 {
  margin-top: 12px;
  font-size: 1.65rem;
}

.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.sector-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 22px;
}

.sector-grid svg {
  width: 34px;
  height: 34px;
  color: var(--pearl);
}

.sector-grid h3 {
  font-size: 1.35rem;
}

.sector-grid p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.diligence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.diligence-media {
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius);
}

.diligence-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diligence-panel {
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 56px);
}

.diligence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.diligence-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 20px;
}

.diligence-grid article:nth-child(2),
.diligence-grid article:nth-child(5) {
  background: var(--blue);
}

.diligence-grid article:nth-child(3) {
  background: var(--red);
}

.diligence-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.diligence-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.18;
}

.invest-cta {
  align-items: center;
}

.webinar-document {
  background: var(--ink);
}

.webinar-document .site-footer {
  color: rgba(255, 255, 255, 0.82);
  border-top-color: rgba(255, 255, 255, 0.16);
}

.webinar-document .site-footer strong {
  color: var(--white);
}

.webinar-document .footer-contact {
  color: var(--champagne);
}

.webinar-document .footer-col a {
  color: rgba(255, 255, 255, 0.75);
}

.webinar-document .footer-col a:hover {
  color: var(--white);
}

.webinar-document .footer-col > span {
  color: rgba(255, 255, 255, 0.5);
}

.webinar-document .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.6);
}

.webinar-document .footer-bottom a {
  color: var(--champagne);
}

.webinar-hero .hero-bg img {
  object-position: 55% center;
  filter: saturate(1.06) contrast(1.05);
}

.webinar-hero .hero-overlay {
  background:
    radial-gradient(circle at 56% 34%, rgba(5, 7, 12, 0.06), rgba(5, 7, 12, 0.32) 34%, transparent 56%),
    linear-gradient(90deg, rgba(5, 7, 12, 0.94) 0%, rgba(5, 7, 12, 0.72) 38%, rgba(5, 7, 12, 0.28) 62%, rgba(5, 7, 12, 0.16) 100%),
    radial-gradient(circle at 78% 28%, rgba(0, 194, 255, 0.22), transparent 32%),
    linear-gradient(0deg, rgba(5, 7, 12, 0.94) 0%, rgba(5, 7, 12, 0.08) 48%);
}

.webinar-hero-shell {
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.92fr);
}

.stage-card {
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(18, 19, 26, 0.76);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translate3d(28px, 26px, 0) scale(0.98);
  animation: panelIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 620ms forwards;
}

.stage-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent 54%),
    linear-gradient(90deg, rgba(215, 25, 32, 0.34), transparent 34%, rgba(0, 87, 255, 0.3));
  pointer-events: none;
}

.stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.26) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: ribbonScan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.stage-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-frame .play-button {
  left: 22px;
  top: 22px;
  animation: playPulse 2.4s ease-in-out infinite;
}

.stage-live-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(18, 19, 26, 0.78);
  color: var(--white);
  padding: 0 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  backdrop-filter: blur(14px);
}

.stage-copy {
  padding: 28px;
}

.stage-copy .status-pill {
  background: rgba(200, 184, 148, 0.12);
  color: var(--pearl) !important;
}

.stage-copy h2 {
  font-size: clamp(2rem, 3.7vw, 4rem);
}

.stage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.stage-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.countdown-strip {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100vw - 32px));
  margin: -1px auto 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;   /* never box backgrounds: full-bleed via ::before */
  color: var(--white);
  padding: 18px 22px;
  position: relative;
}
.countdown-strip::before {
  content: "";
  position: absolute; top: 0; bottom: 0;
  left: calc(50% - 50vw); width: 100vw;
  background: var(--ink);
  z-index: -1;
}

.countdown-strip span,
.replay-card span:not(.play-button),
.lineup-card span,
.broadcast-points span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.countdown-strip > div:first-child span {
  color: var(--pearl);
}

.countdown-strip > div:first-child strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.countdown-cells {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown-cells span {
  min-height: 58px;
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  background: var(--red);
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 14px;
}

.countdown-cells strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.countdown-cells strong.tick,
[data-countdown-inline].tick {
  animation: tickIn 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-countdown-inline] {
  display: inline-block;
}

@keyframes tickIn {
  0% {
    transform: translateY(-9px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.countdown-strip a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.countdown-strip a:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.broadcast-section,
.agenda-section,
.replay-section,
.webinar-automation {
  background: var(--paper);
}

.webinar-register,
.home-loan-form,
.inner-circle-form {
  background: var(--red);
  box-shadow: 0 24px 70px rgba(215, 25, 32, 0.35);
}

.webinar-register input,
.webinar-register select,
.home-loan-form input,
.home-loan-form select,
.home-loan-form textarea,
.inner-circle-form input,
.inner-circle-form select {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.16);
}

.webinar-register input::placeholder,
.home-loan-form input::placeholder,
.home-loan-form textarea::placeholder,
.inner-circle-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.webinar-register .form-session-meta {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.webinar-register .form-session-meta span {
  color: rgba(255, 255, 255, 0.85);
}

.webinar-register .form-session-meta b {
  color: var(--white);
}

.webinar-register .live-dot {
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.24);
}

.webinar-register .button-primary,
.home-loan-form .button-primary,
.inner-circle-form .button-primary {
  background: var(--white);
  color: var(--red-dark);
}

.webinar-register .button-primary:hover,
.home-loan-form .button-primary:hover,
.inner-circle-form .button-primary:hover {
  background: var(--pearl);
}

.webinar-register .form-microcopy,
.home-loan-form .form-microcopy,
.inner-circle-form .form-microcopy {
  color: rgba(255, 255, 255, 0.85);
}

.webinar-outcomes {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.webinar-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.webinar-outcomes svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--champagne);
}

.form-session-meta {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.form-session-meta strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.form-session-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.form-session-meta b {
  color: var(--champagne);
}

.form-microcopy {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.5;
}

.webinar-page > .broadcast-section,
.webinar-page > .agenda-section,
.webinar-page > .replay-section,
.webinar-page > .webinar-automation {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
}

.webinar-page > .agenda-section {
  padding-top: 84px;
}

.webinar-page .section-heading {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
  margin-bottom: 42px;
}

.webinar-page .section-heading .eyebrow {
  margin-bottom: 0;
}

.webinar-page .section-heading h2,
.webinar-page .automation-copy h2 {
  max-width: 980px;
  font-size: clamp(2.25rem, 4.8vw, 4.65rem);
}

.broadcast-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.62fr);
  gap: 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 18px;
  box-shadow: var(--shadow);
}

.broadcast-copy {
  min-height: 520px;
  display: grid;
  align-content: end;
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(18, 19, 26, 0.92), rgba(18, 19, 26, 0.18)),
    url("./assets/bahrain-bay.jpg") center / cover;
  padding: clamp(28px, 5vw, 56px);
}

.broadcast-copy h2 {
  max-width: 780px;
}

.broadcast-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.broadcast-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.broadcast-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  padding: 0 13px;
}

.broadcast-points svg {
  width: 17px;
  height: 17px;
  color: var(--pearl);
}

.webinar-register {
  align-self: stretch;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.agenda-grid {
  display: grid;
  gap: 12px;
}

.agenda-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.agenda-row > span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
}

.agenda-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.lineup-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.85fr));
  gap: 14px;
}

.lineup-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 24px;
}

.lineup-card.is-featured {
  background: var(--ink);
  border: 1px solid var(--red);
}

.lineup-card.is-featured span {
  color: var(--red);
}

.lineup-card span {
  color: var(--pearl);
}

.lineup-card h3 {
  font-size: 1.75rem;
}

.lineup-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.replay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.replay-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.replay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.08) 64%);
  pointer-events: none;
}

.replay-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.replay-card .play-button {
  left: 22px;
  top: 22px;
}

.replay-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.replay-card span:not(.play-button) {
  color: var(--pearl);
}

.replay-card h3 {
  margin-top: 10px;
  font-size: 1.55rem;
}

.replay-card[data-replay-video] {
  cursor: pointer;
}

.replay-card.playing::after {
  display: none;
}

.replay-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.webinar-automation {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.automation-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.automation-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.automation-flow article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
}

.automation-flow svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.automation-flow h3 {
  font-size: 1.1rem;
}

.news-document {
  background: var(--paper);
}

.news-hero .hero-bg img {
  object-position: center 38%;
  filter: saturate(1.12) contrast(1.05);
}

.news-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.94) 0%, rgba(5, 7, 12, 0.66) 47%, rgba(5, 7, 12, 0.22) 100%),
    radial-gradient(circle at 76% 30%, rgba(200, 184, 148, 0.18), transparent 28%),
    radial-gradient(circle at 56% 70%, rgba(0, 87, 255, 0.3), transparent 34%),
    linear-gradient(0deg, rgba(5, 7, 12, 0.95) 0%, rgba(5, 7, 12, 0) 42%);
}

.news-hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
}

.news-console {
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(18, 19, 26, 0.76);
  color: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translate3d(28px, 26px, 0) scale(0.98);
  animation: panelIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 620ms forwards;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
}

.console-top > span,
.signal-meter span,
.news-pulse span,
.desk-card span,
.briefing-card span,
.source-pipeline span,
.article-meta span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.console-top > span {
  color: var(--pearl);
}

.news-console h2 {
  max-width: 440px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.news-console p:not(.status-pill) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.signal-meter {
  display: grid;
  gap: 10px;
  margin: 34px 0 18px;
}

.signal-meter span {
  color: rgba(255, 255, 255, 0.58);
}

.signal-meter div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-meter i {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--pearl), var(--cyan));
  box-shadow: 0 0 30px rgba(200, 184, 148, 0.28);
}

.signal-meter strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.news-pulse {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.news-pulse article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.news-pulse svg {
  width: 28px;
  height: 28px;
  color: var(--pearl);
}

.news-pulse strong {
  display: block;
  font-family: var(--font-display);
  line-height: 1.12;
}

.news-pulse span {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.news-ticker {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.news-ticker .ticker-track {
  min-height: 62px;
  align-items: center;
}

.news-ticker span::after {
  background: var(--pearl);
}

.news-page > .news-desk-section,
.news-page > .verification-section,
.news-page > .news-automation-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
}

.news-desk-section,
.verification-section {
  background: var(--paper);
}

.news-page .section-heading {
  align-items: start;
}

.news-page .section-heading .section-lede {
  margin: 0;
}

.news-desk {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 16px;
}

.lead-brief {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.lead-brief::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(18, 19, 26, 0.92), rgba(18, 19, 26, 0.14) 62%),
    linear-gradient(100deg, rgba(215, 25, 32, 0.4), transparent 42%, rgba(0, 87, 255, 0.28));
  pointer-events: none;
}

.lead-brief img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-brief > div {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 5vw, 54px);
  right: clamp(24px, 5vw, 54px);
  bottom: clamp(24px, 5vw, 54px);
}

.category-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(200, 184, 148, 0.16);
  color: var(--pearl);
  padding: 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.lead-brief h3 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.lead-brief p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 12px;
}

.desk-stack {
  display: grid;
  gap: 12px;
}

.desk-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.desk-card:nth-child(2) {
  background: var(--blue);
  border-color: transparent;
  color: var(--white);
}

.desk-card:nth-child(3) {
  background: var(--ink);
  border-color: transparent;
  color: var(--white);
}

.desk-card span {
  color: var(--red);
}

.desk-card:nth-child(2) span,
.desk-card:nth-child(3) span {
  color: var(--pearl);
}

.desk-card h3 {
  font-size: 1.55rem;
}

.desk-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.desk-card:nth-child(2) p,
.desk-card:nth-child(3) p {
  color: rgba(255, 255, 255, 0.72);
}

.filter-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-rail button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
}

.filter-rail button:first-child {
  background: var(--pearl);
  color: var(--ink);
}

.briefing-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.briefing-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 24px;
}

.briefing-card:nth-child(2) {
  background: var(--blue);
}

.briefing-card:nth-child(4) {
  background: var(--red);
}

.briefing-card span {
  color: var(--pearl);
}

.briefing-card h3 {
  font-size: 1.6rem;
}

.briefing-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.verification-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.verification-copy {
  position: sticky;
  top: 116px;
}

.verification-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.source-pipeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.source-pipeline a {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.source-pipeline a:hover,
.source-pipeline a:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.source-pipeline svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.source-pipeline span {
  color: var(--red);
}

.source-pipeline strong {
  display: block;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.14;
}

.news-automation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 56px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.news-automation-section .automation-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-document {
  background: var(--paper);
}

.blog-hero {
  padding-top: 164px;
  border-bottom: 1px solid var(--line);
}

.blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 72px;
  align-items: end;
}

.blog-hero h1 {
  max-width: 980px;
  font-size: clamp(3.3rem, 7.6vw, 7.4rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.blog-hero p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.editor-note,
.sidebar-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.editor-note span,
.sidebar-panel span {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.editor-note strong {
  display: block;
  margin-top: 44px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.08;
}

.editor-note p,
.sidebar-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.blog-index {
  padding-top: 54px;
}

.archive-controls {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.archive-search {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px 16px;
}

.archive-search svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.archive-search span {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.archive-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.archive-search input::placeholder {
  color: rgba(107, 114, 128, 0.8);
}

.article-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-toolbar button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
}

.article-toolbar button:first-child,
.article-toolbar button.is-active {
  background: var(--ink);
  color: var(--white);
}

.archive-count {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.archive-count span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.featured-article {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.82fr);
  gap: 0;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(18, 19, 26, 0.2);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.featured-article-media,
.article-card-media,
.article-hero-media {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}

.featured-article-media img,
.article-card-media img,
.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.featured-article:hover .featured-article-media img,
.article-card:hover .article-card-media img,
.article-card:focus-within .article-card-media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.featured-article-body {
  display: grid;
  align-content: end;
  gap: 24px;
  padding: clamp(28px, 5vw, 58px);
}

.featured-article h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.8vw, 5.15rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.featured-article p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.featured-article .read-link {
  color: var(--pearl);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 28px;
  align-items: start;
}

.article-feed {
  display: grid;
  gap: 14px;
}

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

.article-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card-media {
  aspect-ratio: 16 / 10.5;
}

.skeleton-media {
  min-height: 220px;
}

.article-card-body {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
}

.article-card:hover,
.article-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, 0.36);
  box-shadow: var(--shadow);
}

.article-card.is-featured {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.article-card.is-featured .article-card-meta {
  color: rgba(255, 255, 255, 0.62);
}

.article-card-meta span:first-child {
  color: var(--red);
}

.article-card.is-featured .article-card-meta span:first-child {
  color: var(--pearl);
}

.article-card h2 {
  max-width: 900px;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.03;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.article-card h2 a {
  transition: color 160ms ease;
}

.article-card h2 a:hover,
.article-card h2 a:focus-visible {
  color: var(--red);
}

.article-card.is-featured h2 a:hover,
.article-card.is-featured h2 a:focus-visible {
  color: var(--pearl);
}

.article-card p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.article-card.is-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.article-card.is-featured .article-card-footer {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.article-card-footer > span {
  color: var(--muted);
  font-weight: 900;
}

.article-card.is-featured .article-card-footer > span {
  color: rgba(255, 255, 255, 0.62);
}

.read-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 900;
}

.article-card.is-featured .read-link {
  color: var(--pearl);
}

.read-link svg,
.back-link svg {
  width: 18px;
  height: 18px;
}

.blog-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.sidebar-panel {
  display: grid;
  gap: 14px;
}

.sidebar-panel h2 {
  font-size: 1.55rem;
}

.sidebar-panel a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--ink);
  font-weight: 900;
}

.sidebar-link-list {
  display: grid;
  gap: 0;
}

.source-panel a::after {
  content: "↗";
  color: var(--red);
}

.blog-subscribe {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.58fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.blog-subscribe p:not(.eyebrow) {
  max-width: 740px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.blog-subscribe .newsletter-panel {
  background: var(--ink);
}

.article-detail {
  padding-top: 164px;
}

.article-header {
  max-width: 980px;
  margin-top: 36px;
}

.article-header h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.article-header > p {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.article-action-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-action-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 16px;
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.article-action-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.article-action-button:hover,
.article-action-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 32, 0.42);
  box-shadow: 0 14px 34px rgba(18, 19, 26, 0.12);
}

.article-action-button.is-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.article-action-button.is-working {
  opacity: 0.7;
  pointer-events: none;
}

.article-action-status {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.article-hero-media {
  aspect-ratio: 16 / 7.2;
  margin: 48px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.32fr);
  gap: 70px;
  align-items: start;
  margin-top: 58px;
}

.article-body-grid > * {
  min-width: 0;
}

.article-body {
  max-width: 780px;
  min-width: 0;
}

.article-body p {
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.75;
}

.article-body .article-intro {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.55;
}

.article-body h2 {
  margin: 46px 0 16px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.article-body h3 {
  margin: 34px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.article-body blockquote {
  margin: 42px 0;
  border-left: 6px solid var(--red);
  background: var(--white);
  padding: 26px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
}

.article-body table,
.article-body .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.94rem;
}

.article-body .table-scroll {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-body .table-scroll table {
  min-width: 620px;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.article-body th,
.article-body td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.article-body tr:last-child td {
  border-bottom: 0;
}

.article-body th,
.article-body tr:first-child td {
  background: rgba(18, 19, 26, 0.05);
  color: var(--ink);
  font-weight: 900;
}

.article-body ul,
.article-body ol {
  margin: 16px 0 22px 24px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body .highlight {
  background: linear-gradient(180deg, transparent 58%, rgba(200, 184, 148, 0.62) 58%);
  color: var(--ink);
  font-weight: 900;
}

.article-body .up {
  color: var(--green);
  font-weight: 900;
}

.article-body .down {
  color: var(--red);
  font-weight: 900;
}

.article-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.related-articles {
  border-top: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-grid a {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-2);
}

.related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-copy {
  display: grid;
  gap: 16px;
  padding: 22px;
  min-height: 150px;
}

.related-grid a:hover,
.related-grid a:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.related-grid span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.related-grid strong {
  display: block;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.14;
}

.project-hero .button {
  width: fit-content;
  margin-top: 26px;
}

.projects-list-hero .hero-bg img {
  object-position: center;
}

.projects-list-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 14, 0.92) 0%, rgba(8, 9, 14, 0.68) 52%, rgba(8, 9, 14, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 9, 14, 0.96) 0%, rgba(8, 9, 14, 0.12) 66%);
}

.projects-hero-shell,
.project-detail-hero-shell {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
}

.projects-console,
.project-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 19, 26, 0.74);
  color: var(--white);
  padding: 26px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.projects-console .console-label,
.project-hero-card > span {
  color: var(--pearl);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.projects-console strong,
.project-hero-card > strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1;
}

.projects-console p,
.project-hero-card p {
  color: rgba(255, 255, 255, 0.74);
}

.project-signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.project-signal-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(200, 184, 148, 0.16);
  color: var(--pearl);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.project-controls {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.project-search {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.project-search input {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0 16px;
}

.project-search input::placeholder {
  color: rgba(107, 114, 128, 0.82);
}

.project-filter-rail {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.project-filter-rail button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.project-filter-rail button:hover,
.project-filter-rail button:focus-visible,
.project-filter-rail button.is-active {
  transform: translateY(-1px);
  border-color: rgba(215, 25, 32, 0.34);
  background: rgba(215, 25, 32, 0.08);
}

.project-count-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 6px 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.project-count-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 900;
}

.project-count-row svg {
  width: 17px;
  height: 17px;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 19, 26, 0.14);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.featured-project-media {
  display: block;
  min-height: 520px;
  overflow: hidden;
  background: var(--paper-2);
}

.featured-project-media img,
.project-card-media img,
.project-gallery img,
.project-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-project:hover .featured-project-media img,
.project-card:hover .project-card-media img,
.project-gallery a:hover img,
.project-gallery button:hover img,
.project-video-card:hover img {
  transform: scale(1.045);
}

.featured-project-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(28px, 5vw, 58px);
}

.featured-project-body h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.featured-project-body p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.project-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.project-feature-stats div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px;
}

.project-feature-stats span,
.project-card-meta,
.project-card-stats span,
.project-mini-facts span,
.project-fact-panel span,
.project-number-grid article > span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.project-feature-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 0.95rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(215, 25, 32, 0.28);
  box-shadow: var(--shadow);
}

.project-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-2);
}

.project-card-media span {
  position: absolute;
  left: 14px;
  top: 14px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  padding: 0 12px;
  font-size: 11px;
  font-weight: 900;
}

.project-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}

.project-card p {
  color: var(--muted);
}

.project-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-card-stats span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(18, 19, 26, 0.05);
  padding: 0 12px;
  color: var(--ink-soft);
}

.project-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-method-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.project-method-grid span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
}

.project-method-grid h3 {
  font-size: 1.55rem;
}

.project-method-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.9fr);
  gap: 38px;
  align-items: start;
}

.project-enquiry-copy {
  position: sticky;
  top: 112px;
}

.project-enquiry-copy h2 {
  max-width: 680px;
}

.project-enquiry-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 620px;
}

.project-enquiry-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-enquiry-form .form-wide,
.project-enquiry-form button {
  grid-column: 1 / -1;
}

.project-detail-hero .hero-bg img {
  object-position: center;
}

.project-detail-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 14, 0.94) 0%, rgba(8, 9, 14, 0.64) 50%, rgba(8, 9, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 9, 14, 0.96) 0%, rgba(8, 9, 14, 0.1) 62%);
}

.project-back-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  padding: 0 14px;
  font-weight: 900;
}

.project-back-link svg {
  width: 17px;
  height: 17px;
}

.project-hero-card {
  align-self: end;
}

.project-mini-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

.project-mini-facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
}

.project-mini-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
}

.project-anchor-bar {
  position: sticky;
  top: 88px;
  z-index: 20;
  width: min(var(--max), calc(100vw - 32px));
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -28px auto 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.92);
  padding: 6px;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(18, 19, 26, 0.1);
}

.project-anchor-bar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink-soft);
  font-weight: 900;
  white-space: nowrap;
}

.project-anchor-bar a:hover,
.project-anchor-bar a:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.project-storytelling {
  padding-top: 76px;
}

.storytelling-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 900px;
  margin-bottom: 26px;
}

.storytelling-lead h2 {
  max-width: 900px;
}

.storytelling-lead p:not(.eyebrow) {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.storytelling-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.storytelling-media {
  position: relative;
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.storytelling-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storytelling-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 14, 0.78), rgba(8, 9, 14, 0.05) 58%);
}

.storytelling-media figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 38px);
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 800;
}

.storytelling-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 58px);
}

.storytelling-copy blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.45vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
}

.advisor-note {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}

.advisor-note span {
  color: var(--pearl);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.advisor-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.story-scenes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.story-scenes article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.story-scenes span,
.buyer-angle-grid span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.story-scenes h3 {
  font-size: 1.5rem;
}

.story-scenes p {
  margin-bottom: 0;
  color: var(--muted);
}

.buyer-angle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.buyer-angle-grid article {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background: rgba(18, 19, 26, 0.05);
  padding: 22px;
}

.buyer-angle-grid article span {
  color: var(--red);
}

.buyer-angle-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.15;
}

.project-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.36fr);
  gap: 48px;
  align-items: start;
}

.project-story > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.project-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.project-pros-cons > div,
.project-fact-panel,
.project-number-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.project-pros-cons h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.project-pros-cons ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.project-pros-cons > div:only-child {
  grid-column: 1 / -1;
}

ul.pros-checklist {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}

ul.pros-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: var(--radius);
  color: var(--ink-soft);
  line-height: 1.45;
}

ul.pros-checklist svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--green);
}

.project-fact-panel {
  position: sticky;
  top: 164px;
}

.project-fact-panel > div {
  display: grid;
  margin-top: 18px;
}

.project-fact-panel > div > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.project-fact-panel strong {
  text-align: right;
}

.project-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.project-highlights article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 22px;
}

.project-highlights span {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.project-highlights strong {
  font-family: var(--font-display);
  line-height: 1.12;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
}

.project-gallery a:first-child,
.project-gallery button:first-child {
  grid-row: span 2;
  min-height: 532px;
}

.project-gallery button {
  border: 0;
  padding: 0;
  cursor: zoom-in;
  width: 100%;
}

.project-gallery a,
.project-gallery button {
  display: block;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.project-gallery a:first-child,
.project-gallery button:first-child {
  grid-row: span 2;
  min-height: 532px;
}

.project-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.project-video-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.project-video-card .play-button {
  left: 24px;
  top: 24px;
}

.project-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 14, 0.86), rgba(8, 9, 14, 0.05) 62%);
}

.project-video-card > div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.project-video-card > div span,
.project-video-card small {
  color: var(--pearl);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.project-video-card strong {
  display: block;
  margin: 6px 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
}

.project-number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.payment-plan,
.project-economics,
.project-documents {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.payment-plan div,
.project-economics div,
.project-documents a {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.payment-plan div,
.project-economics div {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.project-economics small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 700;
}

.project-documents a {
  min-height: 46px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}

.project-documents svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.unit-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.unit-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

.unit-table th,
.unit-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  text-align: left;
}

.unit-table th {
  background: rgba(18, 19, 26, 0.05);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.unit-table tr:last-child td {
  border-bottom: 0;
}

.unit-status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.08);
  color: var(--red);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.site-footer {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 38px 28px;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  justify-content: start;
  gap: 4px;
  align-content: start;
}

.footer-brand .footer-social {
  margin-top: 14px;
}

.footer-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  justify-content: start;
  gap: 10px;
  align-content: start;
}

.footer-col > span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.footer-col a:hover {
  color: var(--red-dark);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--red-dark);
  font-weight: 700;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-contact {
  display: block;
  margin-top: 6px;
  color: var(--red-dark);
  font-weight: 700;
}

.footer-contact:hover {
  text-decoration: underline;
}

.inline-link {
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reason-group {
  margin-top: 46px;
}

.reason-group h3 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

.reason-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 12px 20px;
}

.reason-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reason-list li span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--red);
  line-height: 1.6;
}

.reason-list li p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.reasons-cta {
  position: relative;
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  background: transparent;   /* never box backgrounds: full-bleed via ::before */
  border-radius: 0;
}
.reasons-cta::before {
  content: "";
  position: absolute; top: 0; bottom: 0;
  left: calc(50% - 50vw); width: 100vw;
  background: var(--ink);
  z-index: -1;
}

.reasons-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 520px;
}

.circle-band {
  margin-top: 56px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px 40px;
  align-items: center;
  box-shadow: 0 24px 70px rgba(215, 25, 32, 0.28);
}

/* Hussain 2026-07: back to a CARD. The contained red card with radius and
   shadow pops against the page; the full-bleed treatment washed it out.
   (The full-bleed rule stays for .tx-promo, which is meant to be a band.) */
.circle-band:not(.millionaires-band) {
  background:
    radial-gradient(120% 150% at 85% -20%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(150deg, var(--red, #d71920), var(--red-dark, #8f1015));
}

.circle-band h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin: 0 0 8px;
}

.circle-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.circle-band form {
  display: grid;
  gap: 10px;
}

.circle-band input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  padding: 0 14px;
}

.circle-band input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.circle-band .button-primary {
  background: var(--white);
  color: var(--red-dark);
  justify-content: center;
}

.circle-band .button-primary:hover {
  background: var(--pearl);
}

.circle-band small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  .circle-band {
    grid-template-columns: 1fr;
  }
}

.millionaires-form {
  background: var(--ink);
  border: 1px solid rgba(200, 184, 148, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 40px rgba(200, 184, 148, 0.12);
}

.millionaires-form input,
.millionaires-form select {
  border-color: rgba(200, 184, 148, 0.35);
  background: rgba(200, 184, 148, 0.08);
}

.millionaires-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.millionaires-form .form-session-meta {
  border-bottom-color: rgba(200, 184, 148, 0.3);
}

.millionaires-form .form-session-meta b,
.millionaires-form .form-session-meta strong {
  color: var(--champagne);
}

.millionaires-form .live-dot {
  background: var(--champagne);
  box-shadow: 0 0 0 6px rgba(200, 184, 148, 0.22);
}

.millionaires-form .button-primary {
  background: var(--champagne);
  color: var(--ink);
}

.millionaires-form .button-primary:hover {
  background: var(--pearl);
}

.millionaires-form .form-microcopy {
  color: rgba(255, 255, 255, 0.65);
}

.circle-band .millionaires-form input {
  width: 100%;
  min-height: 50px;
  border-radius: var(--radius);
  color: var(--white);
  padding: 0 14px;
}

.nav-toggle {
  display: none;
}

.brand-signature {
  height: 42px;
  width: auto;
  display: block;
}

.webinar-document .brand-signature {
  /* nav shell stays light on every page, so the ink signature always works */
}

.club-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 11px 20px;
  border: 1px solid rgba(200, 184, 148, 0.6);
  border-radius: 999px;
  background: rgba(200, 184, 148, 0.09);
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(200, 184, 148, 0.18), inset 0 0 16px rgba(200, 184, 148, 0.07);
  animation: badgeGlow 3.2s ease-in-out infinite alternate;
}

.club-badge svg {
  width: 15px;
  height: 15px;
  color: var(--champagne);
}

.club-badge span {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
}

@keyframes badgeGlow {
  from {
    box-shadow: 0 0 22px rgba(200, 184, 148, 0.12), inset 0 0 14px rgba(200, 184, 148, 0.05);
  }
  to {
    box-shadow: 0 0 44px rgba(200, 184, 148, 0.3), inset 0 0 20px rgba(200, 184, 148, 0.1);
  }
}

.inbox-demo {
  max-width: 880px;
  margin: 44px auto 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.inbox-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.inbox-head i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.inbox-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
  transition: background 160ms ease, transform 160ms ease;
}

.inbox-row:last-child {
  border-bottom: 0;
}

.inbox-row:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.inbox-row .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 8px;
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.28);
  animation: livePulse 2.2s ease-out infinite;
}

.inbox-row strong {
  display: block;
  font-size: 0.82rem;
  color: var(--champagne);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.inbox-row em {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--white);
  margin: 3px 0 4px;
  line-height: 1.2;
}

.inbox-row small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.inbox-row time {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  white-space: nowrap;
  margin-top: 4px;
}

.circles-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px;
}

.circle-card {
  display: grid;
  align-content: start;
  gap: 16px;
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
}

.circle-card-red {
  background: var(--red);
  box-shadow: 0 24px 70px rgba(215, 25, 32, 0.28);
}

.circle-card-ink {
  background: var(--ink);
  border: 1px solid rgba(200, 184, 148, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4), 0 0 36px rgba(200, 184, 148, 0.1);
}

.circle-card .club-badge {
  background: rgba(18, 19, 26, 0.35);
  margin-bottom: 4px;
  animation: none;
}

.circle-card-ink .club-badge {
  background: rgba(200, 184, 148, 0.12);
}

.circle-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.circle-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.circle-card .button {
  justify-self: start;
  margin-top: 6px;
}

.circle-card-red .button-primary {
  background: var(--white);
  color: var(--red-dark);
}

.circle-card-red .button-primary:hover {
  background: var(--pearl);
}

.circle-gold-btn {
  background: var(--champagne);
  color: var(--ink);
}

.circle-gold-btn:hover {
  background: var(--pearl);
}

.millionaires-band {
  background: var(--ink);
  border: 1px solid rgba(200, 184, 148, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 40px rgba(200, 184, 148, 0.1);
}

.circle-band > div {
  min-width: 0;
}

.circle-band h2 {
  overflow-wrap: break-word;
}

.circle-band .club-badge {
  background: var(--ink);
  border-color: rgba(200, 184, 148, 0.55);
  margin-bottom: 20px;
  animation: none;
}

.millionaires-band .club-badge {
  background: rgba(200, 184, 148, 0.12);
}

.circle-band.with-photo {
  grid-template-columns: 230px minmax(0, 1.05fr) minmax(270px, 0.85fr);
  align-items: stretch;
}

.circle-photo {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .circle-band.with-photo {
    grid-template-columns: 1fr;
  }

  .circle-photo {
    max-height: 300px;
  }
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: #1fa855;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(18, 19, 26, 0.3);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(18, 19, 26, 0.36);
}

.whatsapp-fab svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 640px) {
  .whatsapp-fab span {
    display: none;
  }

  .whatsapp-fab {
    padding: 0 15px;
  }
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.stat-band a,
.stat-band > div {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 20px 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease;
}

.stat-band a:hover {
  transform: translateY(-3px);
  border-color: var(--red);
}

.stat-band strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--ink);
  line-height: 1.05;
}

.stat-band span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

.budget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.budget-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.budget-card > span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--red);
}

.budget-card ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 8px;
  font-size: 0.98rem;
}

.area-card .text-link,
.budget-card .text-link {
  font-size: 0.95rem;
}

.area-card .text-link {
  margin-top: 14px;
}

.area-card.red .text-link,
.area-card.blue .text-link,
.area-card.green .text-link,
.area-card.is-wide .text-link {
  color: var(--white);
}

.decision-card .inline-link {
  color: var(--white);
}

.system-grid article .text-link {
  margin-top: 14px;
  color: var(--champagne);
}

.data-table-block {
  margin-top: 40px;
}

.data-table-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

.data-table-block-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  width: 100%;
}

.data-scroll {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.data-table th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--paper-2);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table td:first-child {
  font-weight: 700;
}

.data-table .up {
  color: var(--green);
  font-weight: 800;
}

.data-table .down {
  color: var(--red-dark);
  font-weight: 800;
}

.data-table .hot td {
  background: rgba(215, 25, 32, 0.05);
}



.footer-social {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-social a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 32, 0.32);
  background: rgba(215, 25, 32, 0.06);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
  color: var(--red);
}

/* Sitewide refinement pass: keep the stage energy, tighten the reading rhythm. */
:root {
  --max: 1128px;
}

.section {
  padding: 76px 0;
}

.section-ink {
  padding: 88px max(32px, calc((100vw - var(--max)) / 2));
}

.hero {
  padding-top: 118px;
}

.hero-shell,
.why-hero-shell,
.invest-hero-shell,
.webinar-hero-shell,
.news-hero-shell,
.life-hero-shell,
.socials-hero-shell {
  gap: 30px;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 5.1vw, 5.1rem);
  line-height: 1.01;
}

h2 {
  font-size: clamp(1.85rem, 3.1vw, 3.35rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  line-height: 1.12;
}

.hero-lede {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions,
.webinar-actions {
  margin-top: 24px;
}

.button {
  min-height: 46px;
  padding-inline: 18px;
}

.section-heading {
  gap: 30px;
  margin-bottom: 26px;
}

.section-heading .eyebrow {
  margin-bottom: -10px;
}

.section-lede {
  max-width: 730px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.pillar-card {
  min-height: 212px;
  padding: 20px;
}

.pillar-card span {
  font-size: 1.65rem;
}

.split-section,
.life-guide,
.setup-journey,
.webinar-automation,
.blog-subscribe,
.article-body-grid {
  gap: 44px;
}

.split-media,
.split-media img {
  min-height: 520px;
}

.feature-brief,
.brief-card {
  min-height: 340px;
}

.guide-grid article {
  padding: 22px;
}

.guide-grid svg {
  margin-bottom: 30px;
}

.guide-grid h3 {
  font-size: 1.42rem;
}

.project-hero {
  min-height: 620px;
  padding-block: 78px;
}

.decision-card,
.pathway-card {
  min-height: 360px;
}

.decision-card h3,
.pathway-card h3 {
  font-size: 1.55rem;
}

.question-grid article,
.playbook-grid article,
.source-grid a,
.sector-grid article,
.system-grid article,
.life-command-grid article,
.lineup-card,
.replay-card,
.desk-card,
.briefing-card,
.area-card,
.source-pipeline a {
  min-height: 260px;
}

.lineup-card h3,
.replay-card h3,
.desk-card h3,
.briefing-card h3,
.area-card h3,
.sector-grid h3,
.system-grid h3 {
  font-size: 1.32rem;
}

.webinar-date {
  height: 108px;
}

.webinar-date strong {
  font-size: 3.15rem;
}

.webinar-main {
  grid-template-columns: 108px 1fr;
  padding: 26px;
}

.webinar-stack article {
  min-height: 128px;
  padding: 20px;
}

.life-hero h1,
.socials-hero h1 {
  font-size: clamp(2.8rem, 4.85vw, 4.85rem);
}

.life-brief-card,
.why-briefing-card,
.stage-card,
.news-console {
  padding: 24px;
}

.life-brief-card h2,
.why-briefing-card h2,
.stage-copy h2,
.news-console h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
}

.life-signal-strip,
.source-strip,
.countdown-strip,
.social-proof-row {
  margin-top: -34px;
}

.life-command-grid article,
.system-grid article,
.pathway-card,
.decision-card,
.question-grid article,
.playbook-grid article,
.source-grid a,
.lineup-card,
.desk-card,
.briefing-card {
  padding: 20px;
}

.area-card {
  padding: 22px;
}

.area-card.is-wide,
.life-story-media,
.life-story-media img {
  min-height: 450px;
}

.diligence-media,
.lens-media {
  min-height: 560px;
}

.broadcast-copy {
  min-height: 440px;
  padding: 42px;
}

.webinar-page .section-heading h2,
.webinar-page .section-heading.inverted h2 {
  font-size: clamp(1.85rem, 3vw, 3.2rem);
}

.broadcast-card {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
}

.agenda-row {
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
}

.social-channel-card {
  min-height: 340px;
  padding: 24px;
}

.social-channel-card h3 {
  margin-top: 36px;
  font-size: clamp(1.55rem, 2.35vw, 2.45rem);
}

.youtube-video-card {
  min-height: 292px;
}

.youtube-video-card span {
  margin: 16px 18px 0;
}

.youtube-video-card strong {
  margin: auto 18px 18px;
  font-size: 1rem;
  line-height: 1.18;
}

.instagram-copy {
  padding: clamp(28px, 3.2vw, 42px);
}

.instagram-copy h2 {
  font-size: clamp(2.25rem, 2.9vw, 3.25rem);
}

.instagram-handle {
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
}

.instagram-embed-card {
  min-height: 560px;
}

.social-conversion-card {
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
}

.blog-hero,
.article-detail {
  padding-top: 136px;
}

.blog-hero-grid {
  gap: 48px;
}

.blog-hero h1 {
  max-width: 860px;
  font-size: clamp(2.55rem, 4.8vw, 4.8rem);
}

.blog-hero p,
.article-header > p {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.editor-note strong {
  margin-top: 28px;
  font-size: 1.35rem;
}

.blog-index {
  padding-top: 42px;
}

.featured-article {
  min-height: 440px;
}

.featured-article-body {
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
}

.featured-article h2 {
  font-size: clamp(1.85rem, 3.1vw, 3.3rem);
}

.article-layout {
  gap: 22px;
}

.article-card-body {
  gap: 14px;
  padding: clamp(20px, 2.4vw, 26px);
}

.article-card h2 {
  font-size: clamp(1.22rem, 1.65vw, 1.72rem);
  line-height: 1.08;
}

.article-card-footer {
  padding-top: 16px;
}

.sidebar-panel {
  padding: 20px;
}

.sidebar-panel h2 {
  font-size: 1.32rem;
}

.article-header {
  margin-top: 28px;
}

.article-header h1 {
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
}

.article-action-bar {
  margin-top: 20px;
}

.article-hero-media {
  margin: 34px 0 0;
}

.article-body-grid {
  margin-top: 44px;
}

.article-body p {
  font-size: 1.04rem;
  line-height: 1.72;
}

.article-body .article-intro {
  font-size: 1.22rem;
  line-height: 1.55;
}

.article-body h2 {
  margin-top: 38px;
  font-size: clamp(1.55rem, 2.25vw, 2.4rem);
}

.article-body h3 {
  margin-top: 28px;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
}

.article-body blockquote {
  margin: 34px 0;
  padding: 22px;
  font-size: clamp(1.25rem, 1.8vw, 1.9rem);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  h1 .headline-line,
  .hero-lede,
  .hero-actions,
  .hero-panel,
    .why-briefing-card,
    .stage-card,
    .news-console,
    .live-ribbon,
    .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
  }

  .nav-toggle:hover {
    background: var(--ink);
    color: var(--white);
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--paper);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 118px 24px 48px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.open a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--ink);
  }

  .main-nav.open a:last-child {
    border-bottom: 0;
  }

  .main-nav.open a:hover,
  .main-nav.open a.is-active {
    color: var(--red);
  }

  body.nav-lock {
    overflow: hidden;
  }

  .hero-shell,
  .why-hero-shell,
  .invest-hero-shell,
  .webinar-hero-shell,
  .news-hero-shell,
  .life-hero-shell,
  .socials-hero-shell,
  .split-section,
  .webinar-layout,
  .life-guide,
  .area-fit,
  .life-story,
  .instagram-module,
  .media-grid,
  .book,
  .why-lenses,
  .setup-journey,
  .diligence-section,
  .broadcast-card,
  .webinar-automation,
  .news-desk,
  .verification-grid,
  .news-automation-section,
  .blog-hero-grid,
  .featured-article,
  .article-layout,
  .blog-subscribe,
  .article-body-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .hero-panel {
    max-width: 520px;
  }

  .home-document .hero-shell {
    grid-template-columns: 1fr;
  }

  .home-document .hero-panel {
    justify-self: start;
  }

  .live-ribbon {
    grid-template-columns: 1fr;
  }

  .ribbon-meta {
    justify-content: space-between;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .pillar-grid,
  .news-grid,
  .decision-grid,
  .question-grid,
  .playbook-grid,
  .source-grid,
  .pathway-grid,
  .sector-grid,
  .lineup-grid,
  .replay-grid,
  .life-command-grid,
  .system-grid,
  .youtube-video-grid,
  .automation-flow,
  .briefing-wall,
  .source-pipeline,
  .news-pulse,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-brief {
    grid-column: 1 / -1;
  }

  .life-copy {
    position: static;
  }

  .area-copy {
    position: static;
  }

  .journey-copy {
    position: static;
  }

  .blog-sidebar,
  .article-aside {
    position: static;
  }

  .featured-article-media {
    min-height: 420px;
  }

  .why-briefing-card {
    margin-bottom: 0;
  }

  .source-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .lens-media {
    min-height: 520px;
  }

  .diligence-media {
    min-height: 520px;
  }

  .stage-card {
    margin-bottom: 0;
  }

  .news-console {
    margin-bottom: 0;
  }

  .countdown-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .broadcast-copy {
    min-height: 440px;
  }

  .life-brief-card {
    margin-bottom: 0;
  }

  .life-story-media,
  .life-story-media img {
    min-height: 500px;
  }

  .social-embed-stage {
    max-width: 760px;
  }

  .instagram-module {
    gap: 20px;
  }

  .instagram-embed-card {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px;
  }

  .nav-shell {
    width: 100%;
    max-width: none;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .nav-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
  }

  .hero {
    padding-top: 108px;
  }

  .home-document .hero-bg img {
    object-position: 57% center;
  }

  .invest-hero .hero-bg img {
    object-position: 46% center;
  }

  .webinar-hero .hero-bg img {
    object-position: 40% center;
  }

  .home-document .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 9, 14, 0.9) 0%, rgba(8, 9, 14, 0.72) 58%, rgba(8, 9, 14, 0.38) 100%),
      linear-gradient(0deg, rgba(8, 9, 14, 0.92) 0%, rgba(8, 9, 14, 0.18) 56%);
  }

  .hero-shell,
  .why-hero-shell,
  .invest-hero-shell,
  .webinar-hero-shell,
  .news-hero-shell,
  .section,
  .live-ribbon,
  .social-proof-row,
  .source-strip,
  .countdown-strip,
  .site-footer {
    width: calc(100vw - 56px);
    max-width: none;
  }

  .life-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .life-hero-shell {
    width: auto;
    max-width: none;
    margin-right: 28px;
    margin-left: 28px;
  }

  .life-hero .hero-copy,
  .life-hero .hero-lede,
  .life-brief-card {
    min-width: 0;
  }

  .life-hero .hero-lede {
    overflow-wrap: break-word;
  }

  .hero-panel,
  .hero-lede,
  .hero-actions,
  .video-tile,
  .social-embed-stage {
    max-width: 100%;
    width: 100%;
  }

  .home-document .hero-panel {
    display: none;
  }

  h1 {
    font-size: clamp(2.32rem, 9.7vw, 2.9rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.72rem, 7.2vw, 2rem);
  }

  .news-hero h1 {
    font-size: 2.24rem;
  }

  .news-hero-shell {
    width: calc(100vw - 72px);
  }

  .console-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .news-console h2 {
    font-size: 2rem;
  }

  h1 .desktop-inline {
    display: block;
  }

  .video-tile {
    aspect-ratio: 4 / 5;
  }

  .hero-actions,
  .webinar-actions {
    display: grid;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  /* the Ask pill keeps its inline layout - the input must stay visible */
  .ask-bar .button {
    width: auto;
    padding: 10px 18px;
  }

  .button span {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .signal-grid,
  .pillar-grid,
  .news-grid,
  .news-pulse,
  .webinar-main,
  .briefing-stat-grid,
  .decision-grid,
  .question-grid,
  .playbook-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .pathway-grid,
  .sector-grid,
  .timeline,
  .diligence-grid,
  .countdown-cells,
  .lineup-grid,
  .replay-grid,
  .life-command-grid,
  .system-grid,
  .social-proof-row,
  .channel-map-grid,
  .youtube-video-grid,
  .automation-flow,
  .briefing-wall,
  .source-pipeline,
  .article-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-ink {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    padding: 56px 22px;
  }

  .split-media,
  .split-media img {
    min-height: 360px;
  }

  .pillar-card {
    min-height: 178px;
  }

  .brief-card,
  .feature-brief {
    min-height: 260px;
  }

  .project-hero {
    min-height: 520px;
    padding: 58px 12px;
  }

  .why-briefing-card,
  .life-brief-card,
  .stage-card,
  .news-console,
  .life-command-grid article,
  .system-grid article,
  .pathway-card,
  .lens-panel,
  .diligence-panel,
  .decision-card,
  .question-grid article,
  .playbook-grid article,
  .source-grid a {
    padding: 22px;
  }

  .decision-card,
  .life-command-grid article,
  .system-grid article,
  .pathway-card,
  .question-grid article,
  .playbook-grid article,
  .sector-grid article {
    min-height: 238px;
  }

  .lens-media {
    min-height: 360px;
  }

  .diligence-media {
    min-height: 360px;
  }

  .stage-frame {
    aspect-ratio: 4 / 5;
  }

  .stage-copy,
  .broadcast-copy {
    padding: 24px;
  }

  .broadcast-card {
    padding: 12px;
  }

  .socials-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .socials-hero h1 {
    font-size: clamp(2.26rem, 9.2vw, 2.8rem);
  }

  .life-hero h1 {
    font-size: clamp(2.26rem, 9.2vw, 2.8rem);
  }

  .social-stage-top,
  .social-stage-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-proof-row {
    margin-top: -28px;
  }

  .social-channel-card {
    min-height: 300px;
    padding: 22px;
  }

  .social-channel-card h3 {
    margin-top: 42px;
  }

  .youtube-video-card {
    min-height: 260px;
  }

  .instagram-embed-card {
    min-height: 460px;
    padding: 18px;
  }

  .instagram-copy .button {
    width: 100%;
  }

  .instagram-fallback {
    width: 100%;
  }

  .social-conversion-actions {
    display: grid;
    width: 100%;
  }

  .broadcast-copy {
    min-height: 380px;
  }

  .agenda-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lineup-card,
  .replay-card {
    min-height: 280px;
  }

  .webinar-automation {
    gap: 28px;
  }

  .lead-brief {
    min-height: 470px;
  }

  .desk-card,
  .briefing-card,
  .area-card,
  .source-pipeline a {
    min-height: 230px;
  }

  .life-signal-strip {
    align-items: flex-start;
    flex-direction: column;
    width: auto;
    max-width: none;
    margin-right: 28px;
    margin-top: -34px;
    margin-left: 28px;
  }

  .life-hero h1 .headline-line {
    display: block;
  }

  .life-command-grid svg {
    margin: 30px 0 22px;
  }

  .area-card.is-wide {
    min-height: 360px;
  }

  .arrival-timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .life-story-media,
  .life-story-media img {
    min-height: 360px;
  }

  .life-story-actions {
    display: grid;
  }

  .filter-rail {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .blog-hero,
  .blog-index,
  .blog-subscribe,
  .article-detail {
    width: calc(100vw - 72px);
    padding-top: 116px;
  }

  .blog-index,
  .blog-subscribe {
    padding-top: 58px;
  }

  .blog-hero-grid,
  .article-body-grid,
  .blog-subscribe {
    gap: 32px;
  }

  .archive-count {
    flex-direction: column;
    gap: 4px;
  }

  .archive-search {
    min-height: 58px;
  }

  .blog-kicker {
    flex-wrap: wrap;
  }

  .blog-hero h1 {
    font-size: clamp(2rem, 8vw, 2.38rem);
  }

  .article-header h1 {
    font-size: clamp(1.92rem, 7.7vw, 2.32rem);
  }

  .article-action-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-action-button {
    width: 100%;
    padding: 0 12px;
  }

  .article-action-status {
    grid-column: 1 / -1;
  }

  .article-action-status {
    justify-content: center;
    text-align: center;
  }

  .article-toolbar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .article-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-card h2 {
    font-size: clamp(1.5rem, 7.2vw, 2rem);
  }

  .featured-article {
    min-height: auto;
  }

  .featured-article-media,
  .article-hero-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .featured-article-body {
    padding: 24px;
  }

  .featured-article h2 {
    font-size: clamp(1.58rem, 7vw, 2.1rem);
  }

  .article-card-body {
    padding: 22px;
  }

  .article-body .table-scroll table {
    min-width: 560px;
  }

  .article-body .article-intro {
    font-size: 1.18rem;
  }

  .article-body p {
    font-size: 1.02rem;
  }

  .lens-list article {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    min-height: 230px;
  }

  .timeline strong {
    grid-row: auto;
  }

  .timeline article span,
  .timeline article h3,
  .timeline article p {
    grid-column: auto;
  }

  .site-footer,
  .site-footer nav,
  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .projects-hero-shell,
  .project-detail-hero-shell,
  .project-controls,
  .featured-project,
  .project-enquiry-section,
  .storytelling-lead,
  .storytelling-stage,
  .project-overview-grid,
  .project-number-grid {
    grid-template-columns: 1fr;
  }

  .projects-console,
  .project-hero-card {
    max-width: 560px;
  }

  .project-filter-rail {
    justify-content: flex-start;
  }

  .project-grid,
  .project-method-grid,
  .project-pros-cons,
  .project-highlights,
  .story-scenes,
  .buyer-angle-grid,
  .project-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-project-media {
    min-height: 420px;
  }

  .storytelling-media {
    min-height: 460px;
  }

  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery a:first-child,
  .project-gallery button:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .project-enquiry-copy,
  .project-fact-panel {
    position: static;
  }

  .project-anchor-bar {
    top: 78px;
  }

  .storytelling-lead .eyebrow,
  .storytelling-lead h2,
  .storytelling-lead p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .projects-list-hero .hero-bg img,
  .project-detail-hero .hero-bg img {
    object-position: 55% center;
  }

  .projects-console,
  .project-hero-card,
  .featured-project,
  .project-card,
  .project-method-grid article,
  .project-pros-cons > div,
  .project-fact-panel,
  .project-number-grid article,
  .project-gallery a,
  .project-video-card,
  .unit-table-wrap {
    max-width: 100%;
  }

  .project-grid,
  .project-method-grid,
  .project-pros-cons,
  .project-highlights,
  .story-scenes,
  .buyer-angle-grid,
  .project-gallery,
  .project-video-grid,
  .project-feature-stats,
  .project-enquiry-form {
    grid-template-columns: 1fr;
  }

  .featured-project-media,
  .storytelling-media,
  .project-gallery a:first-child,
  .project-video-card {
    min-height: 320px;
  }

  .featured-project-body,
  .storytelling-copy,
  .story-scenes article,
  .buyer-angle-grid article,
  .project-card-body,
  .project-method-grid article,
  .project-pros-cons > div,
  .project-fact-panel,
  .project-number-grid article,
  .project-enquiry-form {
    padding: 22px;
  }

  .project-count-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-filter-rail {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .project-filter-rail button {
    flex: 0 0 auto;
  }

  .project-anchor-bar {
    width: calc(100vw - 56px);
    top: 72px;
  }

  .project-fact-panel > div > div,
  .payment-plan div,
  .project-economics div {
    grid-template-columns: 1fr;
  }

  .project-fact-panel strong {
    text-align: left;
  }

  .unit-table th,
  .unit-table td {
    padding: 14px;
  }

  .project-hero .button {
    width: 100%;
  }
}

/* ============================== LISTINGS ============================== */

.listings-head {
  padding-bottom: 18px;
}

.listings-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
}

.listings-head .section-lede {
  max-width: 640px;
}

.listings-filterbar {
  position: sticky;
  top: 100px;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-pills {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--white);
  flex: none;
}

.offer-pills button {
  border: 0;
  background: transparent;
  font: 700 0.85rem var(--font-body);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.offer-pills button.is-active {
  background: var(--ink);
  color: var(--white);
}

.area-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1 1 260px;
  min-width: 0;
  padding: 2px;
}

.area-chips::-webkit-scrollbar {
  display: none;
}

.area-chips button {
  flex: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: 600 0.83rem var(--font-body);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.area-chips button span {
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}

.area-chips button:hover {
  border-color: var(--ink);
}

.area-chips button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.area-chips button.is-active span {
  color: rgba(255, 255, 255, 0.65);
}

.filter-selects {
  display: flex;
  gap: 10px;
  flex: none;
}

.filter-selects select {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font: 600 0.83rem var(--font-body);
  color: var(--ink);
  padding: 9px 14px;
  cursor: pointer;
}

.listings-results {
  padding-top: 26px;
}

.listings-count {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 18px;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 34px 22px;
}

.listing-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.listing-card-img {
  position: relative;
  aspect-ratio: 1 / 0.95;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper-2);
}

.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.listing-card:hover .listing-card-img img {
  transform: scale(1.05);
}

/* in-card photo browser */
.lc-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lc-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* the slide track handles motion, so don't also zoom gallery cards on hover */
.listing-card:hover .listing-card-img[data-gallery] .lc-slide {
  transform: none;
}
.lc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none; /* only interactive while shown on hover, so taps open the card */
  z-index: 4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  transition: opacity 0.18s ease, background 0.18s ease;
}
.lc-nav:hover {
  background: #fff;
}
.lc-nav i,
.lc-nav svg {
  width: 18px;
  height: 18px;
}
.lc-prev {
  left: 8px;
}
.lc-next {
  right: 8px;
}
.lc-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  gap: 5px;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}
.lc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.45);
}
.lc-dot.is-on {
  background: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .listing-card:hover .lc-nav,
  .listing-card:hover .lc-dots,
  .lli-media:hover .lc-nav,
  .lli-media:hover .lc-dots {
    opacity: 1;
  }
  .listing-card:hover .lc-nav,
  .lli-media:hover .lc-nav {
    pointer-events: auto;
  }
}

/* photo-count badge */
.lc-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(18, 19, 26, 0.72);
  color: #fff;
  font: 700 12px/1 var(--font-body);
}
.lc-count i,
.lc-count svg {
  width: 13px;
  height: 13px;
}

/* ===================== listings grid/list toggle ===================== */
.listings-viewbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 4px 0 20px;
  flex-wrap: wrap;
}
.listings-viewbar .listings-count {
  margin: 0;
}
.view-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 3px;
  gap: 2px;
  flex: none;
}
.view-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: none;
  background: transparent;
  color: var(--muted);
  font: 700 13px/1 var(--font-body);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.view-toggle button i,
.view-toggle button svg {
  width: 16px;
  height: 16px;
}
.view-toggle button.is-active {
  background: var(--ink);
  color: #fff;
}

/* ===================== list view ===================== */
.listings-listwrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.listings-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}
.lli {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.lli:hover {
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: 0 14px 40px rgba(18, 19, 26, 0.08);
}
.lli-media {
  position: relative;
  display: block;
  aspect-ratio: auto;
  border-radius: 0;
  min-height: 320px;
  background: var(--paper-2);
}
.lli-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.lli-price {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink);
}
.lli-price span {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--muted);
}
.lli-title {
  text-decoration: none;
  color: inherit;
  margin-top: 4px;
}
.lli-title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
}
.lli-title:hover h3 {
  color: var(--red);
}
.lli-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}
.lli-loc i,
.lli-loc svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.lli-specs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--ink);
}
.lli-spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lli-spec i,
.lli-spec svg {
  width: 15px;
  height: 15px;
  color: var(--muted);
}
.lli-sep {
  color: var(--line);
  margin: 0 4px;
}
.lli-desc {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.lli-desc a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
.lli-agent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  text-decoration: none;
  align-self: flex-start;
}
.lli-agent img,
.lli-agent-initial {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.lli-agent-initial {
  display: inline-grid;
  place-items: center;
  background: var(--paper-2);
  color: var(--ink);
  font: 700 14px/1 var(--font-display);
}
.lli-agent span strong {
  display: block;
  font: 600 13.5px/1.2 var(--font-body);
  color: var(--ink);
}
.lli-agent span em {
  display: block;
  font: 400 11.5px/1.3 var(--font-body);
  font-style: normal;
  color: var(--muted);
}
.lli-agent:hover span strong {
  color: var(--red);
}

/* card footer: agent left, Call + WhatsApp right (matching tinted pair) */
.lli-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}
.lli-foot .lli-agent {
  margin-top: 0;
  padding-top: 0;
}
.lli-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 220px;
}
.lli-act {
  flex: 1 1 auto;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(215, 25, 32, 0.06);
  color: var(--red-dark);
  font: 700 13.5px/1 var(--font-body);
  text-decoration: none;
  transition: background 0.15s ease;
}
.lli-act:hover,
.lli-act:focus-visible {
  background: rgba(215, 25, 32, 0.13);
}
.lli-act i,
.lli-act svg {
  width: 17px;
  height: 17px;
}
.lli-more {
  margin: 8px 0 0;
  padding: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

/* ===================== project promo cards between listings ===================== */
.ppc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background-color: var(--ink);
  background-image: var(--ppc-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ppc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.08) 30%, rgba(18, 19, 26, 0.85));
}
.ppc:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(18, 19, 26, 0.22);
}
.ppc-gridcell {
  min-height: 360px;
  height: 100%;
}
.ppc-listrow {
  min-height: 230px;
}
.ppc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  padding: 6px 11px;
  backdrop-filter: blur(2px);
}
.ppc-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px 20px;
  color: #fff;
}
.ppc-body strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.15;
}
.ppc-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}
.ppc-price {
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #ffd9db;
}
.ppc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font: 700 13.5px/1 var(--font-body);
}
.ppc-cta i,
.ppc-cta svg {
  width: 15px;
  height: 15px;
}
.ppc:hover .ppc-cta {
  background: var(--red-dark, #a3131a);
}

/* ===================== list-view sidebar ===================== */
.listings-side {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.side-spotlight {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.side-spot-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  text-decoration: none;
}
.side-spot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-spot-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.05) 40%, rgba(18, 19, 26, 0.82));
}
.side-spot-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 6px 11px;
}
.side-spot-cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
}
.side-spot-cap strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}
.side-spot-cap span {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
}
.side-spot-cta {
  margin: 14px;
  width: calc(100% - 28px);
  justify-content: center;
}
.side-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 20px 22px;
}
.side-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.side-card li + li {
  border-top: 1px solid var(--line);
}
.side-card a {
  display: block;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}
.side-card a:hover {
  color: var(--red);
}

@media (max-width: 900px) {
  .listings-listwrap {
    grid-template-columns: 1fr;
  }
  .listings-side {
    position: static;
    flex-direction: column;
  }
  .lli {
    grid-template-columns: 1fr;
  }
  .lli-media {
    min-height: 0;
    aspect-ratio: 1 / 0.7;
  }
}

.listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--ink);
  font: 700 0.72rem var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(18, 19, 26, 0.14);
}

.listing-badge.badge-sale {
  background: var(--ink);
  color: var(--white);
}

.listing-card-body {
  padding: 12px 4px 0;
}

.listing-card-body h3 {
  font: 700 0.98rem/1.35 var(--font-body);
  margin: 0;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card-body .listing-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 3px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-card-body .listing-price {
  margin: 7px 0 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.listing-card-body .listing-price strong {
  font-weight: 800;
}

.listing-card-body .listing-price span {
  color: var(--muted);
  font-weight: 500;
}

.listings-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
}

.listings-empty p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

/* ------------------------------ detail page ------------------------------ */

.listing-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.listing-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.listing-breadcrumb a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.listing-detail-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  max-width: 900px;
}

.listing-metaline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 22px;
}

.listing-metaline i {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
}

.listing-gallery {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-auto-rows: 1fr;
  gap: 8px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  /* near-full-bleed hero: the wider it is, the more the photos read without opening */
  width: min(1800px, calc(100vw - 48px));
  left: 50%;
  transform: translateX(-50%);
  max-height: 760px;
  aspect-ratio: 21 / 10;
  background: var(--paper-2);
}

.listing-gallery .g-main {
  grid-row: span 2;
}

.listing-gallery .g-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  grid-row: span 2;
}

.listing-gallery button {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--paper-2);
  overflow: hidden;
  min-height: 0;
}

.listing-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.25s ease;
}

.listing-gallery button:hover img {
  filter: brightness(0.92);
}

.listing-gallery .g-side button:nth-child(n + 5) {
  display: none;
}

@media (max-width: 700px) {
  .listing-gallery .g-side button:nth-child(n + 5) {
    display: block;
  }
}

.gallery-all-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--ink) !important;
  border-radius: 10px;
  font: 700 0.83rem var(--font-body);
  color: var(--ink);
  padding: 8px 13px !important;
  box-shadow: 0 2px 12px rgba(18, 19, 26, 0.18);
}

.gallery-all-btn i {
  width: 15px;
  height: 15px;
}

.listing-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  margin-top: 30px;
  align-items: start;
}

.listing-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.listing-stats .stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font: 600 0.88rem var(--font-body);
  color: var(--ink);
  background: var(--white);
}

.listing-stats .stat-chip i {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.listing-block {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.listing-block:last-child {
  border-bottom: 0;
}

.listing-block h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.listing-description {
  color: var(--ink-soft, #3a3c46);
  font-size: 0.97rem;
  line-height: 1.75;
  white-space: pre-line;
}

.listing-description.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-desc-toggle {
  margin-top: 10px;
  border: 0;
  background: none;
  font: 700 0.9rem var(--font-body);
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.listing-amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px 24px;
}

.listing-amenities .amenity {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.93rem;
  color: var(--ink);
}

.listing-amenities .amenity i {
  width: 17px;
  height: 17px;
  color: var(--muted);
  flex: none;
}

.listing-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
  display: block;
}

.listing-map-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: -6px 0 14px;
}

.listing-aside {
  position: sticky;
  top: 104px;
}

.enquiry-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 34px rgba(18, 19, 26, 0.08);
}

.enquiry-card .enquiry-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0;
}

.enquiry-card .enquiry-price span {
  font: 500 0.95rem var(--font-body);
  color: var(--muted);
}

.enquiry-card .enquiry-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 4px 0 18px;
}

.enquiry-card .button {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.enquiry-card .enquiry-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin: 8px 0 0;
}

.enquiry-card .enquiry-agent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.enquiry-card .enquiry-agent img {
  height: 30px;
}

.enquiry-card .enquiry-agent p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.enquiry-card .enquiry-agent p strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  overflow-y: auto;
  padding: 74px clamp(16px, 12vw, 220px) 60px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-close {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 210;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font: 700 0.85rem var(--font-body);
  color: var(--ink);
  padding: 9px 16px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(18, 19, 26, 0.12);
}

.gallery-close i {
  width: 15px;
  height: 15px;
}

.gallery-scroll {
  display: grid;
  gap: 14px;
}

.gallery-scroll img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

@media (max-width: 1080px) {
  .listing-columns {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .listing-aside {
    position: static;
    order: -1;
    margin-bottom: 18px;
  }
}

@media (max-width: 980px) {
  .listings-filterbar {
    top: 72px;
  }
}

@media (max-width: 700px) {
  .listing-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    aspect-ratio: auto;
    max-height: none;
    border-radius: 16px;
    scrollbar-width: none;
  }

  .listing-gallery::-webkit-scrollbar {
    display: none;
  }

  .listing-gallery .g-side {
    display: contents;
  }

  .listing-gallery button {
    flex: 0 0 88%;
    aspect-ratio: 4 / 3;
    scroll-snap-align: center;
    border-radius: 0;
  }

  .gallery-all-btn {
    display: none;
  }

  .filter-selects {
    flex: 1 1 100%;
  }

  .filter-selects select {
    flex: 1;
  }
}

.listings-page,
.listing-detail-page {
  padding-top: 112px;
}

@media (max-width: 980px) {
  .listings-page,
  .listing-detail-page {
    padding-top: 92px;
  }
}

/* ---------- airbnb pass: search pill, rows, hearts, overview ---------- */

.listings-searchwrap {
  position: sticky;
  top: 96px;
  z-index: 40;
  display: grid;
  gap: 14px;
  padding: 12px clamp(20px, 5vw, 64px) 14px;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s ease, opacity 0.25s ease;
}

/* desktop: the whole sticky search/chips bar slides away on scroll down */
@media (min-width: 701px) {
  .listings-searchwrap.is-condensed {
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
  }
}

.search-pill {
  display: flex;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(18, 19, 26, 0.08);
  padding: 6px;
  gap: 0;
}

.search-pill label {
  display: grid;
  gap: 1px;
  padding: 6px 22px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s ease;
  min-width: 0;
}

.search-pill label:hover {
  background: var(--paper-2);
}

.search-pill label:last-of-type {
  border-right: 0;
}

.search-pill label > span {
  font: 800 0.68rem var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.search-pill select {
  border: 0;
  background: transparent;
  font: 500 0.92rem var(--font-body);
  color: var(--muted);
  padding: 0;
  cursor: pointer;
  max-width: 150px;
}

.search-pill select:focus {
  outline: none;
  color: var(--ink);
}

.pill-search-btn {
  flex: none;
  align-self: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  margin-left: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pill-search-btn:hover {
  background: var(--red-dark);
  transform: scale(1.05);
}

.pill-search-btn i {
  width: 18px;
  height: 18px;
}

.area-chips .chip-saved i {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 5px;
}

/* horizontal rows */
.listings-rows[hidden],
.listings-grid[hidden],
.listings-count[hidden],
.listings-viewbar[hidden],
.listings-listwrap[hidden] {
  display: none;
}

.listing-row {
  margin-bottom: 44px;
}

.listing-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 14px;
}

.listing-row-head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

.listing-row-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* related-homes rail on listing detail pages: arrows above, then the scroll row.
   The rail breaks out of the content column to near-full width (like the gallery). */
.related-rail {
  position: relative;
  width: min(1800px, calc(100vw - 48px));
  left: 50%;
  transform: translateX(-50%);
}
.related-rail-nav {
  justify-content: flex-end;
  margin-bottom: 14px;
}

.listing-row-nav .row-seeall {
  border: 0;
  background: none;
  font: 700 0.86rem var(--font-body);
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
  margin-right: 6px;
}

.listing-row-nav button[data-row-prev],
.listing-row-nav button[data-row-next] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.listing-row-nav button[data-row-prev]:hover,
.listing-row-nav button[data-row-next]:hover {
  box-shadow: 0 3px 12px rgba(18, 19, 26, 0.14);
  transform: scale(1.04);
}

.listing-row-nav button i {
  width: 16px;
  height: 16px;
}

.listing-row-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(210px, 16.5vw, 275px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.listing-row-scroll::-webkit-scrollbar {
  display: none;
}

.listing-row-scroll .listing-card {
  scroll-snap-align: start;
}

/* drag-to-slide affordance for the card rails (mouse/trackpad; touch swipes
   natively). Grab cursor only where there's a real pointer. */
@media (hover: hover) and (pointer: fine) {
  .listing-row-scroll,
  .hood-row-scroll,
  .gallery-scroll {
    cursor: grab;
  }
  .listing-row-scroll.is-dragging,
  .hood-row-scroll.is-dragging,
  .gallery-scroll.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
  }
}
.listing-row-scroll a,
.hood-row-scroll a,
.gallery-scroll a,
.listing-row-scroll img,
.hood-row-scroll img,
.gallery-scroll img {
  -webkit-user-drag: none;
  user-select: none;
}

/* hearts */
.listing-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.listing-heart:hover {
  transform: scale(1.12);
}

.listing-heart i {
  width: 22px;
  height: 22px;
  color: var(--white);
  fill: rgba(18, 19, 26, 0.45);
  stroke-width: 2.2;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.listing-heart.is-saved i {
  color: var(--red);
  fill: var(--red);
}

.listing-badge.badge-new {
  left: auto;
  right: 52px;
  background: var(--champagne);
  color: var(--ink);
}

.listing-card-body h3 {
  font-size: 0.95rem;
}

.listing-card-body .listing-sub {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.listing-price .dot {
  color: var(--muted);
}

.listing-price > span:not(.dot) {
  color: var(--muted);
  font-weight: 500;
}

/* detail overview */
.listing-overview {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.overview-head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.overview-head p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 20px;
}

.listing-host {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.listing-host img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.listing-host p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.listing-host p strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.listing-highlights {
  display: grid;
  gap: 16px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
}

.highlight-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.highlight-row i {
  width: 22px;
  height: 22px;
  color: var(--ink);
  flex: none;
  margin-top: 2px;
}

.highlight-row strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}

.highlight-row span {
  font-size: 0.86rem;
  color: var(--muted);
}

.metaline-new {
  background: var(--champagne);
  color: var(--ink);
  font: 700 0.72rem var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
}

.enquiry-reserve {
  font-size: 1rem;
}

@media (max-width: 700px) {
  .listings-searchwrap {
    top: 72px;
  }

  .search-pill {
    width: 100%;
    flex-wrap: wrap;
    border-radius: 22px;
    padding: 8px;
  }

  .search-pill label {
    flex: 1 1 40%;
    border-right: 0;
    padding: 8px 14px;
  }

  .search-pill select {
    max-width: 100%;
    width: 100%;
  }

  .pill-search-btn {
    width: 100%;
    border-radius: 14px;
    margin: 4px 0 0;
    height: 44px;
  }

  .listing-row-scroll {
    grid-auto-columns: 78vw;
  }
}

/* agent avatars */
.listing-host .agent-initial,
.enquiry-agent .agent-initial {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  font: 800 1.1rem var(--font-display);
  flex: none;
}

.enquiry-agent img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.enquiry-agent .agent-initial {
  width: 42px;
  height: 42px;
  font-size: 1rem;
}

.enquiry-agent p a {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  margin-top: 2px;
}

.enquiry-agent p a:hover {
  text-decoration: underline;
}

/* agent profile page + agent links */
.agent-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease;
}

.agent-link:hover {
  border-color: var(--ink);
}

.agent-hero {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 0 6px;
  flex-wrap: wrap;
}

.agent-hero > img,
.agent-hero > .agent-initial-lg {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  box-shadow: 0 8px 26px rgba(18, 19, 26, 0.14);
}

.agent-hero > .agent-initial-lg {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font: 800 2.4rem var(--font-display);
}

.agent-hero-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 2px;
}

.agent-hero-sub {
  color: var(--muted);
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.agent-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.agent-hero-stats strong {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  margin-right: 4px;
}

/* agent directory */
.listing-detail-page > .section > h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.agent-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 3px;
  padding: 30px 18px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.agent-card:hover {
  box-shadow: 0 14px 34px rgba(18, 19, 26, 0.12);
  transform: translateY(-3px);
}

.agent-card img,
.agent-card .agent-initial-lg {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.agent-card .agent-initial-lg {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font: 800 1.8rem var(--font-display);
}

.agent-card h3 {
  font: 700 1.02rem var(--font-body);
  margin: 0;
}

.agent-card-count {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: var(--ink);
}

.agent-card-count strong {
  font-weight: 800;
}

.agent-card-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.agent-card-area {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.agent-card-area i {
  width: 13px;
  height: 13px;
}

/* agent card: linked top + whatsapp pill */
.agent-card-top {
  display: grid;
  justify-items: center;
  gap: 3px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.agent-card-wa {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 11px 14px;
}

/* listings browse goes full-bleed like Airbnb: gutters, not a max-width box */
.listings-page .section {
  width: auto;
  max-width: none;
  margin: 0;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.listings-page .listings-head {
  padding-top: 42px;
}

/* mobile: compact search bar, pill expands on tap */
.search-compact {
  display: none;
  width: 100%;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(18, 19, 26, 0.08);
  padding: 11px 18px;
  cursor: pointer;
  text-align: left;
}

.search-compact > i {
  width: 18px;
  height: 18px;
  color: var(--ink);
  flex: none;
}

.search-compact span {
  flex: 1;
  min-width: 0;
  display: grid;
}

.search-compact strong {
  font: 700 0.92rem var(--font-body);
  color: var(--ink);
}

.search-compact em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 700px) {
  .search-compact {
    display: flex;
  }

  .search-pill {
    display: none;
  }

  .listings-searchwrap.is-open .search-pill {
    display: flex;
    margin-top: 10px;
  }

  .listings-searchwrap {
    gap: 0;
  }

  .listings-searchwrap .area-chips {
    margin-top: 14px;
  }

  .listings-head {
    padding-top: 28px;
    padding-bottom: 8px;
  }

  .listings-head .section-lede {
    font-size: 0.95rem;
  }
}

/* mobile scroll: header + search bar slide away going down, return going up */
@media (max-width: 700px) {
  .site-header {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }

  .site-header.nav-hidden {
    transform: translateY(-120%);
  }

  .listings-searchwrap {
    transition: transform 0.3s ease, opacity 0.25s ease;
  }

  .listings-searchwrap.is-condensed {
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .listings-searchwrap.is-condensed .area-chips {
    display: none;
  }
}


/* back button on listing pages */
.listing-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font: 700 0.85rem var(--font-body);
  color: var(--ink);
  padding: 8px 16px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.listing-back:hover {
  box-shadow: 0 4px 14px rgba(18, 19, 26, 0.12);
  transform: translateX(-2px);
}

.listing-back i {
  width: 15px;
  height: 15px;
}

/* static project/article pages */
.static-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.static-gallery a,
.static-gallery button {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  border: 0;
  padding: 0;
  cursor: zoom-in;
  width: 100%;
}

.static-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.static-gallery a:hover img,
.static-gallery button:hover img {
  transform: scale(1.05);
}

.project-quote {
  margin: 26px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--red);
  background: var(--white);
  border-radius: 0 16px 16px 0;
}

.project-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.project-quote cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.85rem;
}

.article-hero-figure {
  margin: 26px 0;
  border-radius: 18px;
  overflow: hidden;
}

.article-hero-figure img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.agent-bio {
  max-width: 620px;
  margin: 0 0 18px;
  font-size: 0.98rem;
}

/* agent pages: only the property grids go full width */
.agents-page .section-full {
  width: auto;
  max-width: none;
  margin: 0;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

/* agent page filter bar */
.agent-filterbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}

.agent-filter-count {
  margin: 0;
  flex-basis: 100%;
}

@media (max-width: 700px) {
  .agent-filterbar .filter-selects {
    flex: 1 1 100%;
  }

  .agent-filterbar .filter-selects select {
    flex: 1;
  }
}

/* tighten agent-page vertical rhythm around the filter bar */
.agents-page section[aria-label="Agent profile"] {
  padding-bottom: 10px;
}

.agents-page section[aria-label="Filter listings"] {
  padding-top: 18px;
  padding-bottom: 0;
}

.agents-page [data-agent-baked] .section:first-child,
.agents-page [data-agent-results] {
  padding-top: 38px;
}

/* inline cal.com embed in the book section */
.cal-embed-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px;
  position: relative;
}

#cal-inline-book {
  width: 100%;
  margin: 0 auto;
  height: auto;
  min-height: 700px;
}

/* soft fade hinting there's more below (the slot list) */

.cal-embed-fallback {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 8px 0 4px;
}

@media (max-width: 700px) {
  .cal-embed-wrap {
    min-height: 620px;
  }
}

/* ask-me-anything */
.ask-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 8px 7px 20px;
  box-shadow: 0 8px 26px rgba(18, 19, 26, 0.09);
  max-width: 640px;
  margin: 18px 0 6px;
}

.ask-bar > i {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: none;
}

.ask-bar input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font: 500 0.95rem var(--font-body);
  color: var(--ink);
  outline: none;
}

.ask-bar .button {
  flex: none;
  padding: 10px 22px;
}

.ask-bar-hero {
  margin-bottom: 20px;
}

.ask-suggests {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 6px;
}

.ask-suggests button,
.ask-followups button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: 600 0.83rem var(--font-body);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.ask-suggests button:hover,
.ask-followups button:hover {
  border-color: var(--red);
}

.ask-loading {
  margin-top: 26px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ask-answer {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 0 18px 18px 0;
  padding: 22px 26px;
  max-width: 760px;
}

.aa-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 700 0.75rem var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 10px;
}

.aa-head svg {
  width: 15px;
  height: 15px;
  color: var(--green, #1d8a4e);
}

.ask-answer p[data-ask-answer] {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 14px;
}

.ask-followups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

@media (max-width: 700px) {
  .ask-bar {
    padding-left: 14px;
  }

  .ask-bar .button span {
    font-size: 0.85rem;
  }
}

.ask-loading[hidden],
[data-ask-results][hidden] {
  display: none;
}

/* --- Law library grid (bahrain-property-laws #library) --- */
.law-lib {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.law-cat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px 12px;
  box-shadow: 0 10px 34px rgba(18, 19, 26, 0.05);
}

.law-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 11.5px;
  font-weight: 900;
  color: var(--red);
}

.law-cat-head em {
  font-style: normal;
  font-weight: 800;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
}

.law-cat a {
  position: relative;
  display: block;
  padding: 13px 30px 13px 0;
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.4;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.16s ease;
}

.law-cat a:last-child {
  border-bottom: 0;
}

.law-cat a::after {
  content: "\2192";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  color: var(--red);
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.law-cat a:hover,
.law-cat a:focus-visible {
  color: var(--red);
}

.law-cat a:hover::after,
.law-cat a:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 700px) {
  .law-lib {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .law-cat {
    padding: 20px 20px 8px;
  }
}

/* dedicated book-a-call page */
.book-call-page .section {
  padding-top: 140px;
}

#cal-inline-full {
  width: 100%;
  height: auto;
  min-height: 760px;
}

@media (max-width: 700px) {
  .book-call-page .section {
    padding-top: 118px;
  }
  #cal-inline-full {
    min-height: 640px;
  }
}

/* pre-footer latest listings row */
.latest-row-section .listing-row {
  margin-bottom: 0;
}

a.row-seeall {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* on-site YouTube playlist player (socials) */
.yt-player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  aspect-ratio: 16 / 9;
}

.yt-player-shell iframe,
.yt-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-poster {
  cursor: pointer;
  padding: 0;
  background: var(--ink);
}

.yt-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.35s ease;
}

.yt-poster:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.yt-poster::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 52px;
  transform: translate(-50%, -50%);
  background: var(--red);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(215, 25, 32, 0.45);
}

.yt-poster::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-38%, -50%);
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.yt-episodes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.yt-episode {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink-soft);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.yt-episode:hover {
  border-color: rgba(215, 25, 32, 0.55);
  box-shadow: 0 10px 30px rgba(18, 19, 26, 0.1);
  transform: translateY(-2px);
}

.yt-episode.is-playing {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.yt-episode img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.yt-episode span {
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.35;
  padding: 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-episode.is-playing span::before {
  content: "\25B6 Now playing";
  display: block;
  color: var(--red);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

@media (max-width: 700px) {
  .yt-episodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

/* listing video tours: own HTML5 player + branded YouTube poster */
.listing-video-tour {
  margin: 26px 0 6px;
}

/* designed video-tour CTA (we never show raw YouTube thumbnails) */
.video-tour-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  background:
    radial-gradient(90% 160% at 0% 50%, rgba(215, 25, 32, 0.35), transparent 55%),
    var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-tour-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(18, 19, 26, 0.28);
}
.vt-play {
  position: relative;
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
}
.vt-play::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(215, 25, 32, 0.55);
  animation: vtPulse 2.2s ease-out infinite;
}
@keyframes vtPulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  70%, 100% { transform: scale(1.25); opacity: 0; }
}
.vt-play i,
.vt-play svg {
  width: 22px;
  height: 22px;
  color: #fff;
  fill: #fff;
  margin-left: 3px;
}
.vt-copy {
  min-width: 0;
}
.vt-copy strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 20px);
}
.vt-copy em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}
.vt-go {
  flex: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.video-tour-cta:hover .vt-go {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.vt-go i,
.vt-go svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 560px) {
  .vt-go { display: none; }
}

/* video lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 11, 16, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.video-lightbox.is-open {
  opacity: 1;
}
.video-lightbox-frame {
  width: min(1160px, 94vw);
  aspect-ratio: 16 / 9;
  max-height: 86vh;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}
.video-lightbox-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: 700 13.5px/1 var(--font-body);
  cursor: pointer;
  transition: background 0.15s ease;
}
.video-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.video-lightbox-close i,
.video-lightbox-close svg {
  width: 16px;
  height: 16px;
}

.listing-video-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 6px 0 14px;
}

.listing-video-grid {
  display: grid;
  gap: 14px;
}

.listing-video-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.listing-video-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  aspect-ratio: 16 / 9;
  box-shadow: 0 14px 40px rgba(18, 19, 26, 0.14);
}

.listing-video-shell video,
.listing-video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  accent-color: var(--red);
}

/* many agent walkthroughs are portrait phone clips - never crop them */
.listing-video-shell video {
  object-fit: contain;
  background: var(--ink);
}

/* --- cinematic project template (shared by /four-seasons and generated project pages) --- */
.fs-page { background: #0d0e13; color: #f5f1e8; }
.fs-page .section { max-width: 1180px; }
.fs-eyebrow {
font: 800 12px var(--font-body); letter-spacing: 0.34em; text-transform: uppercase;
color: rgba(245, 241, 232, 0.85); margin-bottom: 18px;
}
.fs-eyebrow span { color: rgba(245, 241, 232, 0.45); margin-right: 14px; }
.fs-h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4.6vw, 54px); line-height: 1.06; color: #f5f1e8; max-width: 720px; }
.fs-lede { color: rgba(245, 241, 232, 0.95); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.75; max-width: 640px; margin-top: 22px; }

/* opening frame */
.fs-hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.fs-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fs-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,14,19,0.34), rgba(13,14,19,0.08) 40%, rgba(13,14,19,0.92) 96%); }
.fs-hero-copy { position: relative; z-index: 2; padding: 0 clamp(20px, 6vw, 84px) clamp(60px, 10vh, 110px); max-width: 900px; }
.fs-hero-kicker { font: 700 clamp(15px, 1.6vw, 19px) var(--font-body); letter-spacing: 0.02em; color: #fff; margin-bottom: 18px; }
.fs-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 7vw, 88px); line-height: 1.0; color: #fff; }
.fs-hero-sub { margin-top: 22px; color: rgba(245,241,232,0.95); font-size: clamp(15px, 1.4vw, 18px); max-width: 520px; line-height: 1.7; }

.fs-chapter { padding: clamp(80px, 13vh, 150px) clamp(20px, 6vw, 84px); }

/* the name: stat wall */
.fs-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px 28px; margin-top: 54px; }
.fs-stat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 4.4vw, 62px); color: #fff; line-height: 1; }
.fs-stat.gold strong { color: #ff5f57; }
.fs-stat span { display: block; margin-top: 10px; color: rgba(245,241,232,0.88); font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.fs-rule { border: 0; border-top: 1px solid rgba(200, 184, 148, 0.25); margin: 0 clamp(20px, 6vw, 84px); }

/* full-bleed image chapters */
.fs-bleed { position: relative; min-height: 86vh; display: flex; align-items: flex-end; overflow: hidden; }
.fs-bleed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fs-bleed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,14,19,0.18), rgba(13,14,19,0.88)); }
.fs-bleed-copy { position: relative; z-index: 2; padding: 0 clamp(20px, 6vw, 84px) clamp(48px, 8vh, 90px); }

/* the bridge: pinned scroll */
.fs-bridge { position: relative; }
.fs-bridge-bg { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.fs-bridge-bg img { width: 100%; height: 100%; object-fit: cover; }
.fs-bridge-bg::after { content: ""; position: absolute; inset: 0; background: rgba(13, 14, 19, 0.45); }
.fs-bridge-steps { position: relative; z-index: 2; margin-top: -100vh; }
.fs-step { min-height: 88vh; display: flex; align-items: center; justify-content: center; padding: 0 20px; }
.fs-step p {
  background: rgba(13, 14, 19, 0.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(200, 184, 148, 0.35); border-radius: 12px;
  padding: 26px 38px; max-width: 480px; text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.4vw, 30px); line-height: 1.3; color: #fff;
}
.fs-step p em { color: #c8b894; font-style: normal; }

/* day timeline */
.fs-day { display: grid; gap: 0; margin-top: 56px; max-width: 760px; }
.fs-moment { display: grid; grid-template-columns: 92px 1fr; gap: 26px; padding: 26px 0; border-top: 1px solid rgba(200,184,148,0.18); }
.fs-moment:last-child { border-bottom: 1px solid rgba(200,184,148,0.18); }
.fs-moment time { font: 800 13px var(--font-body); letter-spacing: 0.14em; color: rgba(245, 241, 232, 0.85); padding-top: 5px; }
.fs-moment h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.fs-moment p { color: rgba(245,241,232,0.9); font-size: 16.5px; line-height: 1.65; }

/* interactive amenity plan */
.fs-plan { position: relative; margin-top: 56px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(200,184,148,0.3); }
.fs-plan > img { display: block; width: 100%; }
.fs-pin {
  position: absolute; transform: translate(-50%, -50%); z-index: 3;
  width: clamp(22px, 2.6vw, 32px); height: clamp(22px, 2.6vw, 32px); border-radius: 50%;
  background: #c8b894; color: #12131a; border: 2px solid rgba(255,255,255,0.85);
  font: 800 clamp(10px, 1.2vw, 13px) var(--font-body); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.45); transition: transform .15s ease, background .15s ease;
}
.fs-pin:hover, .fs-pin.on { background: var(--red); color: #fff; transform: translate(-50%, -50%) scale(1.28); z-index: 4; }
.fs-pin .tip {
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: rgba(13,14,19,0.94); border: 1px solid rgba(200,184,148,0.5); color: #f5f1e8;
  font: 700 12.5px var(--font-body); letter-spacing: 0.04em; white-space: nowrap;
  padding: 8px 14px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease;
}
.fs-pin:hover .tip, .fs-pin.on .tip { opacity: 1; transform: translateX(-50%) translateY(0); }
.fs-plan-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.fs-plan-legend button {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(245,241,232,0.04); border: 1px solid rgba(200,184,148,0.3); border-radius: 999px;
  color: rgba(245,241,232,0.8); font: 700 13px var(--font-body); padding: 8px 16px 8px 8px; cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.fs-plan-legend button i { font-style: normal; width: 22px; height: 22px; border-radius: 50%; background: #c8b894; color: #12131a; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; }
.fs-plan-legend button:hover, .fs-plan-legend button.on { border-color: var(--red); color: #fff; }
.fs-plan-legend button:hover i, .fs-plan-legend button.on i { background: var(--red); color: #fff; }
@media (max-width: 700px) {
  .fs-pin .tip { display: none; }
}

/* film + virtual tour */
.fs-media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); gap: 18px; margin-top: 56px; }
.fs-media {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(200,184,148,0.3); background: #000; aspect-ratio: 16 / 9;
}
.fs-media.tall { aspect-ratio: auto; height: min(78vh, 640px); }
.fs-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.fs-media-poster { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: #000; }
.fs-media-poster img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: opacity .2s ease, transform .4s ease; }
.fs-media-poster:hover img { opacity: 0.9; transform: scale(1.02); }
.fs-media-poster .fs-media-label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(13,14,19,0.78); border: 1px solid rgba(200,184,148,0.55); border-radius: 999px;
  padding: 16px 30px; color: #fff; font: 800 15px var(--font-body); white-space: nowrap;
}
.fs-media-poster .fs-media-label i.dot {
  font-style: normal; width: 40px; height: 40px; border-radius: 50%; background: var(--red);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.fs-media-poster .fs-media-label i.dot::after { content: ""; border-left: 12px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.fs-media-poster.tour .fs-media-label i.dot::after { content: "360°"; border: 0; margin: 0; font: 800 10.5px var(--font-body); }
.fs-media-caption { margin-top: 12px; color: rgba(245,241,232,0.85); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }

/* interiors editorial */
.fs-editorial { display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; margin-top: 56px; align-items: start; }
.fs-editorial figure { margin: 0; }
.fs-editorial img { width: 100%; border-radius: 10px; display: block; }
.fs-editorial .stack { display: grid; gap: 18px; margin-top: clamp(30px, 6vw, 90px); }
.fs-editorial figcaption { margin-top: 10px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,241,232,0.85); font-weight: 700; }
.fs-materials { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px; }
.fs-materials span { border: 1px solid rgba(245,241,232,0.35); color: rgba(245,241,232,0.92); border-radius: 999px; padding: 8px 18px; font: 700 12.5px var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }

/* the homes */
.fs-units { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 54px; }
.fs-unit { border: 1px solid rgba(200,184,148,0.3); border-radius: 12px; padding: 28px 26px; background: rgba(245,241,232,0.03); position: relative; }
.fs-unit .last { position: absolute; top: 16px; right: 16px; background: var(--red); color: #fff; font: 800 10.5px var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; border-radius: 999px; padding: 5px 12px; }
.fs-unit h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; }
.fs-unit .type { color: rgba(245,241,232,0.8); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-top: 4px; }
.fs-unit .size { color: rgba(245,241,232,0.92); margin-top: 16px; font-size: 14px; }
.fs-unit .size strong { color: #e8c56b; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: 0.01em; }
.fs-unit .price { margin-top: 6px; font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; }
.fs-unit .fs-unit-plan { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(200,184,148,0.35); color: #e8c56b; font-weight: 800; font-size: 16.5px; }
.fs-unit .fs-unit-plan strong { color: #fff; font-size: 19px; white-space: nowrap; }
.fs-combine { margin-top: 26px; color: rgba(245,241,232,0.6); font-size: 14.5px; max-width: 640px; line-height: 1.7; }

/* sensible part */
.fs-sense { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 54px; }
.fs-sense article { border-top: 2px solid #c8b894; padding-top: 20px; }
.fs-sense h3 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 25px); font-weight: 600; color: #fff; margin-bottom: 8px; }
.fs-sense p { color: rgba(245,241,232,0.9); font-size: 16.5px; line-height: 1.65; }

/* close */
.fs-close { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.fs-close img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fs-close::after { content: ""; position: absolute; inset: 0; background: rgba(13,14,19,0.62); }
.fs-close-copy { position: relative; z-index: 2; padding: 40px 20px; max-width: 760px; }
.fs-close h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5vw, 60px); color: #fff; line-height: 1.08; }
.fs-close .fs-actions { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.fs-btn { display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; padding: 15px 30px; font: 800 15px var(--font-body); text-decoration: none; transition: transform .15s ease; }
.fs-btn:hover { transform: translateY(-2px); }
.fs-btn.red { background: var(--red); color: #fff; }
.fs-btn.ghost { background: rgba(245,241,232,0.1); color: #f5f1e8; border: 1px solid rgba(245,241,232,0.35); }
.fs-btn.gold { background: #c8b894; color: #12131a; }

/* sticky enquiry bar */
.fs-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 90px); z-index: 90;
  display: flex; align-items: center; gap: 18px;
  background: rgba(13, 14, 19, 0.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(200,184,148,0.4); border-radius: 999px; padding: 10px 12px 10px 24px;
  transition: transform .35s ease; max-width: calc(100vw - 24px);
}
.fs-bar.on { transform: translate(-50%, 0); }
.fs-bar strong { color: #fff; font: 700 14.5px var(--font-body); white-space: nowrap; }
.fs-bar span { color: #c8b894; font: 700 12px var(--font-body); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.fs-bar a { background: var(--red); color: #fff; border-radius: 999px; padding: 11px 22px; font: 800 13.5px var(--font-body); text-decoration: none; white-space: nowrap; }
@media (max-width: 700px) {
  .fs-editorial { grid-template-columns: 1fr; }
  .fs-editorial .stack { margin-top: 0; }
  .fs-moment { grid-template-columns: 64px 1fr; gap: 16px; }
  .fs-bar span { display: none; }
}
/* dark pages end on a light band: latest-listings row + footer keep their normal look */
.fs-page .latest-row-section,
.fs-page .site-footer {
  position: relative;
  z-index: 2;
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}
.fs-page .latest-row-section {
  padding-top: 64px;
  color: var(--ink);
}

.fs-page .latest-row-section .listing-row-head h2 {
  color: var(--ink);
}
/* generated story-template additions */
.fs-advisor {
  margin-top: 56px; max-width: 820px;
  border-left: 3px solid var(--red); padding: 6px 0 6px 28px;
}
.fs-advisor .who { font: 800 12px var(--font-body); letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245, 241, 232, 0.85); margin-bottom: 12px; }
.fs-advisor p { font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 2.2vw, 26px); line-height: 1.5; color: #fff; }
.fs-facts { margin-top: 46px; max-width: 760px; }
.fs-fact { display: grid; grid-template-columns: minmax(120px, 220px) 1fr; gap: 20px; padding: 15px 0; border-top: 1px solid rgba(200,184,148,0.18); }
.fs-fact:last-child { border-bottom: 1px solid rgba(200,184,148,0.18); }
.fs-fact span { color: rgba(245, 241, 232, 0.72); font: 700 12px var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; padding-top: 3px; }
.fs-fact strong { color: #fff; font-weight: 600; font-size: 15.5px; line-height: 1.5; }
.fs-units-more { margin-top: 20px; color: rgba(245,241,232,0.88); font-size: 14px; }
.fs-page .static-gallery { margin-top: 46px; }
.fs-page .static-gallery a, .fs-page .static-gallery button { background: rgba(245,241,232,0.04); }


/* destination-plan info card + "you are here" pin */
.fs-plan-card {
  display: none;
  position: absolute;
  z-index: 6;
  width: min(320px, 74%);
  border: 1px solid rgba(200, 184, 148, 0.55);
  border-radius: 12px;
  background: rgba(13, 14, 19, 0.93);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  transform: translate(18px, 18px);
  pointer-events: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.fs-plan-card.flip-x {
  transform: translate(calc(-100% - 18px), 18px);
}

.fs-plan-card.flip-y {
  transform: translate(18px, calc(-100% - 18px));
}

.fs-plan-card.flip-x.flip-y {
  transform: translate(calc(-100% - 18px), calc(-100% - 18px));
}

.fs-plan-card.show {
  display: block;
}

@media (max-width: 700px) {
  .fs-plan-card {
    left: 3% !important;
    right: 3%;
    top: auto !important;
    bottom: 3%;
    width: auto;
    transform: none !important;
    margin-left: 0 !important;
  }
  .fs-plan-card h3 {
    font-size: 17px;
  }
  .fs-plan-card .text {
    font-size: 13px;
  }
}

.fs-plan-card .tag {
  color: rgba(245, 241, 232, 0.85);
  font: 800 11px var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fs-plan-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
}

.fs-plan-card .text {
  margin-top: 8px;
  color: rgba(245, 241, 232, 0.95);
  font-size: 15px;
  line-height: 1.65;
}

.fs-pin.home {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(215, 25, 32, 0.35), 0 4px 16px rgba(0, 0, 0, 0.45);
}

/* "Getting There" drive-times chapter (Bilaj indigo theme) */
.fs-drive {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  gap: 22px 28px;
  margin-top: 54px;
  align-items: start;
}

.fs-drive-map {
  grid-row: 1 / 3;
}

.fs-drive-map {
  position: relative;
  border-radius: 14px;
  background: #232a54;
  border: 1px solid rgba(253, 172, 125, 0.25);
  padding: 6%;
  overflow: hidden;
}

.fs-drive-map > img {
  display: block;
  width: 100%;
  opacity: 0.95;
}

.fs-drive-map svg.route {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  pointer-events: none;
}

.fs-drive-map svg.route line {
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 6 7;
  vector-effect: non-scaling-stroke;
  opacity: 0.85;
}

.fs-drive-pin {
  position: absolute;
  transform: translate(-50%, -95%);
  width: 22px;
  height: 29px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.15s ease;
}

.fs-drive-pin:hover,
.fs-drive-pin.on {
  transform: translate(-50%, -95%) scale(1.35);
  z-index: 4;
}

.fs-drive-pin svg {
  width: 100%;
  height: 100%;
  fill: #f47b4d;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}

.fs-drive-pin.on svg {
  fill: #14a06a;
}

.fs-drive-origin {
  position: absolute;
  transform: translate(-50%, -95%);
  z-index: 5;
  text-align: center;
  pointer-events: none;
}

.fs-drive-origin svg {
  width: 30px;
  height: 39px;
  fill: #14a06a;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
}

.fs-drive-origin span {
  display: block;
  margin-top: 2px;
  background: #14a06a;
  color: #fff;
  font: 800 9.5px var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

.fs-drive-card {
  background: #fdfbf7;
  border-radius: 14px;
  padding: 30px 34px;
  color: #232a54;
}

.fs-drive-card .from {
  color: #f26b3a;
  font: 800 11px var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.fs-drive-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  color: #2f3675;
  margin-top: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(47, 54, 117, 0.15);
}

.fs-drive-card .mins {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
}

.fs-drive-card .mins strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 700;
  color: #2f3675;
  line-height: 1;
}

.fs-drive-card .mins span {
  font: 800 12px var(--font-body);
  letter-spacing: 0.2em;
  color: #2f3675;
  text-transform: uppercase;
}

.fs-drive-card .note {
  margin-top: 10px;
  color: rgba(47, 54, 117, 0.6);
  font-size: 15px;
}

.fs-drive-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}

.fs-drive-list button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fdfbf7;
  border: 0;
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  font: 700 14.5px var(--font-body);
  color: #2f3675;
  transition: transform 0.12s ease;
}

.fs-drive-list button:hover {
  transform: translateY(-2px);
}

.fs-drive-list button.on {
  background: #14a06a;
  color: #fff;
}

.fs-drive-list button .min {
  margin-left: auto;
  font-weight: 800;
  opacity: 0.75;
  white-space: nowrap;
}

.fs-drive-list button svg {
  width: 15px;
  height: 20px;
  fill: #f26b3a;
  flex: none;
}

.fs-drive-list button.on svg {
  fill: #fff;
}

@media (max-width: 900px) {
  .fs-drive {
    grid-template-columns: 1fr;
  }
  .fs-drive-map {
    grid-row: auto;
  }
  .fs-drive-list {
    grid-column: 1;
  }
}

/* venue spotlight rows */
.fs-venue {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  margin-top: 56px;
}

.fs-venue.rev figure {
  order: 2;
}

.fs-venue figure {
  margin: 0;
}

.fs-venue img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(200, 184, 148, 0.25);
}

.fs-venue .vtag {
  color: rgba(245, 241, 232, 0.85);
  font: 800 11px var(--font-body);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.fs-venue h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  color: #fff;
  margin-top: 10px;
  line-height: 1.15;
}

.fs-venue .vbody {
  margin-top: 14px;
  color: rgba(245, 241, 232, 0.94);
  font-size: 17px;
  line-height: 1.7;
}

.fs-stats.small {
  margin-top: 26px;
  gap: 22px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fs-stats.small strong {
  font-size: clamp(24px, 2.6vw, 34px);
}

@media (max-width: 820px) {
  .fs-venue {
    grid-template-columns: 1fr;
  }
  .fs-venue.rev figure {
    order: 0;
  }
}

/* project enquiry form panel on dark pages */
.fs-enquire {
  margin-top: 44px;
  background: var(--paper);
  border-radius: 14px;
  padding: clamp(22px, 3.5vw, 40px);
  color: var(--ink);
  max-width: 860px;
}

/* storytelling scene blocks (replaces cramped 3-col scene cards) */
.fs-story {
  margin-top: 26px;
  max-width: 860px;
}

.fs-story article {
  padding: 38px 0;
  border-top: 1px solid rgba(245, 241, 232, 0.14);
}

.fs-story article:first-child {
  border-top: 0;
}

.fs-story h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 40px);
  color: #fff;
  line-height: 1.1;
}

.fs-story p {
  margin-top: 14px;
  color: rgba(245, 241, 232, 0.92);
  font-size: clamp(16.5px, 1.7vw, 20px);
  line-height: 1.75;
  max-width: 760px;
}

/* payment plan: numbers a buyer can read from across the room */
.fs-pay {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 50px;
}

@media (max-width: 700px) {
  .fs-pay {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .fs-pay-cell {
    padding: 18px 16px 16px;
  }
  .fs-pay-cell strong {
    font-size: 30px;
  }
}

.fs-pay-cell {
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 12px;
  padding: 26px 24px 22px;
  background: rgba(245, 241, 232, 0.03);
}

.fs-pay-cell strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1;
  color: #fff;
}

.fs-pay-cell span {
  display: block;
  margin-top: 12px;
  color: rgba(245, 241, 232, 0.9);
  font: 700 14px var(--font-body);
  line-height: 1.4;
}

.fs-pay-cell.lead {
  background: var(--red);
  border-color: var(--red);
}

.fs-pay-cell.lead span {
  color: #fff;
}

/* enquiry form: dark, spacious, awwwards-grade */
.fs-enquire {
  margin-top: 44px;
  background: rgba(245, 241, 232, 0.03);
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 16px;
  padding: clamp(26px, 4vw, 48px);
  max-width: 900px;
}

.fs-enquire .booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.fs-enquire .booking-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-enquire .booking-form label span {
  font: 800 12px var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.fs-enquire .booking-form input,
.fs-enquire .booking-form select,
.fs-enquire .booking-form textarea {
  width: 100%;
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid rgba(245, 241, 232, 0.25);
  border-radius: 10px;
  padding: 17px 18px;
  color: #fff;
  font: 500 16px var(--font-body);
  transition: border-color 0.15s ease, background 0.15s ease;
  appearance: none;
}

.fs-enquire .booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f5f1e8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.fs-enquire .booking-form input::placeholder,
.fs-enquire .booking-form textarea::placeholder {
  color: rgba(245, 241, 232, 0.45);
}

.fs-enquire .booking-form input:focus,
.fs-enquire .booking-form select:focus,
.fs-enquire .booking-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(245, 241, 232, 0.09);
}

.fs-enquire .booking-form .form-wide {
  grid-column: 1 / -1;
}

.fs-enquire .booking-form button {
  grid-column: 1 / -1;
  justify-self: start;
  font-size: 16px;
  padding: 17px 38px;
}

@media (max-width: 700px) {
  .fs-enquire .booking-form {
    grid-template-columns: 1fr;
  }
}

/* hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .fs-hero-kicker,
  .fs-hero h1,
  .fs-hero-sub {
    opacity: 0;
    transform: translateY(28px);
    animation: fsRise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .fs-hero h1 {
    animation-delay: 0.14s;
  }
  .fs-hero-sub {
    animation-delay: 0.3s;
  }
  .fs-hero img {
    animation: fsZoom 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@keyframes fsRise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fsZoom {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1);
  }
}

/* portrait masterplans stay reasonable on desktop */
.fs-plan.portrait {
  max-width: 620px;
}

/* floor plan explorer */
.fs-fp {
  margin-top: 50px;
}

.fs-fp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fs-fp-tabs button {
  border: 1px solid rgba(245, 241, 232, 0.28);
  background: transparent;
  color: rgba(245, 241, 232, 0.88);
  border-radius: 999px;
  padding: 11px 22px;
  font: 800 13.5px var(--font-body);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.fs-fp-tabs button:hover {
  border-color: #fff;
  color: #fff;
}

.fs-fp-tabs button.on {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.fs-fp-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 16px;
  background: rgba(245, 241, 232, 0.03);
  padding: clamp(22px, 3.4vw, 42px);
}

.fs-fp-specs h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  color: #fff;
}

.fs-fp-specs .fs-stats.small {
  margin-top: 24px;
}

.fs-fp-specs .fs-materials {
  margin-top: 24px;
}

.fs-fp-img {
  background: #fdfbf7;
  border-radius: 12px;
  padding: 14px;
}

.fs-fp-img img {
  width: 100%;
  display: block;
}

.fs-fp-note {
  margin-top: 14px;
  color: rgba(245, 241, 232, 0.65);
  font-size: 13.5px;
}

@media (max-width: 860px) {
  .fs-fp-panel {
    grid-template-columns: 1fr;
  }
}

/* home-loan highlight box */
.fs-loan-wrap {
  padding-top: 0;
}

.fs-loan {
  border: 1px solid rgba(200, 184, 148, 0.55);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 184, 148, 0.12), rgba(245, 241, 232, 0.03) 55%);
  padding: clamp(30px, 5vw, 60px);
  max-width: 980px;
}

.fs-loan-kicker {
  font: 800 12px var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.85);
}

.fs-loan h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.1;
  color: #fff;
  margin-top: 14px;
}

.fs-loan p:not(.fs-loan-kicker) {
  margin-top: 16px;
  color: rgba(245, 241, 232, 0.92);
  font-size: clamp(15.5px, 1.6vw, 18px);
  line-height: 1.7;
  max-width: 680px;
}

.fs-loan .fs-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* four seasons: hotel-access-included statement */
.fs-access-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.04;
  color: #fff;
}

.fs-access-h em {
  font-style: normal;
  color: #c8b894;
}

.fs-access-chips {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fs-access-chips span {
  border: 1px solid rgba(200, 184, 148, 0.55);
  background: rgba(200, 184, 148, 0.1);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font: 800 14px var(--font-body);
}

/* hero brochure + enquire actions */
.fs-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (prefers-reduced-motion: no-preference) {
  .fs-hero-actions {
    opacity: 0;
    transform: translateY(28px);
    animation: fsRise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.42s forwards;
  }
}

/* ---- cross-project "Also worth a look" row on project pages ---- */
.fs-also {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 10vh, 110px) 24px 70px;
}

.fs-also-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 12px 0 34px;
}

.fs-also-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
}

.fs-also-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.16);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.fs-also-card:hover {
  border-color: rgba(245, 241, 232, 0.45);
  transform: translateY(-3px);
}

.fs-also-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fs-also-card:hover img {
  transform: scale(1.05);
}

.fs-also-card div {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fs-also-card strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17.5px;
  color: var(--white);
}

.fs-also-card span {
  font-size: 13.5px;
  color: rgba(245, 241, 232, 0.78);
}

.fs-also-card em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--white);
  margin-top: 8px;
}

/* ==================================================================
   Why Bahrain - "The Bahrain Issue" editorial magazine layout (wb-)
   ================================================================== */
.wb-issue {
  --wb-serif: "Fraunces", "Georgia", serif;
  background: var(--paper);
  color: var(--ink);
}

/* ---- cover ---- */
.wb-cover {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
}

.wb-cover img.wb-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wbSlowZoom 18s ease-out forwards;
}

@keyframes wbSlowZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.wb-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 16, 0.42) 0%, rgba(10, 11, 16, 0.06) 34%, rgba(10, 11, 16, 0.72) 100%);
}

.wb-cover-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 120px 0 64px;
}

.wb-masthead {
  position: absolute;
  z-index: 2;
  top: 92px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  font: 600 12px/1.4 var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.92);
}

.wb-cover h1 {
  font-family: var(--wb-serif);
  font-weight: 380;
  font-size: clamp(64px, 12.5vw, 176px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--white);
  text-wrap: balance;
}

.wb-cover h1 em {
  font-style: italic;
  font-weight: 340;
}

.wb-cover-deck {
  font-family: var(--wb-serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(19px, 2.4vw, 27px);
  line-height: 1.45;
  max-width: 34ch;
  color: rgba(245, 241, 232, 0.96);
  margin: 0 0 14px;
}

.wb-byline {
  font: 600 12.5px/1.5 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.85);
  margin: 0 0 34px;
}

.wb-cover .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- index strip: the four numbers ---- */
.wb-index {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.wb-index-grid {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  padding: 44px 0 40px;
  gap: 26px;
}

.wb-index-grid > div {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.wb-index-grid strong {
  display: block;
  font-family: var(--wb-serif);
  font-weight: 380;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.wb-index-grid span {
  font: 600 12px/1.5 var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.wb-colophon {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 26px;
  font-size: 12.5px;
  color: var(--muted);
}

.wb-colophon a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- editor's letter ---- */
.wb-letter {
  width: min(760px, calc(100vw - 48px));
  margin: 0 auto;
  padding: clamp(80px, 11vh, 130px) 0;
  text-align: left;
}

.wb-kicker {
  font: 700 12px/1.4 var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 22px;
}

.wb-letter h2 {
  font-family: var(--wb-serif);
  font-weight: 380;
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 30px;
  text-wrap: balance;
}

.wb-letter h2 em,
.wb-chapter-head h2 em {
  font-style: italic;
  font-weight: 340;
  color: var(--red);
}

.wb-letter p {
  font-size: clamp(17px, 1.9vw, 19.5px);
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.wb-letter p:first-of-type::first-letter {
  font-family: var(--wb-serif);
  font-weight: 400;
  font-size: 4.1em;
  line-height: 0.82;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--ink);
}

.wb-letter-sign {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.wb-letter-sign img {
  height: 56px;
  width: auto;
}

.wb-letter-sign span {
  font: 600 12px/1.5 var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- chapters ---- */
.wb-chapter {
  border-top: 1px solid var(--line);
  padding: clamp(72px, 10vh, 120px) 0 clamp(56px, 8vh, 90px);
}

.wb-chapter-shell {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.wb-chapter-head {
  display: flex;
  align-items: baseline;
  gap: 26px;
  margin-bottom: 14px;
}

.wb-chapter-no {
  font-family: var(--wb-serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--red);
  white-space: nowrap;
}

.wb-chapter-head h2 {
  font-family: var(--wb-serif);
  font-weight: 380;
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0;
}

.wb-chapter-deck {
  font-family: var(--wb-serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 46px;
}

.wb-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  margin-bottom: 54px;
}

.wb-feature.no-media {
  grid-template-columns: 1fr;
}

.wb-feature-quote {
  position: relative;
  padding-left: 26px;
  border-left: 3px solid var(--red);
}

.wb-feature-quote .wb-featno {
  display: block;
  font: 700 12px/1.4 var(--font-body);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.wb-feature-quote blockquote {
  margin: 0;
  font-family: var(--wb-serif);
  font-weight: 360;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

.wb-feature-quote blockquote em {
  font-style: italic;
  font-weight: 340;
  color: var(--red);
}

.wb-feature-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.wb-feature-media img {
  width: 100%;
  height: clamp(300px, 44vw, 470px);
  object-fit: cover;
  display: block;
}

.wb-feature-media figcaption {
  font: 500 12px/1.5 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 10px;
}

.wb-reason-cols {
  columns: 2;
  column-gap: clamp(32px, 5vw, 72px);
}

.wb-reason-cols li {
  list-style: none;
  break-inside: avoid;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.wb-reason-cols li span {
  font-family: var(--wb-serif);
  font-style: italic;
  font-weight: 360;
  font-size: 24px;
  color: var(--red);
  line-height: 1.25;
}

.wb-reason-cols li p {
  margin: 0;
  font-size: clamp(17px, 1.9vw, 19px);
  line-height: 1.62;
  color: var(--ink);
}

/* full-width editorial photograph */
.wb-bleed {
  margin: 0;
  width: 100%;
}

.wb-bleed img {
  display: block;
  width: 100%;
  height: clamp(400px, 78vh, 760px);
  object-fit: cover;
}

.wb-bleed figcaption {
  text-align: center;
  font: 600 12px/1.5 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 24px 0;
}

/* ---- full-bleed pull-quote interstitial ---- */
.wb-pull {
  position: relative;
  padding: clamp(110px, 16vh, 190px) 24px;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}

.wb-pull img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wb-pull::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 16, 0.55);
}

.wb-pull blockquote {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 21ch;
  font-family: var(--wb-serif);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(30px, 5.4vw, 62px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.wb-pull cite {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 26px;
  font: 600 12px/1.4 var(--font-body);
  font-style: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.85);
}

/* ---- field notes (ink band) ---- */
.wb-notes {
  background: var(--ink);
  color: var(--pearl);
  padding: clamp(72px, 10vh, 110px) 0;
}

.wb-notes .wb-chapter-shell > p.wb-kicker { color: var(--red); }

.wb-notes h2 {
  font-family: var(--wb-serif);
  font-weight: 380;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.06;
  color: var(--white);
  margin: 0 0 44px;
  max-width: 24ch;
}

.wb-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 30px;
}

.wb-notes-grid article {
  border-top: 1px solid rgba(245, 241, 232, 0.25);
  padding-top: 18px;
}

.wb-notes-grid h3 {
  font-family: var(--wb-serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 10px;
}

.wb-notes-grid p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.85);
  margin: 0;
}

/* ---- Q&A ---- */
.wb-qa {
  border-top: 1px solid var(--line);
  padding: clamp(72px, 10vh, 120px) 0;
}

.wb-qa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px) clamp(32px, 5vw, 72px);
  margin-top: 40px;
}

.wb-qa-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.wb-qa-grid h3 {
  font-family: var(--wb-serif);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.25;
  margin: 0 0 12px;
}

.wb-qa-grid h3::before {
  content: "Q. ";
  color: var(--red);
  font-style: normal;
}

.wb-qa-grid p {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--ink-soft);
  margin: 0;
}

/* ---- storylines (decision router) ---- */
.wb-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 26px;
  margin-top: 40px;
}

.wb-story-grid article {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}

.wb-story-grid span {
  font: 700 11.5px/1.4 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.wb-story-grid h3 {
  font-family: var(--wb-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.22;
  margin: 10px 0 10px;
}

.wb-story-grid p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ---- back cover ---- */
.wb-backcover {
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: clamp(120px, 18vh, 210px) 24px;
}

.wb-backcover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wb-backcover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 16, 0.55), rgba(10, 11, 16, 0.78));
}

.wb-backcover > div {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.wb-backcover .wb-kicker { color: rgba(245, 241, 232, 0.9); }

.wb-backcover h2 {
  font-family: var(--wb-serif);
  font-weight: 380;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--white);
  text-wrap: balance;
}

.wb-backcover h2 em { font-style: italic; font-weight: 340; }

.wb-backcover p {
  font-size: clamp(16.5px, 1.9vw, 19px);
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.94);
  margin: 0 auto 34px;
  max-width: 52ch;
}

.wb-backcover .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- shared small CTA note ---- */
.wb-note-cta {
  text-align: center;
  padding: 10px 24px clamp(72px, 10vh, 110px);
}

.wb-note-cta p {
  font-family: var(--wb-serif);
  font-style: italic;
  font-size: clamp(19px, 2.3vw, 24px);
  color: var(--ink-soft);
  margin: 0 0 22px;
}

@media (max-width: 860px) {
  .wb-feature { grid-template-columns: 1fr; }
  .wb-reason-cols { columns: 1; }
  .wb-masthead { flex-direction: column; gap: 4px; top: 84px; }
  .wb-chapter-head { flex-direction: column; gap: 8px; }
}

/* ---- neighbourhood intel on listing detail pages ---- */
.hood-vibe {
  max-width: 820px;
}

.hood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
  margin-top: 26px;
}

.hood-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.hood-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}

.hood-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hood-card li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hood-card li strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}

.hood-card li span {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.hood-card li span i {
  width: 12px;
  height: 12px;
  color: #e8a33d;
}

.hood-source {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

/* ---- neighbourhood editorial guide ---- */
.hood-guide {
  margin-top: clamp(48px, 7vh, 80px);
  border-top: 1px solid var(--line);
  padding-top: clamp(36px, 5vh, 56px);
}

.hood-guide-head {
  margin-bottom: 34px;
}

.hood-guide-head h2 {
  margin: 6px 0 0;
}

.hood-story {
  max-width: 860px;
  margin: 0 0 clamp(40px, 6vh, 60px);
}

.hood-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.hood-shots figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.hood-shots img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.hood-shots figcaption {
  font: 600 12px/1.4 var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 9px 12px;
}

.hood-story h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 26px);
  margin: 0 0 14px;
}

.hood-story p {
  font-size: clamp(16px, 1.8vw, 17.5px);
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 68ch;
}

.hood-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hood-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 7px 14px;
  font: 600 12.5px/1 var(--font-body);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.hood-chip:hover { border-color: var(--red); }

.hood-chip i { width: 14px; height: 14px; color: var(--red); }


/* ---- neighbourhood place rails (TripAdvisor style) ---- */
.hood-row {
  margin-top: clamp(72px, 11vh, 110px);
}

.hood-row:first-of-type {
  margin-top: clamp(44px, 7vh, 64px);
}

.hood-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.hood-row-head h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

.hood-row-head span {
  font: 600 12px/1.4 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.hood-row-copy {
  font-size: clamp(15.5px, 1.8vw, 17px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 74ch;
  margin: 0 0 12px;
}

.hood-row-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 18vw, 290px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 12px 0 6px;
}

.hood-row-scroll::-webkit-scrollbar {
  display: none;
}

.hood-place {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hood-place-img {
  position: relative;
  height: 160px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
}

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

.hood-place-img > i {
  width: 30px;
  height: 30px;
  color: var(--muted);
}

.hood-place-rating {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(18, 19, 26, 0.82);
  color: var(--white);
  border-radius: 999px;
  font: 700 12.5px/1 var(--font-body);
  padding: 6px 11px;
}

.hood-place-rating i {
  width: 12px;
  height: 12px;
  color: #f4b63f;
  fill: #f4b63f;
}

.hood-place-body {
  padding: 13px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hood-place-body strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.hood-place-body span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

.hood-place-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font: 600 12.5px/1 var(--font-body);
  color: var(--red);
  text-decoration: none;
}

.hood-place-ig i {
  width: 13px;
  height: 13px;
}

/* neighbourhood: left alignment + card contact links */
.hood-section .section-heading,
.hood-section .section-heading h2 {
  text-align: left;
  margin-left: 0;
}

.hood-section .hood-vibe {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  max-width: 72ch;
}

.hood-place-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}

.hood-place-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 600 12.5px/1.2 var(--font-body);
  color: var(--ink);
  text-decoration: none;
}

.hood-place-links a:hover { color: var(--red); }

.hood-place-links i {
  width: 13px;
  height: 13px;
  color: var(--red);
  flex: none;
}

/* neighbourhood rails: full-bleed beyond the content margin + nav arrows */
.hood-row-head {
  align-items: center;
}

.hood-row-head > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}

.hood-row-scroll {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(24px, calc(50vw - 50%));
  padding-right: 24px;
  scroll-padding-left: max(24px, calc(50vw - 50%));
}

/* neighbourhood cards: uniform structure, links pinned to the bottom */
.hood-place-body {
  flex: 1;
}

.hood-place-body strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.hood-place-links {
  margin-top: auto;
  padding-top: 8px;
  min-height: 22px;
}

/* ==== neighbourhood cards, final form: square image, text below, floating arrows ==== */
.hood-place {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.hood-place-img {
  position: relative;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-2);
}

.hood-place-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hood-place-body {
  padding: 12px 2px 0;
  background: transparent;
}

.hood-place-body strong {
  font-size: 15.5px;
  min-height: 0;
  -webkit-line-clamp: 2;
}

.hood-rail-wrap {
  position: relative;
}

.hood-arrow {
  position: absolute;
  z-index: 4;
  left: 10px;
  top: calc(clamp(230px, 18vw, 290px) / 2 + 12px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(18, 19, 26, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hood-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 6px 18px rgba(18, 19, 26, 0.22);
}

.hood-arrow i {
  width: 18px;
  height: 18px;
}

.hood-arrow-next {
  left: auto;
  right: 10px;
}

@media (max-width: 700px) {
  .hood-arrow { display: none; }
}

/* neighbourhood arrows live in the row head, not on the images */
.hood-row-head .listing-row-nav {
  flex: none;
}

/* ---- recent RERA sales table on listing pages ---- */
.sales-lede { max-width: 72ch; }

.sales-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 8px;
}

.sales-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.sales-table th {
  text-align: left;
  font: 700 11.5px/1.4 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.sales-table td {
  padding: 15px 18px;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.sales-table tbody tr:last-child td { border-bottom: 0; }

.sales-table tbody tr:hover td { background: rgba(18, 19, 26, 0.02); }

.sales-table .sales-price {
  font-weight: 700;
  color: var(--ink);
}

.sales-source {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

/* ==================== live market-data page ==================== */
.market-page .mkt-hero { padding-top: clamp(96px, 14vh, 150px); text-align: left; }
.market-page .mkt-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 6vw, 74px); line-height: 1.02; letter-spacing: -0.02em;
  margin: 14px 0 20px; max-width: 16ch;
}
.mkt-intro { font-size: clamp(17px, 2vw, 20px); line-height: 1.65; color: var(--ink-soft); max-width: 60ch; margin: 0 0 40px; }
.mkt-headline-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px,100%),1fr)); gap: 20px;
  border-top: 1px solid var(--line); padding-top: 32px;
}
.mkt-headline-grid > div { border-left: 3px solid var(--red); padding-left: 18px; }
.mkt-headline-grid strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4vw, 46px); line-height: 1; letter-spacing: -0.01em; color: var(--ink);
}
.mkt-headline-grid span { display: block; margin-top: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.4; }

.mkt-rise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px,100%),1fr)); gap: 16px; margin-top: 26px; }
.mkt-rise-card { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--white); }
.mkt-rise-card strong { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }
.mkt-rise-pct { display: block; font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1.1; color: var(--red); margin-top: 8px; }
.mkt-rise-sub { display: block; font-size: 13px; color: var(--muted); }
.mkt-rise-meta { display: block; margin-top: 10px; font-size: 13px; color: var(--ink-soft); }

.mkt-band { position: relative; background: transparent; }
.mkt-band::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: calc(50% - 50vw);
  width: 100vw; background: var(--paper-2); z-index: -1;
}
.mkt-bars { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 12px; align-items: end; margin-top: 30px; min-height: 260px; }
.mkt-bar { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mkt-bar-track { width: 100%; max-width: 66px; height: 200px; display: flex; align-items: flex-end; }
.mkt-bar-fill { width: 100%; background: linear-gradient(180deg, var(--red), var(--red-dark)); border-radius: 6px 6px 0 0; min-height: 6px; }
.mkt-bar-val { font: 700 12px/1.2 var(--font-body); color: var(--ink); }
.mkt-bar-yr { font: 600 12px/1.2 var(--font-body); color: var(--muted); }

.mkt-area-table .mkt-td-val { font-weight: 700; color: var(--ink); }

.mkt-mix { max-width: 720px; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.mkt-mix-row { display: grid; grid-template-columns: 130px 1fr 46px; align-items: center; gap: 14px; }
.mkt-mix-name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.mkt-mix-bar { height: 12px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.mkt-mix-bar > div { height: 100%; background: var(--red); border-radius: 999px; }
.mkt-mix-pct { font: 700 13px/1 var(--font-body); color: var(--muted); text-align: right; }

.mkt-source { max-width: var(--max); margin: 40px auto 0; padding: 0 24px; font-size: 12px; color: var(--muted); }
@media (max-width: 640px) { .mkt-bars { overflow-x: auto; grid-auto-columns: 54px; } }

/* ==================== market page: cinematic layer ==================== */
.mkt-hero { position: relative; }  /* never box the full-bleed ::before background */
.mkt-hero::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: calc(50% - 50vw); width: 100vw; z-index: -1;
  background:
    radial-gradient(70% 120% at 85% -10%, rgba(215,25,32,0.06), transparent 60%),
    linear-gradient(180deg, rgba(215,25,32,0.03), transparent 40%);
  pointer-events: none;
}
.mkt-headline-grid strong { font-variant-numeric: tabular-nums; }

/* animated year bars: grow from 0 on reveal */
.mkt-bar-fill { height: 0; transition: height 1.1s cubic-bezier(0.16,1,0.3,1); }
.mkt-bars.in .mkt-bar-fill { height: var(--h); transition-delay: var(--d); }
.mkt-bar { --h: 0%; }
.mkt-bar-track { align-items: flex-end; }

/* trend chart */
.mkt-trend { }
.mkt-chart-wrap { margin-top: 26px; border: 1px solid var(--line); border-radius: 16px; padding: 20px 16px 6px; background: var(--white); }
.mkt-chart { width: 100%; height: clamp(220px, 32vw, 320px); display: block; }
.mkt-xlab { font: 600 15px/1 var(--font-body); fill: var(--muted); text-anchor: middle; }
.mkt-line { stroke-dasharray: 3000; stroke-dashoffset: 3000; }
.mkt-area { opacity: 0; }
.mkt-dot { opacity: 0; transform-box: fill-box; transform-origin: center; }
[data-chart].in .mkt-line { transition: stroke-dashoffset 1.8s ease; stroke-dashoffset: 0; }
[data-chart].in .mkt-area { transition: opacity 1.2s ease 0.5s; opacity: 1; }
[data-chart].in .mkt-dot { animation: mktDot 0.5s ease 1.6s forwards; }
@keyframes mktDot { to { opacity: 1; } }
@keyframes mktPulse { 0%,100% { r: 6; } 50% { r: 8; } }
[data-chart].in .mkt-dot { animation: mktDot 0.5s ease 1.6s forwards, mktPulse 2.4s ease-in-out 2.2s infinite; }

.mkt-rise-pct { position: relative; }
.mkt-rise-card { transition: transform 0.25s ease, border-color 0.25s ease; }
.mkt-rise-card:hover { transform: translateY(-3px); border-color: rgba(215,25,32,0.4); }

@media (prefers-reduced-motion: reduce) {
  .mkt-bar-fill { height: var(--h); transition: none; }
  .mkt-line { stroke-dashoffset: 0; } .mkt-area, .mkt-dot { opacity: 1; }
}

/* ---- area price-page hub grid ---- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(260px,100%),1fr)); gap: 14px; margin-top: 20px; }
.price-card { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); text-decoration: none; transition: border-color 0.2s ease, transform 0.2s ease; }
.price-card:hover { border-color: rgba(215,25,32,0.4); transform: translateY(-2px); }
.price-card strong { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }
.price-card-sqm { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--red); }
.price-card-sqm em { font-style: normal; font-weight: 600; font-size: 12px; color: var(--muted); margin-left: 4px; }
.price-card-meta { font-size: 12.5px; color: var(--muted); }

/* market intro as stacked paragraphs */
.mkt-intro p { font-size: clamp(17px, 2vw, 20px); line-height: 1.65; color: var(--ink-soft); max-width: 62ch; margin: 0 0 18px; }
.mkt-intro p:last-child { margin-bottom: 40px; }

/* market/area pages: left-align lede and headings (override the site's right-pushed lede) */
.market-page .section-lede { margin-left: 0; margin-right: 0; max-width: 70ch; }
.market-page .section-heading { text-align: left; }
.market-page .section-heading h2, .market-page .section-heading .eyebrow { margin-left: 0; }

/* ==================== public valuation tool ==================== */
.val-form {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) minmax(160px, 1fr) minmax(120px, 0.8fr) auto;
  gap: 12px;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(18, 19, 26, 0.07);
  max-width: 880px;
}
.val-form label {
  display: grid;
  gap: 6px;
}
.val-form label span {
  font: 700 13px/1 var(--font-body);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.val-form select,
.val-form input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 0 14px;
  font: 500 16.5px/1 var(--font-body);
  color: var(--ink);
}
.val-form .button {
  min-height: 48px;
}
.val-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}
.val-range-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 26px 28px;
  max-width: 880px;
}
.val-range {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 18px;
  text-align: center;
  align-items: center;
}
.val-range span {
  display: block;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.val-range strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--ink-soft);
}
.val-range .val-mid {
  border: 2px solid var(--red);
  border-radius: 14px;
  padding: 16px 10px;
  background: rgba(215, 25, 32, 0.03);
}
.val-range .val-mid strong {
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--ink);
}
.val-range .val-mid em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}
.val-basis {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.val-fh {
  margin: 10px 0 0;
}
.val-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding: 26px 28px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  max-width: 880px;
}
.val-cta h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.val-cta p {
  margin: 0;
  max-width: 46ch;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.val-cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.val-empty {
  max-width: 620px;
}
.val-empty .button {
  margin-top: 14px;
}
@media (max-width: 760px) {
  .val-form {
    grid-template-columns: 1fr;
  }
  .val-range {
    grid-template-columns: 1fr;
  }
}

/* --- professional engine --- */
.pro-uploads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 14px;
  max-width: 880px;
  margin-bottom: 14px;
}
.pro-drop {
  display: block;
  padding: 22px;
  border: 2px dashed var(--line);
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pro-drop:hover {
  border-color: rgba(215, 25, 32, 0.5);
  transform: translateY(-2px);
}
/* active drag-over state */
.pro-drop.is-dragging {
  border-color: var(--red, #d71920);
  border-style: solid;
  background: rgba(215, 25, 32, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(215, 25, 32, 0.12);
}
.pro-drop.is-dragging * { pointer-events: none; }
.pro-drop-ico {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  color: var(--red, #d71920);
  opacity: 0.85;
}
.pro-drop strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.pro-drop span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.pro-drop em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--red-dark);
  min-height: 1em;
}
.pro-drop em.is-busy::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border: 2px solid var(--red);
  border-top-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  animation: proSpin 0.8s linear infinite;
}
@keyframes proSpin { to { transform: rotate(360deg); } }
.pro-card {
  max-width: 880px;
  margin: 12px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.pro-card h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.pro-card pre {
  margin: 0;
  white-space: pre-wrap;
  font: 500 13px/1.6 var(--font-body);
  color: var(--ink-soft);
}
.pro-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.pro-zone-code {
  margin: 0;
  font: 700 16px/1.3 var(--font-display);
  color: var(--ink);
}
.pro-zone-meta {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.pro-form {
  max-width: 880px;
  margin-top: 20px;
  padding: 6px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(18, 19, 26, 0.06);
}
.pro-form fieldset {
  border: 0;
  margin: 0;
  padding: 20px 0 6px;
}
.pro-form fieldset + fieldset {
  border-top: 1px solid var(--line);
}
.pro-form legend {
  padding: 20px 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 14px;
  align-items: end;
}
.pro-form label {
  display: grid;
  gap: 7px;
}
.pro-form label span {
  font: 700 13px/1.3 var(--font-body);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pro-form label span em {
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  opacity: 0.8;
}
.pro-form select,
.pro-form input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 0 15px;
  font: 500 16.5px/1 var(--font-body);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pro-form input::placeholder { font-size: 15.5px; }
.pro-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23767a86' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  cursor: pointer;
}
.pro-form select:focus,
.pro-form input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}
.pro-form input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}
.pro-form .pro-notes {
  grid-column: 1 / -1;
}
.pro-form .button {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  margin-top: 18px;
  font-size: 15px;
}
/* match the lite form's controls to the same polish */
.val-form select,
.val-form input {
  border-width: 1.5px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.val-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 34px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23767a86' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.val-form select:focus,
.val-form input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}
.pro-result {
  margin-top: 30px;
}
.pro-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 12px;
  max-width: 880px;
  margin: 22px 0 4px;
}
.pro-stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 16px 18px;
}
.pro-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
}
.pro-stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.pro-ai {
  max-width: 900px;
  margin-top: 26px;
}
.pro-ai-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.pro-ai-actions .button i,
.pro-ai-actions .button svg { width: 17px; height: 17px; }

/* the written report as a clean white document */
.val-report {
  margin-top: 24px;
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(18, 19, 26, 0.1);
  color: var(--ink);
}
.val-report-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}
.val-report-brand { display: flex; flex-direction: column; gap: 8px; }
.val-report-brand img { height: 40px; width: auto; object-fit: contain; align-self: flex-start; }
.val-report-brand span {
  font: 700 12px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.val-report-meta { text-align: right; }
.val-report-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink);
  max-width: 34ch;
}
.val-report-meta span { font-size: 13.5px; color: var(--muted); }
/* hero value block (ASK-Intel style, in Hussain's red) */
.vr-hero {
  margin: 26px 0 22px;
  padding: 30px 32px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #d7212a 0%, #a5121b 60%, #7c0e15 100%);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.vr-hero-label {
  display: block;
  font: 700 12px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.vr-hero-value {
  display: block;
  margin: 10px 0 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.vr-hero-range {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.vr-hero-sub {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.vr-hero-sub b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
}
.vr-hero-sub span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* data-source cards with coloured left borders */
.vr-sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
.vr-src {
  border: 1px solid var(--line);
  border-left: 4px solid var(--muted);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  background: var(--paper);
}
.vr-src span {
  display: block;
  font: 700 11px/1.2 var(--font-body);
  color: var(--ink-soft);
}
.vr-src strong {
  display: block;
  margin: 6px 0 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
}
.vr-src em { font-style: normal; font-size: 11.5px; color: var(--muted); }
.vr-src-rera { border-left-color: #d7212a; }
.vr-src-rera strong { color: #d7212a; }
.vr-src-pf { border-left-color: #1c3a6e; }
.vr-src-bf { border-left-color: #0f8a7e; }
.vr-src-rent { border-left-color: #1f9d55; }
.vr-src-permit { border-left-color: #8a6d1f; }
.vr-src-method { border-left-color: #6b3fa0; }

/* comparable evidence tables inside the report */
.vr-comps { margin-top: 8px; }
.vr-comps h4 {
  margin: 26px 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.vr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.vr-table th {
  text-align: left;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 10px;
  border-bottom: 2px solid var(--line);
}
.vr-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.vr-table td:nth-child(4) { font-weight: 700; color: var(--ink); }
/* listing evidence as photo cards inside the report / PDF */
.vr-listings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
}
.vr-listing {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  break-inside: avoid;
}
.vr-listing-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #eef0f4;
}
.vr-listing-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vr-listing-media.no-img { background: linear-gradient(135deg, #e7eaf0, #f4f6f9); }
.vr-listing-src {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font: 700 10px/1 var(--font-body);
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(18, 19, 26, 0.72);
  padding: 4px 8px;
  border-radius: 999px;
}
.vr-listing-body { padding: 10px 12px 12px; }
.vr-listing-body strong { display: block; font-size: 16px; color: var(--ink); }
.vr-listing-title {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vr-listing-meta { display: block; font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.val-report-body h4 {
  margin: 26px 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}
.val-report-body h4:first-child { margin-top: 0; }
.val-report-body p,
.val-report-body li {
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.val-report-foot {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
/* official-valuation call to action inside the report / PDF */
.val-report-cta {
  margin-bottom: 22px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(215, 25, 32, 0.18);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(215, 25, 32, 0.06), transparent 60%),
    var(--white, #fff);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.val-report-cta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
}
.val-report-cta span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.val-report-cta .button {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.val-report-cta .button,
.val-report-cta .button span,
.val-report-cta .button i { color: #fff; }
.val-report-cta .button i { width: 17px; height: 17px; }
@media print {
  /* a live link is useless on paper — show the number instead */
  .val-report-cta .button { display: none !important; }
  .val-report-cta::after {
    content: "Request one on WhatsApp +973 3348 9090";
    display: block;
    margin-top: 14px;
    font-weight: 700;
    color: var(--red-dark, #b3141b);
  }
}
.val-report-foot p { font-size: 13px; color: var(--ink-soft); margin: 0 0 6px; }
.val-report-disc { color: var(--muted) !important; font-size: 11.5px !important; }

/* ---- print: isolate the report into a clean PDF ---- */
@media print {
  html, body { background: #fff !important; }
  body * { visibility: hidden; }
  .val-report, .val-report * { visibility: visible; }
  /* the report sits inside positioned sections; neutralise them so top:0
     resolves against the page, not a container pushed down by hidden content */
  .valuation-page main,
  .valuation-page .section,
  .valuation-page .mkt-band,
  .valuation-page .pro-result { position: static !important; }
  .val-report {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  /* print all colour + imagery: hero gradient, badges, comparable photos */
  .val-report, .val-report * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .vr-listing { break-inside: avoid; }
  .vr-listing-media img { display: block !important; }
  .val-report-body h4 { break-after: avoid; }
  .val-report-body p { orphans: 3; widows: 3; }
  .site-header, .site-footer, .whatsapp-fab, .scroll-progress, .nav-toggle { display: none !important; }
  @page { margin: 16mm 15mm; }
}

/* ============ valuation: modern, centred, photo comparables ============ */
:root { --val-max: 1000px; }
.valuation-page .mkt-hero { text-align: center; }
.valuation-page .mkt-hero .eyebrow,
.valuation-page .mkt-hero .mkt-intro { margin-left: auto; margin-right: auto; }
.valuation-page .mkt-hero h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.valuation-page .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.valuation-page .section-heading .eyebrow,
.valuation-page .section-heading h2 { margin-left: 0; margin-right: 0; max-width: 22ch; }
.valuation-page .section-lede { margin-left: auto; margin-right: auto; text-align: center; max-width: 62ch; }

/* every result block is a centred, comfortable box */
.valuation-page .val-form,
.valuation-page .val-note,
.valuation-page .val-range-card,
.valuation-page .val-cta,
.valuation-page .val-empty,
.valuation-page .pro-uploads,
.valuation-page .pro-card,
.valuation-page .pro-form,
.valuation-page .pro-stats,
.valuation-page .pro-listings,
.valuation-page .pro-ai,
.valuation-page .val-result .sales-table-wrap,
.valuation-page .pro-result .sales-table-wrap,
.valuation-page .mkt-subhead {
  max-width: var(--val-max);
  margin-left: auto;
  margin-right: auto;
}
.valuation-page .mkt-subhead {
  text-align: center;
  font-size: clamp(18px, 2.2vw, 22px);
  margin-top: 46px;
}
.valuation-page .pro-sub-note {
  display: block;
  font: 500 13px/1.4 var(--font-body);
  color: var(--muted);
  margin-top: 4px;
}

/* the headline valuation card — bigger, warmer, unmissable */
.valuation-page .val-range-card {
  padding: 34px 32px;
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(120% 130% at 50% -20%, rgba(215, 25, 32, 0.06), transparent 60%),
    var(--white);
  box-shadow: 0 26px 70px rgba(18, 19, 26, 0.1);
}
.valuation-page .val-range strong { font-size: clamp(22px, 3vw, 30px); }
.valuation-page .val-range .val-mid strong { font-size: clamp(36px, 5.5vw, 56px); }
.valuation-page .val-range .val-mid { padding: 22px 14px; border-radius: 18px; }
.valuation-page .val-range .val-mid em { font-size: 15px; margin-top: 6px; }
.valuation-page .val-range span { font-size: 12px; }
.valuation-page .val-basis { font-size: 15px; line-height: 1.6; text-align: center; }

/* stat cards — larger numbers */
.valuation-page .pro-stats { gap: 14px; margin-top: 26px; }
.valuation-page .pro-stat { padding: 20px 22px; border-radius: 16px; }
.valuation-page .pro-stat strong { font-size: 26px; }
.valuation-page .pro-stat span { font-size: 13px; margin-top: 6px; }

/* premium tables to match the hero */
.valuation-page .sales-table-wrap {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(18, 19, 26, 0.08);
}
.valuation-page .sales-table { min-width: 560px; border-collapse: separate; border-spacing: 0; }
.valuation-page .sales-table thead th {
  font: 800 11px/1 var(--font-body);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  padding: 15px 20px;
  border: 0;
}
.valuation-page .sales-table tbody td {
  font-size: 15px;
  padding: 16px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.valuation-page .sales-table tbody tr:last-child td { border-bottom: 0; }
.valuation-page .sales-table tbody tr:nth-child(even) td { background: rgba(18, 19, 26, 0.018); }
.valuation-page .sales-table tbody tr:hover td { background: rgba(215, 25, 32, 0.05); }
/* the value column is the point of the table - make it read */
.valuation-page .sales-table td:first-child { font-weight: 600; color: var(--ink); }
.valuation-page .sales-table .mkt-td-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* live listings as photo cards */
.pro-listings {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 16px;
}
.pro-listing {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
a.pro-listing:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: 0 18px 44px rgba(18, 19, 26, 0.12);
}
.pro-listing-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  display: grid;
  place-items: center;
}
.pro-listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pro-listing-media.no-img img { display: none; }
.pro-listing-media i,
.pro-listing-media svg { width: 34px; height: 34px; color: var(--muted); opacity: 0.5; }
.pro-listing-src {
  position: absolute;
  top: 10px;
  left: 10px;
  font: 700 10.5px/1 var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 9px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.pro-badge-pf { background: rgba(24, 40, 72, 0.86); }
.pro-badge-bf { background: rgba(20, 24, 32, 0.82); }
.pro-listing-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 3px; }
.pro-listing-body > strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
}
.pro-listing-title {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.pro-listing-meta { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* the CTA + gov card, centred and roomier */
.valuation-page .val-cta { margin-left: auto; margin-right: auto; }
.valuation-page .pro-card[data-pro-gov] { margin-top: 30px; }

/* ============ cinematic hero (kills the grey) ============ */
.val-hero {
  overflow: visible;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(56px, 9vh, 110px);
}
.val-hero::before {
  background:
    linear-gradient(180deg, rgba(12, 16, 22, 0.62), rgba(12, 16, 22, 0.8)),
    var(--val-hero-img, none) center 40% / cover no-repeat;
  opacity: 1;
}
.val-hero h1 { color: #fff; }
.val-hero h1 em { color: #ff8589; }
.val-hero .eyebrow-red { color: #ff9a9d; }
.val-hero .mkt-intro,
.val-hero .mkt-intro p { color: rgba(255, 255, 255, 0.92); }
.val-hero .val-note { color: rgba(255, 255, 255, 0.72); }

/* instant form: a bright card floating on the photo */
.val-hero .val-form {
  background: var(--white);
  border: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  padding: 24px;
  margin-top: 6px;
}

/* the money number: a bold red-gradient card, not a grey box */
.valuation-page .val-range .val-mid {
  border: 0;
  background: linear-gradient(150deg, var(--red), #a5121b);
  box-shadow: 0 18px 44px rgba(215, 25, 32, 0.32);
}
.valuation-page .val-range .val-mid span { color: rgba(255, 255, 255, 0.82); }
.valuation-page .val-range .val-mid strong { color: #fff; }
.valuation-page .val-range .val-mid em { color: rgba(255, 255, 255, 0.85); }

/* stat cards: a warm top accent so the grid reads as alive */
.valuation-page .pro-stat {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.valuation-page .pro-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff7a4d);
}
.valuation-page .pro-stat strong { color: var(--ink); }

/* the pro engine sits on a soft tinted band so it feels like the serious tool */
.valuation-page #pro.mkt-band::before {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(215, 25, 32, 0.06), transparent 55%),
    var(--paper-2);
}

/* upload tiles: warmer, invitational */
.valuation-page .pro-drop {
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.valuation-page .pro-drop:hover {
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(215, 25, 32, 0.12);
}

/* weekly market report */
.mkt-subhead {
  margin: 34px 0 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.mkt-rise-link {
  display: inline-block;
  margin-top: 12px;
  font: 700 13.5px/1 var(--font-body);
  color: var(--red);
  text-decoration: none;
}
.mkt-rise-link:hover {
  text-decoration: underline;
}
.mkt-band-usd {
  font-size: 12px;
  color: var(--muted);
}
.mkt-report-date {
  margin: -8px 0 22px;
  font: 600 13px/1.4 var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.mkt-report-archive {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  max-width: 520px;
}
.mkt-report-archive li + li {
  border-top: 1px solid var(--line);
}
.mkt-report-archive a {
  display: block;
  padding: 13px 0;
  font: 600 15px/1.4 var(--font-body);
  color: var(--ink);
  text-decoration: none;
}
.mkt-report-archive a:hover {
  color: var(--red);
}

/* area-page 'see all areas' link */
.mkt-allareas a { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--red); text-decoration: none; }
.mkt-allareas a:hover { text-decoration: underline; }

/* freehold badges on market surfaces */
.mkt-fh-badge {
  display: inline-block; align-self: flex-start;
  font: 700 10.5px/1.2 var(--font-body); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); background: rgba(0,124,115,0.1); border: 1px solid rgba(0,124,115,0.25);
  border-radius: 999px; padding: 4px 10px; margin-bottom: 10px;
}
.mkt-fh-pill {
  font: 700 10px/1 var(--font-body); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green); background: rgba(0,124,115,0.1); border-radius: 999px; padding: 3px 8px; margin-left: 8px; vertical-align: middle;
}
.mkt-rise-card { display: flex; flex-direction: column; }
/* area page freehold ownership banner */
.mkt-fh-note {
  display: flex; align-items: flex-start; gap: 12px; max-width: var(--max); margin: 0 auto;
  padding: 16px 20px; border-radius: 12px; background: rgba(0,124,115,0.07); border: 1px solid rgba(0,124,115,0.22);
  font-size: 15px; line-height: 1.5; color: var(--ink);
}
.mkt-fh-note.local { background: var(--paper-2); border-color: var(--line); color: var(--ink-soft); }
.mkt-fh-note i { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 2px; }
.mkt-fh-note.local i { color: var(--muted); }
.mkt-fh-note strong { color: var(--green); }

/* hub: freehold cards first + pill */
.price-card.is-fh { border-color: rgba(0,124,115,0.35); }
.price-card-fh {
  font: 700 9.5px/1 var(--font-body); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green); background: rgba(0,124,115,0.1); border-radius: 999px; padding: 3px 7px; margin-left: 8px; vertical-align: middle;
}

/* non-freehold tag on rise cards (show everything, highlight freehold) */
.mkt-fh-badge.local { color: var(--muted); background: var(--paper-2); border-color: var(--line); }

/* homepage book: calendar full-width below the title */
.book-stacked { grid-template-columns: 1fr; gap: 30px; }
.book-stacked .book-copy h2 { max-width: none; }
.book-stacked .cal-embed-wrap { width: 100%; }
.book-stacked #cal-inline-book { min-height: 720px; }

/* news related cards WITH images */
.related-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px,100%),1fr)); gap: 18px; }
.related-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; text-decoration: none; background: var(--white); transition: border-color 0.2s ease, transform 0.2s ease; }
.related-card:hover { border-color: rgba(215,25,32,0.4); transform: translateY(-3px); }
.related-card-media { height: 170px; overflow: hidden; background: var(--paper-2); }
.related-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.related-card:hover .related-card-media img { transform: scale(1.05); }
.related-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.related-card-body span { font: 700 11px/1.4 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.related-card-body strong { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.25; color: var(--ink); }
.related-card-read { font: 700 13px/1 var(--font-body); font-style: normal; color: var(--red); display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; }
.related-card-read i { width: 14px; height: 14px; }

/* ==================== Bahrain vs <rival> comparison pages ==================== */
.cmp-hero h1 em { font-family: var(--wb-serif, "Fraunces", serif); font-style: italic; font-weight: 340; color: var(--red); }
.cmp-scoregrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px,100%),1fr)); gap: 20px; border-top: 1px solid var(--line); padding-top: 30px; margin-top: 8px; }
.cmp-score { border-left: 3px solid var(--red); padding-left: 18px; opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
.cmp-score.in { opacity: 1; transform: none; }
.cmp-score strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.05; color: var(--ink); }
.cmp-score span { display: block; margin-top: 8px; font-size: 13.5px; line-height: 1.45; color: var(--muted); }

.cmp-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; margin-top: 8px; background: var(--white); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.cmp-table th { text-align: left; font: 700 12px/1.4 var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 16px 18px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.cmp-table th.cmp-b { color: var(--red); }
.cmp-table td { padding: 14px 18px; font-size: 15px; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table .cmp-dim { font-weight: 600; color: var(--ink); }
.cmp-table .cmp-win { color: var(--green); font-weight: 700; background: rgba(0,124,115,0.05); }
.cmp-table .cmp-win i { width: 14px; height: 14px; vertical-align: -2px; margin-left: 4px; }
.cmp-table .cmp-tie { color: var(--muted); }

.cmp-wins { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; max-width: 820px; }
.cmp-wins li { display: flex; align-items: flex-start; gap: 12px; font-size: clamp(16px, 1.9vw, 18px); line-height: 1.55; color: var(--ink); }
.cmp-wins li i { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 3px; }
.cmp-wins.muted li { color: var(--ink-soft); }
.cmp-wins.muted li i { color: var(--muted); }

/* comparison hub */
.cmp-hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px,100%),1fr)); gap: 16px; }
.cmp-hub-card { display: flex; flex-direction: column; gap: 8px; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); text-decoration: none; transition: border-color 0.2s ease, transform 0.2s ease; }
.cmp-hub-card:hover { border-color: rgba(215,25,32,0.4); transform: translateY(-3px); }
.cmp-hub-card strong { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--ink); }
.cmp-hub-card span { font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }
.cmp-hub-card em { font-style: normal; font-weight: 700; font-size: 14px; color: var(--red); margin-top: 4px; }

/* ==================== comparison pages: larger type + photography ==================== */
/* --- bigger, easier-to-read type (scoped to comparison pages only) --- */
.cmp-page .mkt-intro, .cmp-page .mkt-intro p { font-size: clamp(18px, 2.1vw, 23px); line-height: 1.7; max-width: 60ch; }
.cmp-page .section-lede { font-size: clamp(16px, 1.8vw, 19px); line-height: 1.6; }
.cmp-page .section-heading h2 { font-size: clamp(28px, 3.6vw, 44px); }
.cmp-page .cmp-table td { font-size: 17px; padding: 16px 20px; }
.cmp-page .cmp-table .cmp-dim { font-size: 17px; }
.cmp-page .cmp-table th { font-size: 12.5px; padding: 17px 20px; }
.cmp-page .cmp-score strong { font-size: clamp(28px, 3.6vw, 44px); }
.cmp-page .cmp-score span { font-size: 15px; line-height: 1.5; }
.cmp-page .cmp-wins li { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; gap: 14px; }
.cmp-page .cmp-wins li i { width: 22px; height: 22px; }
.cmp-page .cmp-hub-card strong { font-size: 23px; }
.cmp-page .cmp-hub-card span { font-size: 16px; line-height: 1.55; }

/* --- photographic hero (full-bleed Bahrain photo behind the headline) --- */
/* .mkt-hero sets overflow:hidden, which clips the full-bleed ::before back to the
   content column (boxes the photo on wide screens) - let it run edge to edge. */
.cmp-page .cmp-hero { padding-bottom: clamp(48px, 8vh, 96px); overflow: visible; }
.cmp-page .cmp-hero::before {
  background:
    linear-gradient(180deg, rgba(12,16,22,0.58), rgba(12,16,22,0.74)),
    var(--cmp-hero-img, none) center 30% / cover no-repeat;
  opacity: 1;
}
.cmp-page .cmp-hero h1 { color: #fff; }
.cmp-page .cmp-hero h1 em { color: #ff8589; }
.cmp-page .cmp-hero .eyebrow-red { color: #ff9a9d; }
.cmp-page .cmp-hero .mkt-intro, .cmp-page .cmp-hero .mkt-intro p { color: rgba(255,255,255,0.92); }
.cmp-page .cmp-hero .cmp-scoregrid { border-top-color: rgba(255,255,255,0.28); }
.cmp-page .cmp-hero .cmp-score { border-left-color: #ff5a5f; }
.cmp-page .cmp-hero .cmp-score strong { color: #fff; }
.cmp-page .cmp-hero .cmp-score span { color: rgba(255,255,255,0.78); }

/* --- mid-page feature photo (full-bleed, editorial caption) --- */
.cmp-page .cmp-photo {
  position: relative; left: calc(50% - 50vw); width: 100vw; margin: 28px 0;
  min-height: clamp(300px, 46vw, 520px); display: flex; align-items: flex-end;
  background: var(--cmp-band-img, none) center / cover no-repeat;
}
.cmp-page .cmp-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,16,22,0.05) 30%, rgba(12,16,22,0.72));
}
.cmp-page .cmp-photo-cap { position: relative; z-index: 1; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px 36px; }
.cmp-page .cmp-photo-cap span { display: block; font: 700 12px/1 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase; color: #ff9a9d; margin-bottom: 12px; }
.cmp-page .cmp-photo-cap p { margin: 0; color: #fff; max-width: 22ch; font-family: var(--wb-serif, "Fraunces", serif); font-weight: 400; font-size: clamp(22px, 3.2vw, 34px); line-height: 1.2; }

/* ============ transactions: the registry month by month ============ */
.tx-progress {
  margin: 26px auto 0;
  font: 600 16px/1.5 var(--font-body);
  color: var(--ink-soft);
  text-align: center;
}
.tx-progress .live-dot { margin-right: 8px; }
.tx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.tx-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 16px 44px rgba(18, 19, 26, 0.08);
}
.tx-card-head h3 {
  font-family: var(--font-display);
  font-size: 21px;
  margin: 0 0 4px;
  color: var(--ink);
}
.tx-headline {
  display: block;
  font-size: 15px;
  color: var(--ink-soft);
}
.tx-headline strong { color: var(--red-dark, #b3141b); font-size: 17px; }
.tx-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin: 16px 0 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tx-type span { display: block; font: 700 11px/1 var(--font-body); letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.tx-type strong { font-size: 19px; color: var(--ink); margin-right: 4px; }
.tx-type em { font-style: normal; font-size: 12.5px; color: var(--ink-soft); }
.tx-areas { font-size: 14px; color: var(--ink-soft); margin: 0 0 8px; }
.tx-big { font-size: 14px; color: var(--ink-soft); margin: 0; }
.tx-big strong { color: var(--ink); }
.tx-archive { max-width: 900px; margin-left: auto; margin-right: auto; margin-top: 34px; overflow-x: auto; }
.tx-source {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: center;
}
.tx-cta { text-align: center; margin-top: 26px; }

/* transactions: month dashboards */
.tx-card-link { display: block; text-decoration: none; color: inherit; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.tx-card-link:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(18, 19, 26, 0.13); }
.tx-open { display: inline-block; margin-top: 12px; font: 700 13px/1 var(--font-body); color: var(--red-dark, #b3141b); }
.tx-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; max-width: 1000px; margin: 34px auto 0; }
@media (max-width: 800px) { .tx-two-col { grid-template-columns: 1fr; } }
.tx-areas-chart, .tx-gov-chart { max-width: 760px; margin: 34px auto 0; display: grid; gap: 12px; }
.tx-areas-chart .mkt-mix-name, .tx-gov-chart .mkt-mix-name { width: auto; min-width: 150px; font-size: 14px; }
.tx-week-bars, .tx-band-bars { max-width: 760px; margin-left: auto; margin-right: auto; }
.tx-band-bars .mkt-bar-yr { font-size: 11px; text-align: center; }
.tx-nav { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* transactions: Inner Circle data gate */
.tx-gate { display: none; }
.tx-locked .tx-gate {
  display: block;
  position: sticky;
  top: 18vh;
  z-index: 30;
  margin: 0 auto -120px;
  max-width: 520px;
  padding: 0 18px;
}
.tx-gate-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 30px 26px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(18, 19, 26, 0.28);
  border: 1px solid rgba(215, 25, 32, 0.15);
}
.tx-gate-card i { width: 26px; height: 26px; color: var(--red, #d71920); }
.tx-gate-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 10px 0 8px;
  color: var(--ink);
}
.tx-gate-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 14px; }
.tx-gate-card form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.tx-gate-card input {
  flex: 1 1 200px;
  padding: 13px 16px;
  font: 500 15px/1 var(--font-body);
  border: 1.5px solid var(--line);
  border-radius: 12px;
}
.tx-gate-card input:focus { outline: none; border-color: var(--red, #d71920); }
.tx-gate-note { font-size: 12.5px !important; color: var(--muted) !important; margin: 12px 0 0 !important; }
.tx-gate-note span[data-tx-gate-msg] { display: block; margin-top: 6px; font-weight: 600; color: var(--red-dark, #b3141b); }
.tx-gate-note span[data-tx-gate-msg]:empty { display: none; }
.tx-locked .tx-gated {
  filter: blur(9px);
  user-select: none;
  pointer-events: none;
}
.tx-locked .tx-gated a { pointer-events: none; }
.tx-gate-more { display: flex; gap: 10px; flex-wrap: wrap; flex-basis: 100%; }
.tx-gate-more[hidden] { display: none !important; }
.tx-gate-more input { flex: 1 1 160px; padding: 13px 16px; font: 500 15px/1 var(--font-body); border: 1.5px solid var(--line); border-radius: 12px; }
.tx-gate-more input:focus { outline: none; border-color: var(--red, #d71920); }
.tx-gate-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 2px 0 16px;
  padding: 4px;
  background: var(--paper-2, #f0eee8);
  border-radius: 999px;
}
.tx-gate-tabs button {
  border: 0;
  background: transparent;
  font: 700 13.5px/1 var(--font-body);
  color: var(--ink-soft);
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.tx-gate-tabs button.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(18, 19, 26, 0.12);
}

/* phone country-code dropdown (site-wide) */
.pc-wrap { position: relative; display: flex; gap: 8px; flex: 1 1 200px; }
.pc-wrap input[data-phone-national] { flex: 1; min-width: 0; }
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font: 600 14.5px/1 var(--font-body);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.pc-btn:hover { border-color: rgba(215, 25, 32, 0.45); }
.pc-flag { font-size: 17px; line-height: 1; }
.pc-caret { font-size: 10px; color: var(--muted); margin-left: 2px; }
.pc-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  width: min(320px, 88vw);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(18, 19, 26, 0.22);
  border: 1px solid var(--line);
  padding: 10px;
}
.pc-search {
  width: 100%;
  padding: 10px 12px;
  font: 500 14px/1 var(--font-body);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
}
.pc-search:focus { outline: none; border-color: var(--red, #d71920); }
.pc-list { max-height: 240px; overflow-y: auto; }
.pc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  font: 500 14px/1.2 var(--font-body);
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}
.pc-item:hover { background: var(--paper-2, #f0eee8); }
.pc-item em { margin-left: auto; font-style: normal; color: var(--muted); font-size: 13px; }

/* transactions promo band - cinematic: skyline, red glow, live data card */
.tx-promo {
  position: relative;
  padding-top: 84px;
  padding-bottom: 88px;
  color: #fff;
}
.tx-promo::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background:
    radial-gradient(90% 130% at 82% 110%, rgba(215, 25, 32, 0.55), transparent 55%),
    radial-gradient(70% 100% at 8% -10%, rgba(215, 25, 32, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(11, 12, 18, 0.92), rgba(11, 12, 18, 0.86)),
    var(--txp-img) center 35% / cover no-repeat,
    #0b0c12;
  z-index: -1;
}
.tx-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.tx-promo-copy .eyebrow { color: rgba(255, 255, 255, 0.85); }
.tx-promo h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin: 14px 0 16px;
  color: #fff;
  max-width: 17ch;
}
.tx-promo-lede {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 26px;
  max-width: 52ch;
}
.tx-promo-btn { box-shadow: 0 16px 44px rgba(215, 25, 32, 0.45); }

/* the data card: last month, glassy, with a real 12-month chart */
.tx-promo-card {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 26px 26px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.tx-promo-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.3); }
.txp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.txp-month {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
}
.txp-tag {
  font: 700 10.5px/1 var(--font-body);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffb4b8;
  background: rgba(215, 25, 32, 0.28);
  border: 1px solid rgba(215, 25, 32, 0.5);
  padding: 6px 10px;
  border-radius: 999px;
}
.txp-nums {
  display: flex;
  gap: 34px;
  margin-bottom: 20px;
}
.txp-nums strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 34px);
}
.txp-nums span {
  display: block;
  margin-top: 3px;
  font: 600 11px/1.3 var(--font-body);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.txp-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 86px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.txp-bars i {
  flex: 1;
  height: var(--h);
  min-height: 5px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18));
  transition: transform 0.2s ease;
}
.txp-bars i:hover { transform: scaleY(1.04); transform-origin: bottom; }
.txp-bars i.hot {
  background: linear-gradient(180deg, #ff5a60, var(--red, #d71920));
  box-shadow: 0 0 22px rgba(215, 25, 32, 0.65);
}
.txp-caption {
  display: block;
  margin-top: 12px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 860px) {
  .tx-promo-grid { grid-template-columns: 1fr; }
  .tx-promo h2, .tx-promo-lede { max-width: none; }
}

/* ============ webinars: storytelling page, nothing in a box ============ */
.wbx-page { padding-top: 0; }
.wbx-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 140px 22px 80px;
}
.wbx-hero-bg, .wbx-home-bg { position: absolute; inset: 0; overflow: hidden; }
.wbx-hero-bg img, .wbx-home-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.wbx-hero-bg::after, .wbx-home-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 110% at 50% 115%, rgba(215, 25, 32, 0.4), transparent 55%),
    linear-gradient(180deg, rgba(9, 10, 16, 0.72), rgba(9, 10, 16, 0.55) 45%, rgba(9, 10, 16, 0.85));
}
.wbx-hero-inner { position: relative; max-width: 880px; }
.wbx-hero .eyebrow { color: rgba(255, 255, 255, 0.85); justify-content: center; }
.wbx-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7.5vw, 92px);
  line-height: 1.02;
  margin: 18px 0 14px;
  color: #fff;
}
.wbx-date {
  font: 700 clamp(17px, 2.2vw, 22px)/1.4 var(--font-body);
  color: #ffb4b8;
  margin: 0 0 30px;
}
.wbx-ticks { display: flex; justify-content: center; gap: clamp(14px, 3vw, 30px); margin-bottom: 36px; }
.wbx-ticks div { min-width: 74px; }
.wbx-ticks strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  color: #fff;
}
.wbx-ticks span {
  display: block;
  margin-top: 2px;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.wbx-hero-cta { font-size: 17px; padding: 16px 34px; box-shadow: 0 18px 50px rgba(215, 25, 32, 0.5); }
.wbx-hero-note { margin-top: 18px; font-size: 13.5px; color: rgba(255, 255, 255, 0.65); }

.wbx-story { text-align: center; padding-top: 84px; }
.wbx-story h2 { font-family: var(--font-display); font-size: clamp(26px, 3.6vw, 40px); max-width: 22ch; margin: 12px auto 22px; }
.wbx-story p { max-width: 62ch; margin: 0 auto 16px; font-size: clamp(15.5px, 1.8vw, 17.5px); line-height: 1.75; color: var(--ink-soft); }

.wbx-takeaways { text-align: center; }
.wbx-takeaways h2 { font-family: var(--font-display); font-size: clamp(26px, 3.6vw, 40px); margin: 12px 0 34px; }
.wbx-list { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; text-align: left; }
.wbx-list li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.wbx-list li:last-child { border-bottom: 1px solid var(--line); }
.wbx-list li > span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--red-dark, #b3141b);
  padding-top: 3px;
}
.wbx-list strong { display: block; font-family: var(--font-display); font-size: clamp(17px, 2vw, 20px); color: var(--ink); }
.wbx-list em { display: block; font-style: normal; margin-top: 5px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

.wbx-host {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1080px;
  margin: 90px auto;
  padding: 0 22px;
}
.wbx-host-photo img { width: 100%; border-radius: 50% 50% 45% 45% / 42% 42% 50% 50%; filter: saturate(0.96); }
.wbx-host-copy h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); margin: 10px 0 4px; }
.wbx-host-role { font: 700 13px/1.4 var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; color: var(--red-dark, #b3141b); margin: 0 0 16px; }
.wbx-host-copy p:last-child { font-size: clamp(15.5px, 1.8vw, 17px); line-height: 1.75; color: var(--ink-soft); }

.wbx-how { padding-top: 0; }
.wbx-steps { display: flex; justify-content: center; gap: clamp(26px, 5vw, 70px); flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.wbx-steps div { flex: 1 1 220px; max-width: 280px; text-align: center; }
.wbx-steps span {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--red, #d71920);
  font: 800 15px/1 var(--font-body);
  color: var(--red-dark, #b3141b);
  margin-bottom: 12px;
}
.wbx-steps p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* the signup: full-bleed, one job */
.wbx-reserve {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 84px 22px 90px;
  margin-top: 40px;
}
.wbx-reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(160deg, var(--red, #d71920), var(--red-dark, #8f1015));
  z-index: -1;
}
.wbx-reserve h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 54px); margin: 0 0 12px; color: #fff; }
.wbx-reserve-meta { margin: 0 0 30px; }
.wbx-reserve-meta strong { display: block; font-size: clamp(16px, 2vw, 20px); }
.wbx-reserve-meta span { display: block; margin-top: 8px; font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.wbx-form { max-width: 560px; margin: 0 auto; display: grid; gap: 12px; text-align: left; }
.wbx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wbx-form input, .wbx-form select {
  width: 100%;
  padding: 16px 18px;
  font: 500 16px/1 var(--font-body);
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}
.wbx-form .pc-wrap { gap: 10px; }
.wbx-form .pc-btn { background: #fff; border: 0; height: auto; }
.wbx-submit {
  background: #12131a;
  border-color: #12131a;
  color: #fff;
  font-size: 17px;
  padding: 17px;
  justify-content: center;
}
.wbx-submit span, .wbx-submit i { color: #fff; }
.wbx-submit:hover { background: #000; }
.wbx-form .form-microcopy { text-align: center; color: rgba(255, 255, 255, 0.8); font-size: 13px; margin: 4px 0 0; }

.wbx-replays { text-align: center; }
.wbx-replays h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); margin: 12px 0 30px; }
.wbx-replays .replay-grid { text-align: left; }

/* home page: cinematic webinar band */
.wbx-home {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 22px;
  overflow: hidden;
}
.wbx-home-inner { position: relative; max-width: 780px; margin: 0 auto; }
.wbx-home .eyebrow { color: rgba(255, 255, 255, 0.85); justify-content: center; }
.wbx-home h2 { font-family: var(--font-display); font-size: clamp(30px, 4.6vw, 52px); margin: 14px 0 10px; color: #fff; }
.wbx-home-date { font: 700 clamp(15px, 1.9vw, 19px)/1.4 var(--font-body); color: #ffb4b8; margin: 0 0 16px; }
.wbx-home-lede { font-size: clamp(15px, 1.8vw, 17px); line-height: 1.7; color: rgba(255, 255, 255, 0.85); margin: 0 auto 28px; max-width: 56ch; }
.wbx-home-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .wbx-host { grid-template-columns: 1fr; text-align: center; }
  .wbx-host-photo { max-width: 300px; margin: 0 auto; }
  .wbx-form-row { grid-template-columns: 1fr; }
}
/* wbx form: no box, readable placeholders */
.wbx-form.booking-form { background: transparent; border: 0; box-shadow: none; padding: 0; }
.wbx-form input::placeholder { color: var(--muted, #6b7280); opacity: 1; }
.wbx-form select { color: var(--ink); }
/* webinar page: dark shell, paper story - main carries its own background */
.wbx-page { background: var(--paper, #faf9f6); }

/* ============ webinars: event-scale (Tony mode) ============ */
.wbx-chips { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.wbx-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 800 11px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 9px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.wbx-hero h1 { font-size: clamp(46px, 8.6vw, 108px); letter-spacing: -0.02em; }
.wbx-hero h1 em {
  font-style: normal;
  color: #ff5a60;
  position: relative;
  white-space: nowrap;
}
.wbx-hero h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0.04em;
  height: 0.12em;
  background: var(--red, #d71920);
  border-radius: 999px;
  transform: skewX(-12deg);
  z-index: -1;
}
.wbx-proof {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
}
.wbx-proof strong { display: block; font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); color: #fff; }
.wbx-proof span { display: block; margin-top: 3px; font: 700 10.5px/1.3 var(--font-body); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }

.wbx-list li > span { font-size: clamp(40px, 6vw, 64px); line-height: 0.9; color: rgba(215, 25, 32, 0.16); font-weight: 800; padding-top: 0; min-width: 1.4em; }
.wbx-mid-cta { margin-top: 36px; font-size: 16.5px; padding: 15px 30px; }
.wbx-takeaways { text-align: center; }
.wbx-takeaways .wbx-mid-cta i { width: 18px; height: 18px; }

/* host: dark authority band */
.wbx-host {
  position: relative;
  max-width: none;
  margin: 90px 0 0;
  padding: clamp(60px, 8vw, 110px) 22px;
  background:
    radial-gradient(80% 120% at 85% 10%, rgba(215, 25, 32, 0.28), transparent 55%),
    #0b0c12;
  color: #fff;
  display: block;
}
.wbx-host-inner {
  display: grid;
  grid-template-columns: minmax(240px, 400px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.wbx-host .eyebrow { color: rgba(255, 255, 255, 0.8); }
.wbx-host-copy h2 { font-size: clamp(38px, 5.5vw, 66px); line-height: 0.98; color: #fff; margin: 10px 0 8px; }
.wbx-host-role { color: #ff8a8f; }
.wbx-host-line { font-size: clamp(15.5px, 1.8vw, 17.5px); line-height: 1.75; color: rgba(255, 255, 255, 0.85); }
.wbx-host-stats { display: flex; gap: clamp(20px, 4vw, 48px); margin-top: 26px; flex-wrap: wrap; }
.wbx-host-stats strong { display: block; font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 26px); color: #fff; }
.wbx-host-stats span { display: block; margin-top: 3px; font: 700 10.5px/1.3 var(--font-body); letter-spacing: 0.11em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }

/* FAQ: native accordions, hairline style */
.wbx-faq { max-width: 720px; margin: 0 auto; text-align: center; }
.wbx-faq h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); margin: 12px 0 26px; }
.wbx-faq details { text-align: left; border-top: 1px solid var(--line); }
.wbx-faq details:last-of-type { border-bottom: 1px solid var(--line); }
.wbx-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 34px 20px 4px;
  font: 700 clamp(15.5px, 1.9vw, 18px)/1.4 var(--font-display);
  color: var(--ink);
  position: relative;
}
.wbx-faq summary::-webkit-details-marker { display: none; }
.wbx-faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font: 400 24px/1 var(--font-body);
  color: var(--red-dark, #b3141b);
}
.wbx-faq details[open] summary::after { content: "−"; }
.wbx-faq details p { margin: 0 0 20px; padding: 0 4px; font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }

/* the closer */
.wbx-closer {
  text-align: center;
  padding: clamp(70px, 9vw, 120px) 22px;
  background:
    radial-gradient(100% 140% at 50% 120%, rgba(215, 25, 32, 0.14), transparent 60%),
    var(--paper, #faf9f6);
}
.wbx-closer h2 { font-family: var(--font-display); font-size: clamp(34px, 5.6vw, 64px); line-height: 1.05; margin: 0 0 14px; }
.wbx-closer p { font: 700 clamp(15px, 1.9vw, 19px)/1.4 var(--font-body); color: var(--red-dark, #b3141b); margin: 0 0 28px; }
.wbx-closer-cta {
  background: var(--red, #d71920);
  border-color: var(--red, #d71920);
  color: #fff;
  font-size: 18px;
  padding: 18px 40px;
  box-shadow: 0 20px 55px rgba(215, 25, 32, 0.4);
}
.wbx-closer-cta span, .wbx-closer-cta i { color: #fff; }
.wbx-closer-cta:hover { background: var(--red-dark, #b3141b); }

/* sticky urgency bar */
.wbx-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  background: rgba(11, 12, 18, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  color: #fff;
  max-width: 560px;
  margin: 0 auto;
}
.wbx-sticky-left { display: flex; align-items: center; gap: 10px; font: 600 13.5px/1 var(--font-body); white-space: nowrap; overflow: hidden; }
.wbx-sticky-left strong { font-weight: 800; }
.wbx-sticky-count b { color: #ff8a8f; }
.wbx-sticky .button { padding: 11px 20px; font-size: 14px; white-space: nowrap; }
@media (max-width: 480px) { .wbx-sticky-count { display: none; } }
@media (max-width: 760px) {
  .wbx-host-inner { grid-template-columns: 1fr; text-align: center; }
  .wbx-host-photo { max-width: 280px; margin: 0 auto; }
  .wbx-host-stats { justify-content: center; }
}
.wbx-chips .live-dot { width: 8px; height: 8px; flex: none; }
/* the page's own CTAs everywhere - the floating FAB just collides with the sticky bar */
.webinar-document .whatsapp-fab { display: none; }

/* ============ webinars TONY SKIN: black, uppercase, gold + red ============ */
:root { --wbx-gold: #e7c77f; }
.wbx-page { background: #0a0b10; }

.wbx-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: linear-gradient(90deg, var(--red-dark, #8f1015), var(--red, #d71920), var(--red-dark, #8f1015));
  color: #fff;
  font: 800 12px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  padding-top: calc(12px + 86px); /* clear the fixed header */
}
.wbx-strip b { font-weight: 800; }
.wbx-strip-free { border: 1px solid rgba(255, 255, 255, 0.6); padding: 5px 10px; border-radius: 999px; }

/* hero: stadium uppercase + boxed countdown digits */
.wbx-hero { min-height: 88vh; padding-top: 60px; }
.wbx-hero h1 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(40px, 8vw, 100px);
  letter-spacing: -0.01em;
}
.wbx-hero h1 em { color: #fff; }
.wbx-hero h1 em::after {
  height: 0.34em;
  bottom: 0.06em;
  background: var(--red, #d71920);
  opacity: 0.85;
}
.wbx-date { color: var(--wbx-gold); text-transform: uppercase; letter-spacing: 0.12em; font-size: clamp(14px, 1.8vw, 18px); }
.wbx-chips span { border-color: rgba(231, 199, 127, 0.45); }
.wbx-ticks div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 10px 10px;
  min-width: 84px;
}
.wbx-ticks strong { font-size: clamp(30px, 4.4vw, 50px); }
.wbx-proof { border-top-color: rgba(231, 199, 127, 0.3); }
.wbx-proof strong { color: var(--wbx-gold); }

/* story + takeaways + how + faq: dark editorial */
.wbx-story h2, .wbx-takeaways h2, .wbx-faq h2, .wbx-replays h2, .wbx-live h2 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.wbx-story p { color: rgba(255, 255, 255, 0.78); }
.wbx-live { text-align: center; }
.wbx-live h2 { max-width: 20ch; margin: 12px auto 18px; }
.wbx-live > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.82); max-width: 60ch; margin: 0 auto; font-size: clamp(16px, 1.9vw, 18.5px); line-height: 1.7; }
.wbx-live .social-stage-meta a { color: #fff; }
.wbx-lockbox {
  max-width: 620px;
  margin: 28px auto 0;
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(18, 19, 26, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.wbx-lockbox i { width: 30px; height: 30px; color: var(--wbx-gold, #e8c56b); }
.wbx-lockbox p { color: rgba(255, 255, 255, 0.86); max-width: 44ch; margin: 0; font-size: clamp(15.5px, 1.8vw, 17px); line-height: 1.6; }
.wbx-lockbox .button { margin-top: 6px; }
.wbx-live-now { color: #ff4d55 !important; }
.wbx-join-form { display: flex; gap: 10px; width: 100%; max-width: 440px; margin-top: 4px; }
.wbx-join-form input {
  flex: 1; min-width: 0; border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px; background: rgba(255, 255, 255, 0.06); color: #fff;
  font: 500 1rem "Hanken Grotesk", sans-serif; padding: 13px 15px;
}
.wbx-join-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.wbx-join-form input:focus { outline: none; border-color: var(--wbx-gold, #e8c56b); }
.wbx-join-form .button { margin-top: 0; white-space: nowrap; }
.wbx-join-msg { color: #ff8a90; font-size: 14px; margin: 0; min-height: 0; }
.wbx-join-msg:empty { display: none; }
.wbx-join-alt { color: rgba(255, 255, 255, 0.7) !important; font-size: 14px; margin: 4px 0 0 !important; }
.wbx-join-alt a { color: var(--wbx-gold, #e8c56b); text-decoration: underline; }
@media (max-width: 560px) { .wbx-join-form { flex-direction: column; } }
/* display:grid/flex on these would otherwise beat the [hidden] attribute */
.social-embed-stage[hidden], .wbx-lockbox[hidden] { display: none !important; }
.wbx-list li { border-top-color: rgba(255, 255, 255, 0.12); }
.wbx-list li:last-child { border-bottom-color: rgba(255, 255, 255, 0.12); }
.wbx-list li > span { color: rgba(215, 25, 32, 0.45); }
.wbx-list strong { color: #fff; }
.wbx-list em { color: rgba(255, 255, 255, 0.62); }
.wbx-steps span { border-color: var(--wbx-gold); color: var(--wbx-gold); }
.wbx-steps p { color: rgba(255, 255, 255, 0.75); }
.wbx-faq details { border-top-color: rgba(255, 255, 255, 0.12); }
.wbx-faq details:last-of-type { border-bottom-color: rgba(255, 255, 255, 0.12); }
.wbx-faq summary { color: #fff; }
.wbx-faq summary::after { color: var(--wbx-gold); }
.wbx-faq details p { color: rgba(255, 255, 255, 0.68); }
.wbx-replays .eyebrow, .wbx-story .eyebrow, .wbx-takeaways .eyebrow, .wbx-faq .eyebrow {
  color: var(--wbx-gold) !important;
}

/* diagonal cuts: host + reserve slice into the page */
.wbx-host {
  clip-path: polygon(0 3.5vw, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(60px, 8vw, 110px) + 3.5vw);
  margin-top: 60px;
}
.wbx-host-copy h2 { text-transform: uppercase; }
.wbx-host-role { color: var(--wbx-gold); }
.wbx-reserve {
  clip-path: polygon(0 0, 100% 3.5vw, 100% 100%, 0 100%);
  padding-top: calc(84px + 3.5vw);
  margin-top: 50px;
}
.wbx-reserve h2 { text-transform: uppercase; font-size: clamp(30px, 5vw, 58px); }
.wbx-reserve-meta strong { text-transform: uppercase; letter-spacing: 0.08em; }

/* the closer: black, massive, gold date */
.wbx-closer {
  background:
    radial-gradient(90% 130% at 50% 130%, rgba(215, 25, 32, 0.35), transparent 60%),
    #0a0b10;
}
.wbx-closer h2 { color: #fff; text-transform: uppercase; font-size: clamp(32px, 5.8vw, 68px); }
.wbx-closer p { color: var(--wbx-gold); text-transform: uppercase; letter-spacing: 0.1em; }

/* home band: match the language */
.wbx-home h2 { text-transform: uppercase; }
.wbx-home-date strong { color: var(--wbx-gold); text-transform: uppercase; letter-spacing: 0.1em; }
.wbx-hero h1 em { isolation: isolate; }

/* webinar page: photo fix + footer contrast */
.wbx-host-photo img {
  border-radius: 26px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(231, 199, 127, 0.4);
  box-shadow: 0 30px 90px rgba(215, 25, 32, 0.35);
  filter: none;
}
.webinar-document .site-footer a { color: rgba(255, 255, 255, 0.92); }
.webinar-document .site-footer a:hover { color: #fff; }
.webinar-document .site-footer .footer-col > span { color: var(--wbx-gold); opacity: 0.9; }
.webinar-document .site-footer p,
.webinar-document .site-footer span { color: rgba(255, 255, 255, 0.75); }

/* webinar page: bigger body type throughout */
.wbx-story p { font-size: clamp(17px, 2vw, 20px); line-height: 1.8; }
.wbx-list strong { font-size: clamp(19px, 2.3vw, 24px); }
.wbx-list em { font-size: clamp(15.5px, 1.8vw, 18px); line-height: 1.7; }
.wbx-host-line { font-size: clamp(17px, 2vw, 20px); line-height: 1.8; }
.wbx-host-stats strong { font-size: clamp(21px, 2.6vw, 30px); }
.wbx-steps p { font-size: clamp(16px, 1.9vw, 18px); }
.wbx-faq summary { font-size: clamp(17px, 2.1vw, 21px); }
.wbx-faq details p { font-size: clamp(15.5px, 1.9vw, 18px); line-height: 1.75; }
.wbx-hero-note { font-size: 15px; }
.wbx-proof strong { font-size: clamp(24px, 3.2vw, 36px); }
.wbx-proof span, .wbx-host-stats span, .wbx-ticks span { font-size: 12px; }
.wbx-reserve-meta span { font-size: 15px; }
.wbx-form .form-microcopy { font-size: 14px; }
.wbx-chips span { font-size: 12px; }
/* dark footer: full-white links; social pills keep dark text on white */
.webinar-document .site-footer a { color: #fff; }
.webinar-document .site-footer .footer-col a:hover { color: var(--wbx-gold); }
.webinar-document .footer-social a,
.webinar-document .footer-social a span { color: var(--ink, #12131a); }
.webinar-document .footer-social a i { color: var(--red, #d71920); }
.webinar-document .footer-contact { color: #fff; }
/* ghost numerals were muddy on black - bright red, slight glow */
.wbx-list li > span {
  color: #ff4d55;
  opacity: 0.95;
  text-shadow: 0 0 26px rgba(215, 25, 32, 0.45);
}

/* HUSSAIN'S RULE: never grey on black. On dark surfaces text is pure white;
   small-caps labels are gold. Hierarchy comes from size and weight, not dimming. */
.wbx-story p,
.wbx-list em,
.wbx-host-line,
.wbx-steps p,
.wbx-faq details p,
.wbx-hero-note,
.wbx-reserve-meta span,
.wbx-form .form-microcopy,
.wbx-home-lede,
.wbx-chips span { color: #fff; }
.wbx-proof span,
.wbx-ticks span,
.wbx-host-stats span,
.wbx-sticky-left { color: var(--wbx-gold); }
.wbx-sticky-left strong { color: #fff; }
.webinar-document .site-footer p,
.webinar-document .site-footer span,
.webinar-document .site-footer .footer-brand span { color: #fff; }
.webinar-document .site-footer .footer-col > span { color: var(--wbx-gold); opacity: 1; }
.webinar-document .site-footer .val-report-disc,
.webinar-document .site-footer small { color: #fff; }
.wbx-replays .replay-card div span { color: var(--wbx-gold); }

/* webinars: kill remaining greys + upsize everything readable */
.wbx-hero .eyebrow, .wbx-host .eyebrow, .wbx-home .eyebrow { color: #fff; }
.wbx-chips span { font-size: 13px; }
.wbx-strip { font-size: 13.5px; }
.wbx-hero-note { font-size: 16.5px; }
.wbx-proof span, .wbx-ticks span, .wbx-host-stats span { font-size: 13px; }
.wbx-reserve-meta span { font-size: 16.5px; }
.wbx-form input, .wbx-form select { font-size: 17px; padding: 17px 18px; }
.wbx-form .pc-btn { font-size: 16px; }
.wbx-form .form-microcopy { font-size: 15.5px; }
.wbx-sticky-left { font-size: 15px; }
.wbx-story p:not(.eyebrow) { font-size: clamp(17.5px, 2.1vw, 21px); }
.wbx-list em { font-size: clamp(16.5px, 1.9vw, 19px); }
.wbx-steps p { font-size: clamp(17px, 2vw, 19px); }
.wbx-faq details p { font-size: clamp(16.5px, 2vw, 19px); }
.wbx-host-line { font-size: clamp(17.5px, 2.1vw, 21px); }
.wbx-replays .replay-card h3 { font-size: clamp(16.5px, 2vw, 19px); color: #fff; }
.wbx-replays .replay-card div span { font-size: 13px; }
.webinar-document .site-footer a { font-size: 16px; }
.webinar-document .site-footer p,
.webinar-document .site-footer .footer-brand span { font-size: 15.5px; }
.webinar-document .site-footer .footer-col > span { font-size: 13px; }
/* audit stragglers */
.wbx-page .eyebrow, .webinar-document .eyebrow { font-size: 13px; }
.wbx-form .pc-btn { color: var(--ink, #12131a); font-weight: 700; font-size: 15.5px; }
.wbx-form .pc-btn .pc-caret { color: var(--ink, #12131a); font-size: 11px; }
.wbx-reserve-meta b { color: #fff; }
/* dark page: listing cards read white */
.webinar-document .listing-card,
.webinar-document .listing-card h3,
.webinar-document .listing-card .listing-title,
.webinar-document .listing-card .listing-price { color: #fff; }
.webinar-document .listing-card .listing-sub { color: #fff; font-size: 15px; }
.webinar-document .listing-row .section-heading h2,
.webinar-document .listing-row-title { color: #fff; }

/* social pills: dark labels, brand icons - wins over the broad white sweep */
.webinar-document .site-footer .footer-social a,
.webinar-document .site-footer .footer-social a span { color: var(--ink, #12131a) !important; }
.webinar-document .site-footer .footer-social a i { color: var(--red, #d71920) !important; }

/* sticky ticker: gold, pops on black and red alike */
.wbx-sticky {
  background: linear-gradient(120deg, #f6e2b3, var(--wbx-gold, #e7c77f));
  border: 0;
  color: var(--ink, #12131a);
  box-shadow: 0 18px 55px rgba(231, 199, 127, 0.35);
}
.wbx-sticky-left { color: var(--ink, #12131a); }
.wbx-sticky-left strong { color: var(--ink, #12131a); }
.wbx-sticky-count { color: var(--ink, #12131a); }
.wbx-sticky-count b { color: var(--red-dark, #b3141b); }
.wbx-sticky-count b { color: var(--ink, #12131a); font-weight: 800; }
/* hero headline: balanced centered lines at every width */
.wbx-hero-inner { max-width: 1040px; }
.wbx-hero h1 { text-wrap: balance; }
.wbx-hero h1 em { display: inline-block; }
/* the h1 inherited a global max-width with no auto margins -> pinned left */
.wbx-hero h1 { max-width: none; margin-left: auto; margin-right: auto; }
.wbx-hero .wbx-date, .wbx-hero .wbx-hero-note { max-width: none; margin-left: auto; margin-right: auto; }

/* hood: toggle + list view */
.hood-row-tools { display: flex; align-items: center; gap: 12px; }
.hood-view button { padding: 8px 10px; }
.hood-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.hood-lrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.hood-lrow-main strong { display: block; font-size: 15.5px; color: var(--ink); }
.hood-lrow-main span { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.hood-lrow-meta { display: flex; align-items: center; gap: 16px; font-size: 13.5px; color: var(--ink-soft); flex-wrap: wrap; }
.hood-lrow-meta a { display: inline-flex; align-items: center; gap: 5px; color: var(--red-dark, #b3141b); font-weight: 600; text-decoration: none; }
.hood-lrow-meta i, .hood-lrow-meta svg { width: 14px; height: 14px; }
.hood-lrow-rating { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; color: var(--ink); }
.hood-lrow-rating i, .hood-lrow-rating svg { width: 14px; height: 14px; color: #e7a740; }
/* agent filterbar: toggle sits with the selects */
.agent-filterbar .view-toggle { margin-left: auto; }
.hood-list[hidden] { display: none !important; }
