:root {
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --font-brand: "Cormorant Garamond", Georgia, serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #d6aa55;
  outline-offset: 3px;
}

#cookie {
  z-index: 30;
}

#listings,
#why,
#steps,
#experience,
#about,
#services,
#tools,
#market,
#news,
#resources,
#contact {
  scroll-margin-top: 88px;
}

img {
  display: block;
}

.hero-clear-break {
  display: block;
}

.hero-lead-copy {
  width: min(36rem, calc(100vw - 72px));
  max-width: 100%;
  text-wrap: pretty;
}

#navLinks {
  transition: transform .45s var(--ease-out);
}

#nav a,
#nav button {
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

#nav .site-brand,
.footer-brand {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

#nav .site-brand {
  font-size: clamp(18px, 1.25vw, 21px);
}

.hero-bg {
  top: -12vh;
  bottom: -12vh;
  overflow: hidden;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, .35), rgba(10, 10, 10, .2) 45%, rgba(10, 10, 10, .95)),
    linear-gradient(90deg, rgba(10, 10, 10, .28), rgba(10, 10, 10, .02));
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s var(--ease-out);
  pointer-events: none;
}

.hero-slide-media,
.hero-slide-media img,
.hero-depth {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center center);
}

.hero-slide-media {
  z-index: 1;
}

.hero-slide-media img {
  filter: saturate(.92) contrast(1.02);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-depth {
  z-index: 2;
  opacity: 0;
  transform:
    translate3d(var(--hero-layer-x, 0), var(--hero-layer-y, 0), 0)
    scale(var(--hero-depth-scale, 1.045));
  transition: opacity 1.2s var(--ease-out);
  will-change: transform, opacity;
}

.hero-slide.is-active .hero-depth {
  opacity: var(--hero-depth-opacity, .18);
}

.hero-depth-structure {
  --hero-depth-opacity: .2;
  --hero-depth-scale: 1.035;
  filter: saturate(1.02) contrast(1.08);
  -webkit-mask-image: radial-gradient(ellipse at 68% 48%, #000 0 34%, rgba(0, 0, 0, .72) 48%, transparent 70%);
  mask-image: radial-gradient(ellipse at 68% 48%, #000 0 34%, rgba(0, 0, 0, .72) 48%, transparent 70%);
}

.hero-depth-foreground {
  --hero-depth-opacity: .24;
  --hero-depth-scale: 1.06;
  filter: saturate(1.04) contrast(1.04);
  -webkit-mask-image: linear-gradient(180deg, transparent 0 46%, rgba(0, 0, 0, .22) 58%, #000 76%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0 46%, rgba(0, 0, 0, .22) 58%, #000 76%, #000 100%);
}

@media (max-width: 640px) {
  .hero-bg {
    transform: translate3d(0, var(--parallax-y, 0), 0);
  }

  .hero-lead-copy {
    width: min(19rem, calc(100vw - 96px));
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-slide-media img,
  .hero-depth {
    object-position: center center;
  }

  .hero-depth {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(46px) scale(.985);
  clip-path: inset(10% 0 0 0);
  transition:
    opacity .9s var(--ease-out),
    transform .9s var(--ease-out),
    clip-path .9s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  clip-path: inset(0);
}

.listing-track,
.testi-track {
  display: flex;
  transition: transform .72s var(--ease-out);
  will-change: transform;
}

.listing-track {
  align-items: flex-start;
}

.listing-slide,
.testi-card {
  flex: 0 0 100%;
}

.listing-card {
  min-height: 590px;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    border-color .28s ease,
    background-color .28s ease,
    transform .5s var(--ease-out);
}

.listing-card:hover {
  border-color: rgba(255, 255, 255, .24);
  background-color: rgba(38, 38, 38, .9);
  transform: translateY(-6px);
}

.listing-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #171717;
}

.listing-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, .42));
  pointer-events: none;
}

.listing-card-image img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  transition: transform .9s var(--ease-out);
  will-change: transform;
}

.listing-card:hover .listing-card-image img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.12);
}

.listing-card-image span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(10, 10, 10, .62);
  padding: 8px 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.listing-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.listing-arrow:hover {
  background: #fff;
  color: #0a0a0a;
  transform: translateY(-2px);
}

#listingDots button,
#testiDots button {
  height: 3px;
  width: 36px;
  background: rgba(255, 255, 255, .2);
  transition: background-color .25s ease, width .25s ease;
}

#listingDots button.is-active,
#testiDots button.is-active {
  width: 54px;
  background: #fff;
}

#listingDots {
  width: 100%;
  min-width: 0;
  gap: 6px;
}

#listingDots button,
#listingDots button.is-active {
  flex: 1 1 0;
  width: auto;
  min-width: 12px;
  max-width: 36px;
}

@media (min-width: 640px) {
  .hero-clear-break {
    display: inline;
  }
}

.experience-panel {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 42vw);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #0a0a0a;
}

.experience-panel::before {
  content: attr(data-index);
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  top: clamp(76px, 9vw, 120px);
  color: rgba(255, 255, 255, .055);
  font-size: clamp(110px, 22vw, 310px);
  font-weight: 700;
  line-height: .75;
  pointer-events: none;
}

.experience-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 88px);
}

.experience-media {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .12), rgba(10, 10, 10, 0)),
    linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, .14));
}

.experience-media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.06) contrast(1.04);
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05);
  will-change: transform;
}

.experience-green {
  background: radial-gradient(circle at 12% 20%, rgba(50, 110, 78, .25), transparent 32%), #0a0f0c;
}

.experience-maps {
  background: radial-gradient(circle at 12% 20%, rgba(140, 92, 38, .24), transparent 32%), #100d09;
}

.experience-duke {
  background: radial-gradient(circle at 12% 20%, rgba(180, 180, 170, .16), transparent 34%), #0d0d0c;
}

.experience-royal {
  background: radial-gradient(circle at 12% 20%, rgba(58, 105, 130, .24), transparent 32%), #080e11;
}

.experience-operator {
  background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .13), transparent 34%), #080808;
}

.owner-bg,
.cta-bg {
  --parallax-y: 0px;
}

.owner-bg {
  position: relative;
  overflow: hidden;
  background: #171717;
}

.owner-bg::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, .05), rgba(10, 10, 10, .55)),
    var(--section-image, url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1400&q=80")) center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  will-change: transform;
}

.cta-bg::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, .72), rgba(10, 10, 10, .88)),
    var(--section-image, url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1800&q=80")) center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  will-change: transform;
}

.hub-wrap {
  width: min(100% - 40px, 1440px);
  margin-inline: auto;
}

.hub-hero-title {
  max-width: 1050px;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(56px, 8.4vw, 124px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .92;
  text-wrap: balance;
}

.hero-kicker,
.card-label {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.25;
  text-transform: uppercase;
}

.mobile-only-break {
  display: none;
}

.hub-hero-copy {
  margin-top: 28px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.45;
  text-wrap: pretty;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1120px);
  margin-top: clamp(36px, 6vw, 74px);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .1);
}

.hero-proof span {
  min-height: 106px;
  background: rgba(10, 10, 10, .56);
  padding: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(16px);
}

.button-light,
.button-ghost {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 0 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  transition:
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease,
    transform .22s ease;
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: #0a0a0a;
}

.button-light:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.button-light:hover {
  background: rgba(255, 255, 255, .86);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}

.hub-section {
  padding-block: clamp(86px, 13vh, 168px);
  background: #0a0a0a;
}

.hub-section-paper {
  background: #f4f1ea;
  color: #111;
}

.hub-section-paper .section-copy,
.hub-section-paper .tool-card p,
.hub-section-paper .report-card p,
.hub-section-paper .case-card p {
  color: rgba(10, 10, 10, .62);
}

.hub-section-dark-card {
  border-block: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .08), transparent 34%),
    #0d0d0d;
}

.section-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-top: 22px;
}

.section-title {
  max-width: 1050px;
  color: #fff;
  font-size: clamp(36px, 6vw, 86px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
}

.hub-section-paper .section-title,
.hub-section-paper .calculator-card h3,
.hub-section-paper .tool-card h3,
.hub-section-paper .report-card h3,
.hub-section-paper .case-card h3 {
  color: #111;
}

.section-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, .58);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.section-title + .section-copy {
  margin-top: clamp(20px, 2.4vw, 30px);
}

.section-heading-grid > .section-copy {
  margin-top: 0;
}

.audience-grid,
.market-grid,
.reports-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
}

.audience-card,
.market-card {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    #0f0f0f;
  padding: clamp(24px, 3vw, 36px);
}

.audience-card h3,
.market-card h3 {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.audience-card p,
.market-card p {
  margin-top: 20px;
  color: rgba(255, 255, 255, .58);
  font-size: 16px;
  line-height: 1.6;
}

.audience-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.audience-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}

.tools-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 42px;
}

@media (min-width: 1180px) {
  .tools-layout {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.calculator-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(10, 10, 10, .14);
  background: #fff;
  padding: clamp(20px, 2vw, 28px);
  box-shadow: 0 18px 44px rgba(10, 10, 10, .06);
}

.calculator-card > div:first-child,
.calculator-result {
  grid-column: 1 / -1;
}

.calculator-card h3 {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
}

.calculator-card p {
  margin-top: 10px;
  color: rgba(10, 10, 10, .62);
  line-height: 1.55;
}

.calculator-card label {
  display: grid;
  gap: 9px;
  color: rgba(10, 10, 10, .68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.calculator-card input {
  width: 100%;
  border: 1px solid rgba(10, 10, 10, .18);
  background: #f7f4ee;
  padding: 11px 12px;
  color: #111;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.calculator-card input:focus {
  border-color: #111;
}

.calculator-result {
  width: 100%;
  align-self: end;
  border-top: 1px solid rgba(10, 10, 10, .12);
  padding-top: 16px;
  text-align: left;
}

.calculator-result span,
.calculator-result small {
  display: block;
  color: rgba(10, 10, 10, .55);
}

.calculator-result strong {
  display: block;
  margin-block: 6px 8px;
  color: #111;
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: .95;
  letter-spacing: -.055em;
}

.tool-grid {
  display: contents;
}

.tool-card,
.report-card,
.case-card {
  border: 1px solid rgba(10, 10, 10, .12);
  background: rgba(255, 255, 255, .64);
  padding: clamp(20px, 2vw, 26px);
}

.tool-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  min-height: 100%;
}

.tool-card h3,
.report-card h3,
.case-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.tool-card p,
.report-card p,
.case-card p {
  margin-top: 12px;
  line-height: 1.58;
}

.mini-calculator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  align-self: stretch;
}

.mini-calculator label {
  display: grid;
  gap: 8px;
  color: rgba(10, 10, 10, .56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mini-calculator input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(10, 10, 10, .14);
  background: rgba(255, 255, 255, .72);
  padding: 9px 10px;
  color: #111;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
}

.mini-calculator input:focus {
  border-color: #111;
  background: #fff;
}

.mini-result {
  grid-column: 1 / -1;
  width: 100%;
  align-self: end;
  margin-top: 2px;
  border-top: 1px solid rgba(10, 10, 10, .12);
  padding-top: 14px;
  text-align: left;
}

.mini-result span,
.mini-result small {
  display: block;
  color: rgba(10, 10, 10, .55);
}

.mini-result span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mini-result strong {
  display: block;
  margin-block: 7px 8px;
  color: #111;
  font-size: clamp(27px, 2.55vw, 36px);
  line-height: .95;
  letter-spacing: -.05em;
}

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

.market-card {
  min-height: 280px;
}

.market-dashboard {
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, .08), transparent 30%),
    #101010;
}

.market-dashboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.market-dashboard-head h3,
.lead-magnet-panel h3,
.newsletter-card h3,
.platform-card h2 {
  color: #fff;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}

.market-dashboard-head p,
.lead-magnet-panel p,
.newsletter-card p,
.platform-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.6;
}

.market-dashboard-head a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.market-table {
  overflow-x: auto;
}

.market-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.1fr) repeat(4, minmax(92px, .7fr)) minmax(220px, 1.4fr);
  min-width: 860px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.market-row > * {
  padding: 16px 18px;
  color: rgba(255, 255, 255, .78);
}

.market-row strong {
  color: #fff;
}

.market-row em {
  color: rgba(255, 255, 255, .58);
  font-style: normal;
}

.market-row-head > * {
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.market-note {
  padding: 18px clamp(24px, 3vw, 36px) clamp(24px, 3vw, 36px);
  color: rgba(255, 255, 255, .46);
  font-size: 14px;
}

.market-intel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
}

.market-intel-card {
  background: rgba(18, 18, 18, .82);
  padding: clamp(24px, 3vw, 34px);
}

.market-intel-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.market-intel-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.6;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.resource-layout .button-light {
  margin-top: 28px;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .08);
}

.resource-list div {
  min-height: 164px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 24px;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.resource-list > div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.resource-list h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.resource-list ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.resource-list li {
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.resource-document-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.resource-document-row.has-cover {
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
}

.resource-document-cover {
  display: grid;
  width: 54px;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-document-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-document-copy {
  min-width: 0;
}

.resource-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 160ms ease;
}

.resource-list li a:hover {
  color: #fff;
}

.resource-list li a span {
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-list li p {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .44);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.reports-grid,
.case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(10, 10, 10, .12);
  border-color: rgba(10, 10, 10, .12);
}

.report-card-cover {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  margin: 0 0 20px;
  border: 1px solid rgba(10, 10, 10, .12);
  background: rgba(10, 10, 10, .06);
  color: rgba(10, 10, 10, .44);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-card a {
  display: inline-flex;
  margin-top: 24px;
  color: #111;
  font-weight: 700;
}

.lead-magnet-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 54px);
  margin-top: 28px;
  border: 1px solid rgba(10, 10, 10, .12);
  background: #fff;
  padding: clamp(24px, 3vw, 36px);
}

.lead-magnet-panel h3 {
  color: #111;
}

.lead-magnet-panel p {
  color: rgba(10, 10, 10, .62);
}

.lead-magnet-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lead-magnet-list span,
.lead-magnet-list a {
  display: block;
  border-left: 2px solid #111;
  background: #f4f1ea;
  padding: 12px 14px;
  color: rgba(10, 10, 10, .78);
  font-size: 14px;
  font-weight: 700;
}

.lead-magnet-list a {
  transition: background 160ms ease, color 160ms ease;
}

.lead-magnet-list a:hover {
  background: #111;
  color: #fff;
}

.listing-card {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(18, 18, 18, .86);
}

.listing-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .72fr);
  gap: clamp(18px, 3vw, 34px);
  min-height: clamp(440px, 44vw, 560px);
  padding: clamp(14px, 1.8vw, 24px);
}

.listing-photo-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 22%);
  gap: 12px;
  height: clamp(400px, 40vw, 520px);
  min-height: 0;
}

.listing-photo-board-solo {
  grid-template-columns: 1fr;
}

.listing-photo-board button {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #171717;
  color: inherit;
  cursor: pointer;
}

.listing-photo-board button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, .32));
  opacity: .78;
  pointer-events: none;
}

.listing-photo-main {
  height: 100%;
  min-height: 0;
}

.listing-photo-stack {
  display: grid;
  grid-template-rows: repeat(var(--stack-count, 3), minmax(0, 1fr));
  gap: 12px;
}

.listing-gallery-placeholder {
  display: grid;
  min-height: 0;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .48);
  padding: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.listing-photo-board img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  transition: transform .9s var(--ease-out), filter .35s ease;
  will-change: transform;
}

.listing-photo-stack img {
  height: 100%;
  transform: scale(1.02);
}

.listing-photo-board button:hover img,
.listing-card:hover .listing-photo-main img {
  filter: saturate(1.08) contrast(1.04);
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.09);
}

.listing-card-body {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 26px;
}

.listing-showcase-body {
  min-height: auto;
  justify-content: center;
  padding: clamp(18px, 2.5vw, 34px);
}

.listing-meta,
.listing-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.listing-card-body h3 {
  margin-top: 18px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.listing-card-body p {
  margin-top: 16px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.58;
}

.listing-facts {
  margin-top: 22px;
  letter-spacing: 0;
  text-transform: none;
}

.listing-facts span {
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 7px 10px;
}

.listing-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
}

.listing-price-row strong {
  color: #fff;
  font-size: 22px;
}

.listing-price-row span {
  color: rgba(255, 255, 255, .48);
}

.listing-source-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
}

.listing-source-row a,
.listing-source-row span {
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
}

.listing-source-row button,
.listing-source-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  background: #fff;
  color: #0a0a0a;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease;
}

.listing-source-row button:hover,
.listing-source-button:hover {
  background: rgba(255, 255, 255, .86);
  transform: translateY(-2px);
}

.listing-modal {
  width: min(1120px, calc(100vw - 34px));
  max-height: calc(100vh - 34px);
  border: 1px solid rgba(255, 255, 255, .16);
  background: #0b0b0b;
  color: #fff;
  padding: 0;
}

.listing-modal::backdrop {
  background: rgba(0, 0, 0, .76);
  backdrop-filter: blur(10px);
}

.listing-modal-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 0;
}

.listing-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(10, 10, 10, .72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.listing-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, 1fr);
  gap: 8px;
  min-height: 620px;
  padding: 10px;
}

.listing-modal-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.listing-modal-gallery img:first-child {
  grid-row: span 2;
}

.listing-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.listing-modal-copy h3 {
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
}

.listing-modal-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .64);
  line-height: 1.65;
}

.listing-modal-price {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 16px;
  margin-top: 26px;
}

.listing-modal-price strong {
  font-size: 26px;
}

.listing-modal-price span {
  color: rgba(255, 255, 255, .52);
}

.listing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
}

.listing-detail-grid div {
  background: #101010;
  padding: 16px;
}

.listing-detail-grid dt {
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.listing-detail-grid dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.35;
}

.listing-source-button {
  width: fit-content;
  margin-top: 28px;
  text-decoration: none;
}

.listing-viewport {
  contain: layout paint;
  max-width: 100%;
  overflow: hidden;
  transition: height .45s var(--ease-out);
}

.listing-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.listing-controls > div {
  display: flex;
  gap: 10px;
}

.empty-state {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  padding: clamp(28px, 4vw, 48px);
}

.empty-state h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.empty-state p {
  max-width: 650px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .58);
}

.hub-about-section {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.about-layout,
.assistant-layout {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.about-layout .owner-bg {
  min-height: 640px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.profile-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
}

.profile-scope span {
  background: #101010;
  padding: 14px 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 700;
}

.case-grid {
  margin-top: 0;
}

.testimonial-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, .12);
  background: #111;
  padding: clamp(26px, 4.5vw, 52px);
  color: #fff;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-panel .testi-track {
  align-items: stretch;
}

.testimonial-panel .testi-card {
  display: grid;
  min-width: 100%;
  max-width: 100%;
  min-height: clamp(292px, 29vw, 400px);
  align-content: center;
  padding-right: clamp(8px, 2vw, 32px);
  overflow: hidden;
}

.testimonial-panel .testi-card p {
  max-width: min(100%, 980px);
  color: #fff;
  font-size: clamp(24px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.testimonial-panel cite {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, .52);
  font-style: normal;
}

#testiDots {
  display: flex;
  gap: 10px;
  margin-top: clamp(26px, 4vw, 46px);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
}

.question-grid span {
  min-height: 116px;
  background: #101010;
  padding: 28px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  font-weight: 700;
}

.compact-question-grid {
  margin-top: 24px;
}

.compact-question-grid span {
  min-height: 82px;
  background: #f4f1ea;
  color: rgba(10, 10, 10, .78);
}

.news-layout,
.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.news-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
}

.news-topic-grid span {
  background: rgba(16, 16, 16, .86);
  padding: 18px;
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
}

.newsletter-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015)),
    #111;
  padding: clamp(26px, 4vw, 46px);
}

.newsletter-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.newsletter-form label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.newsletter-form input {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  padding: 0 16px;
  color: #fff;
  font: inherit;
  outline: none;
}

.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, .5);
}

.newsletter-form button {
  min-height: 52px;
  background: #fff;
  color: #111;
  font-weight: 800;
}

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

.platform-card {
  border: 1px solid rgba(10, 10, 10, .12);
  background: #fff;
  padding: clamp(26px, 4vw, 46px);
}

.platform-card h2 {
  color: #111;
}

.platform-card p {
  color: rgba(10, 10, 10, .62);
}

.member-list {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(10, 10, 10, .12);
  background: rgba(10, 10, 10, .12);
}

.member-list li {
  background: #f4f1ea;
  padding: 16px 18px;
  color: rgba(10, 10, 10, .76);
  font-weight: 700;
}

.cta-title {
  max-width: 1100px;
  color: #fff;
  font-size: clamp(44px, 8vw, 118px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .94;
}

.cta-copy {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #0d0d0d;
  padding-block: 72px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding-bottom: 54px;
}

.footer-brand {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
}

.site-footer h4 {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  color: rgba(255, 255, 255, .36);
  font-size: 14px;
}

@media (max-width: 768px) {
  #nav {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  #navLinks {
    height: 100dvh;
  }

  .hub-wrap {
    width: min(100% - 32px, 1440px);
  }

  .hub-hero-title {
    margin-top: 18px;
    max-width: 21rem;
    font-size: clamp(46px, 12.6vw, 60px);
    letter-spacing: -.06em;
  }

  .mobile-only-break {
    display: block;
  }

  .hub-hero-copy {
    max-width: 20rem;
    margin-top: 22px;
  }

  .hero-actions {
    gap: 10px;
  }

  #top .hero-actions .button-light,
  #top .hero-actions .button-ghost {
    flex: 1 1 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-proof span {
    min-height: auto;
  }

  .button-light,
  .button-ghost {
    min-height: 50px;
    padding-inline: 18px;
  }

  .audience-grid,
  .market-grid,
  .reports-grid,
  .case-grid,
  .footer-grid,
  .tools-layout,
  .section-heading-grid,
  .resource-layout,
  .about-layout,
  .assistant-layout {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .market-grid,
  .reports-grid,
  .case-grid {
    margin-top: 36px;
  }

  .audience-card,
  .market-card {
    min-height: auto;
  }

  .tool-grid,
  .resource-list,
  .question-grid,
  .hero-proof,
  .market-intel-grid,
  .lead-magnet-panel,
  .lead-magnet-list,
  .news-layout,
  .news-topic-grid,
  .platform-grid,
  .profile-scope {
    grid-template-columns: 1fr;
  }

  .market-dashboard-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-dashboard-head a {
    width: 100%;
  }

  .market-row {
    min-width: 760px;
  }

  .calculator-card {
    grid-template-columns: 1fr;
  }

  .listing-showcase,
  .listing-photo-board,
  .listing-modal-shell {
    grid-template-columns: 1fr;
  }

  .listing-showcase {
    gap: 16px;
    min-height: auto;
  }

  .listing-photo-board {
    height: auto;
  }

  .listing-photo-main {
    height: auto;
    min-height: 320px;
  }

  .listing-photo-stack {
    grid-template-columns: repeat(var(--stack-count, 3), minmax(0, 1fr));
    grid-template-rows: minmax(96px, 1fr);
  }

  .listing-photo-stack button {
    min-height: 96px;
  }

  .listing-modal {
    width: min(100vw - 18px, 720px);
  }

  .listing-modal-gallery {
    min-height: 360px;
  }

  .listing-modal-copy {
    padding: 24px;
  }

  .listing-detail-grid {
    grid-template-columns: 1fr;
  }

  .mini-calculator {
    grid-template-columns: 1fr;
  }

  .about-layout .owner-bg {
    min-height: 360px;
  }

  .resource-list div,
  .question-grid span {
    min-height: auto;
  }

  .listing-controls,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-controls > div {
    width: 100%;
  }

  .testimonial-panel {
    overflow: visible;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .testimonial-panel .testimonial-viewport {
    overflow: visible;
  }

  .testimonial-panel .testi-track {
    display: grid;
    gap: 14px;
    transform: none !important;
  }

  .testimonial-panel .testi-card {
    flex: none;
    border: 1px solid rgba(10, 10, 10, .12);
    background: #111;
    padding: 22px;
  }

  .testimonial-panel .testi-card p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: -.015em;
  }

  .testimonial-panel cite {
    margin-top: 18px;
    font-size: 14px;
  }

  #testiDots {
    display: none;
  }

  .cta-title {
    font-size: clamp(42px, 13vw, 70px);
  }

  .listing-card {
    min-height: auto;
  }

  .listing-source-row {
    align-items: stretch;
    flex-direction: column;
  }

  .listing-source-row button,
  .listing-source-button {
    width: 100%;
  }

  .experience-panel {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    min-height: 56svh;
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .experience-media {
    min-height: 44svh;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  #listingDots button,
  #listingDots button.is-active {
    width: auto;
    max-width: 28px;
  }

  #cookie {
    inset-inline: 14px;
    bottom: 10px;
    gap: 10px;
    padding: 12px 14px;
  }

  #cookie p {
    font-size: 12px;
    line-height: 1.35;
  }

  #cookie .flex {
    gap: 8px;
  }

  #cookie button {
    min-height: 38px;
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
    transition: none;
  }

  .listing-track,
  .testi-track,
  .listing-card,
  .listing-photo-board img,
  .hero-depth,
  .hero-slide.is-active {
    transition: none;
    animation: none;
  }

  .hero-depth {
    display: none;
  }

  [data-parallax],
  .hero-bg,
  .listing-photo-board img,
  .experience-media img,
  .owner-bg::before,
  .cta-bg::before {
    transform: none;
  }
}
/* Private, full-page CMS preview */
.is-cms-preview {
  --cms-preview-height: 66px;
  padding-top: var(--cms-preview-height);
}

.is-cms-preview #nav {
  top: var(--cms-preview-height);
}

.is-cms-preview #cookie {
  display: none;
}

.is-cms-preview .listing-modal[open] {
  position: fixed;
  z-index: 190;
  inset: calc(var(--cms-preview-height) + 17px) 17px 17px;
  max-height: calc(100vh - var(--cms-preview-height) - 34px);
  overflow: auto;
  margin: auto;
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .76), 0 24px 80px rgba(0, 0, 0, .5);
}

.cms-preview-toolbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: var(--cms-preview-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #f5f1e8;
  color: #161616;
  padding: 10px clamp(16px, 3vw, 42px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.cms-preview-toolbar > div {
  display: grid;
  gap: 1px;
}

.cms-preview-toolbar strong {
  color: #174f39;
  font: 700 15px/1.2 "Instrument Sans", sans-serif;
}

.cms-preview-toolbar > div span,
.cms-preview-toolbar p {
  margin: 0;
  color: rgba(22, 22, 22, 0.68);
  font: 600 12px/1.35 "Instrument Sans", sans-serif;
}

.cms-preview-toolbar p {
  display: grid;
  gap: 1px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
}

.cms-preview-toolbar p span,
.cms-preview-toolbar p small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cms-preview-toolbar p span {
  color: rgba(22, 22, 22, .76);
  font: 700 12px/1.25 "Instrument Sans", sans-serif;
}

.cms-preview-toolbar p small {
  color: rgba(22, 22, 22, .54);
  font: 600 10px/1.25 "Instrument Sans", sans-serif;
}

.cms-preview-toolbar p.is-missing small {
  color: #9d3328;
}

.cms-preview-toolbar button {
  border: 1px solid rgba(22, 22, 22, 0.22);
  border-radius: 4px;
  background: #fff;
  color: #161616;
  cursor: pointer;
  font: 700 12px/1 "Instrument Sans", sans-serif;
  padding: 10px 12px;
}

.cms-preview-toolbar button:hover,
.cms-preview-toolbar button:focus-visible {
  border-color: #174f39;
  outline: 3px solid rgba(23, 79, 57, 0.2);
}

.cms-search-preview {
  position: fixed;
  z-index: 190;
  top: calc(var(--cms-preview-height) + 92px);
  left: 50%;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  width: min(620px, calc(100vw - 32px));
  border: 3px solid #c49a4b;
  border-radius: 6px;
  background: #fff;
  color: #202124;
  padding: 18px;
  transform: translateX(-50%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.cms-search-preview img {
  grid-row: span 3;
  width: 68px;
  height: 68px;
  border-radius: 4px;
  object-fit: cover;
}

.cms-search-preview span,
.cms-search-preview strong,
.cms-search-preview p {
  grid-column: 2;
}

.cms-search-preview span {
  color: #4d5156;
  font: 400 12px/1.4 "Instrument Sans", sans-serif;
}

.cms-search-preview strong {
  color: #1a0dab;
  font: 500 20px/1.25 "Instrument Sans", sans-serif;
}

.cms-search-preview p {
  margin: 4px 0 0;
  color: #4d5156;
  font: 400 13px/1.45 "Instrument Sans", sans-serif;
}

.cms-preview-highlight {
  position: relative;
  z-index: 20;
  outline: 4px solid #d6aa55 !important;
  outline-offset: 7px;
  box-shadow: 0 0 0 12px rgba(214, 170, 85, 0.2) !important;
  animation: cms-preview-pulse 1.4s ease-out 2;
}

@keyframes cms-preview-pulse {
  0%, 100% {
    outline-color: #d6aa55;
  }
  50% {
    outline-color: #fff;
  }
}

@media (max-width: 640px) {
  .is-cms-preview {
    --cms-preview-height: 88px;
  }

  .cms-preview-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
  }

  .cms-preview-toolbar p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .cms-search-preview {
    top: calc(var(--cms-preview-height) + 76px);
    grid-template-columns: 1fr;
  }

  .cms-search-preview img {
    display: none;
  }

  .cms-search-preview span,
  .cms-search-preview strong,
  .cms-search-preview p {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cms-preview-highlight {
    animation: none;
  }
}
