/** BESPOKE FOUNDATIONS: DESIGN TOKENS, TYPOGRAPHY, UTILITIES AND ANIMATION */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--bespoke-body);
  font-weight: 300;
  margin: 0;
  background-color: #111;
  color: #fff;
  line-height: 1.5;
}

b,
strong {
  font-family: var(--bespoke-body);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-caps {
  text-transform: uppercase !important;
}

.text-white {
  color: #fff;
}

.clean-btn-area {
  display: flex;
  align-items: center;
}

.clean-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  max-width: max-content;
  min-height: 40px !important;
  padding: 9px 45px !important;
  border: 1px solid #848ca3 !important;
  color: #fff;
  font-family: var(--bespoke-ui);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.clean-btn:hover, .clean-btn:focus {
  color: #000;
  background-color: #b3cee3;
  border-color: #b3cee3;
}

#bespoke .clean-btn-area a.clean-btn,
#bespoke .clean-btn-area a.clean-btn:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: max-content !important;
  min-height: 40px !important;
  padding: 9px 45px !important;
  border: 1px solid #848ca3 !important;
  color: #fff !important;
  font-family: var(--bespoke-ui);
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 1.5px !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  background: transparent !important;
}

#bespoke .clean-btn-area a.clean-btn:hover,
#bespoke .clean-btn-area a.clean-btn:focus {
  color: #000 !important;
  background-color: #b3cee3 !important;
  border-color: #b3cee3 !important;
}

#bespoke button,
#bespoke input[type="button"],
#bespoke input[type="submit"],
#bespoke .clean-btn,
#bespoke .btn-effect,
#bespoke .site-button,
#bespoke .submit-box,
#bespoke .submit-box * {
  font-family: var(--bespoke-ui);
}

[class*="fade-"] {
  opacity: 0;
  will-change: opacity, transform;
  animation-play-state: paused;
  backface-visibility: hidden;
  perspective: 1000px;
  animation-fill-mode: forwards !important;
}

[class*="fade-"].fade-in,
[class*="fade-"][class$="-active"] {
  animation-play-state: running;
  animation-duration: var(--anim-duration, 0.8s);
  animation-delay: var(--anim-delay, 0s);
  animation-timing-function: var(--anim-easing, cubic-bezier(0.25, 0.1, 0.25, 1));
  animation-fill-mode: forwards !important;
}

.fade-in {
  animation-name: fadeIn;
}

.fade-up,
.fade-up-active {
  animation-name: fadeUp;
}

.fade-down,
.fade-down-active {
  animation-name: fadeDown;
}

.fade-left,
.fade-left-active {
  animation-name: fadeLeft;
}

.fade-right,
.fade-right-active {
  animation-name: fadeRight;
}

.fade-scale,
.fade-scale-active {
  animation-name: fadeScale;
}

.fade-scale-up,
.fade-scale-up-active {
  animation-name: fadeScaleUp;
}

@keyframes fadeIn {
  0% {
  opacity: 0; }
  100% {
  opacity: 1; }
}

@keyframes fadeUp {
  0% {
  opacity: 0;
  transform: translateY(30px); }
  100% {
  opacity: 1;
  transform: translateY(0); }
}

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

@keyframes fadeLeft {
  0% {
  opacity: 0;
  transform: translateX(30px); }
  100% {
  opacity: 1;
  transform: translateX(0); }
}

@keyframes fadeRight {
  0% {
  opacity: 0;
  transform: translateX(-30px); }
  100% {
  opacity: 1;
  transform: translateX(0); }
}

@keyframes fadeScale {
  0% {
  opacity: 0;
  transform: scale(0.9); }
  100% {
  opacity: 1;
  transform: scale(1); }
}

@keyframes fadeScaleUp {
  0% {
  opacity: 0;
  transform: scale(0.9) translateY(30px); }
  100% {
  opacity: 1;
  transform: scale(1) translateY(0); }
}

.delay-100 {
  --anim-delay: 0.1s;
}

.delay-200 {
  --anim-delay: 0.2s;
}

.delay-300 {
  --anim-delay: 0.3s;
}

.delay-400 {
  --anim-delay: 0.4s;
}

.delay-500 {
  --anim-delay: 0.5s;
}

.delay-800 {
  --anim-delay: 0.8s;
}

.delay-1000 {
  --anim-delay: 1s;
}

.duration-300 {
  --anim-duration: 0.3s;
}

.duration-500 {
  --anim-duration: 0.5s;
}

.duration-800 {
  --anim-duration: 0.8s;
}

.duration-1000 {
  --anim-duration: 1s;
}

.duration-1500 {
  --anim-duration: 1.5s;
}

.duration-2000 {
  --anim-duration: 2s;
}

.ease-linear {
  --anim-easing: linear;
}

.ease-in {
  --anim-easing: cubic-bezier(0.42, 0, 1.0, 1.0);
}

.ease-out {
  --anim-easing: cubic-bezier(0, 0, 0.58, 1.0);
}

.ease-in-out {
  --anim-easing: cubic-bezier(0.42, 0, 0.58, 1.0);
}

.ease-bounce {
  --anim-easing: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.lazy.lazy-loaded {
  opacity: 1;
}

#cherie-young {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  color: #fff;
  overflow-x: clip;
}

#cherie-young * {
  box-sizing: border-box;
  font-synthesis: none !important;
}

#bespoke img,
  #bespoke video {
  display: block;
  max-width: 100%;
}

#bespoke img {
  margin: 0 !important;
}

#bespoke a {
  color: inherit;
}

#bespoke figure,
  #bespoke p,
  #bespoke h1,
  #bespoke h2,
  #bespoke h3,
  #bespoke h4,
  #bespoke h5,
  #bespoke h6 {
  margin-top: 0;
}

#bespoke figure {
  margin-bottom: 0;
}

#bespoke .bespoke-page-shell,
#bespoke .bespoke-page-inner,
#bespoke .cy-custom,
#bespoke .custom-section {
  position: relative;
  width: 100%;
}

#bespoke .bespoke-page-shell,
#bespoke .bespoke-page-inner,
#bespoke #design-container > .e-con-inner {
  max-width: 100% !important;
  padding: 0 !important;
}

#bespoke .bg-dark {
  background-color: rgba(29, 37, 58, 0.8);
}

#bespoke .bg-light {
  background-color: rgba(245, 245, 245, 0.82);
  color: #000;
}

.bespoke-section {
  position: relative;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

.bespoke-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.bespoke-section-kicker,
.bespoke-section-title {
  font-family: var(--bespoke-display);
  font-weight: 300;
  letter-spacing: 0;
}

.bespoke-section-kicker {
  text-transform: uppercase;
}

.bespoke-section-title {
  color: #fff;
}

#bespoke .title-row {
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
}

#bespoke .title-row.title-row-indent {
  padding-left: 8vw;
}

#bespoke .title-row.title-row-indent-small {
  padding-left: 4vw;
}

#bespoke .title-row .section-title h2 {
  font-weight: 400;
  text-wrap: balance;
}

#bespoke .no-widow {
  white-space: nowrap;
}

#bespoke .section-subtitle,
#bespoke .section-subtitle h1,
#bespoke .section-subtitle h2,
#bespoke .section-subtitle h3,
#bespoke .section-subtitle h4,
#bespoke .section-subtitle h5 {
  font-family: var(--bespoke-display);
}

#bespoke .bordered-title h3 {
  position: relative;
}

#bespoke .bordered-title h3::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -10px;
  width: 1px;
  height: 130%;
  background: currentColor;
}

:root {
  --sshn-ink: #050606;
  --sshn-ink-soft: #070707;
  --sshn-ink-wash: rgba(5, 6, 6, 0.3);
  --sshn-ink-glass: rgba(5, 6, 6, 0.86);
  --sshn-ink-glass-light: rgba(5, 6, 6, 0.8);
  --sshn-ink-glass-soft: rgba(7, 7, 7, 0.68);
  --sshn-section-overlay: rgba(5, 6, 6, 0.75);
  --sshn-paper: #ffffff;
  --sshn-paper-soft: #f5f5f3;
  --sshn-paper-glass: rgba(245, 245, 243, 0.82);
  --sshn-line-dark: rgba(5, 6, 6, 0.24);
  --sshn-line-light: rgba(255, 255, 255, 0.42);
  --bespoke-display: "Belleza", serif;
  --bespoke-editorial: "Playfair Display", Georgia, serif;
  --bespoke-body: "Poppins", sans-serif;
  --bespoke-ui: "Montserrat", sans-serif;
  --bespoke-ink: #090909;
  --bespoke-paper: #ffffff;
  --bespoke-muted: #6f6f6a;
  --bespoke-rule: rgba(9, 9, 9, 0.18);
  --bespoke-gutter: clamp(24px, 6vw, 96px);
  --bespoke-section-space: clamp(48px, 4.5vw, 64px);
  --bespoke-section-inner-gap: clamp(32px, 3.5vw, 48px);
  --bespoke-heading-band: clamp(148px, 10vw, 180px);
}

#bespoke .heading {
  margin: 0;
  font-family: var(--bespoke-display) !important;
  font-weight: 300 !important;
  line-height: 0.98 !important;
  letter-spacing: 0.015em !important;
  text-wrap: balance;
}

#bespoke .heading--hero {
  max-width: 18ch;
  margin-inline: auto;
  color: var(--bespoke-paper) !important;
  font-size: clamp(2.25rem, 2.8vw, 3.25rem) !important;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.34);
}

#bespoke .heading--section {
  font-size: clamp(2.5rem, 3.2vw, 3rem) !important;
}

body > .main-content + div.clearfix {
  display: none !important;
}

body.bespoke-dev-widget-lifted .main-content > .container-fluid {
  display: none !important;
}

html,
body {
  background: var(--sshn-paper);
  color: var(--sshn-ink);
}

#bespoke {
  font-family: var(--bespoke-body);
  font-weight: 300;
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  background: transparent !important;
}

#bespoke #design-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0 !important;
  background-color: rgba(29, 37, 58, 0.2) !important;
  background: var(--sshn-ink-wash) !important;
}

#bespoke .clean-btn-area a.clean-btn,
#bespoke .clean-btn-area a.clean-btn:visited,
#bespoke .btn-effect,
#bespoke .site-button {
  border-color: currentColor !important;
}

#bespoke .clean-btn-area a.clean-btn:hover,
#bespoke .clean-btn-area a.clean-btn:focus-visible,
#bespoke .btn-effect:hover,
#bespoke .btn-effect:focus-visible {
  color: var(--sshn-paper) !important;
  background-color: var(--sshn-ink-soft) !important;
  border-color: var(--sshn-ink-soft) !important;
}

#bespoke .area-item img,
#bespoke .area-item:hover img,
#bespoke .area-item:focus-within img,
#bespoke .item-wrap img,
#bespoke .item-wrap:hover img,
#bespoke .item-wrap:focus-within img {
  opacity: 1 !important;
}

#bespoke .area-item:hover .area-name,
#bespoke .area-item:focus-within .area-name,
#bespoke .item-wrap:hover .caption,
#bespoke .item-wrap:focus-within .caption {
  color: var(--sshn-paper) !important;
}

#bespoke #design-container .bespoke-page-inner > section {
  z-index: 1;
  position: relative;
  isolation: isolate;
  background-color: transparent !important;
}

#bespoke #design-container .bespoke-page-inner > section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--sshn-section-overlay);
  pointer-events: none;
}

#bespoke #design-container .bespoke-page-inner > section > * {
  position: relative;
  z-index: 1;
}

body.bespoke-dev-widget-lifted .main-content > .top-strip,
body.bespoke-dev-widget-lifted .si-breadcrumb {
  display: none !important;
}

body.bespoke-dev-widget-lifted .main-content > [id^="pageComponent"]:has(#design-container) {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#bespoke .bespoke-heading-nowrap {
  white-space: nowrap;
}

#bespoke #section-welcome .welcome-vertical-tagline {
  position: absolute;
  top: 50%;
  left: clamp(14px, 1.5vw, 22px);
  width: auto;
  margin: 0;
  color: var(--bespoke-muted) !important;
  font-family: var(--bespoke-editorial);
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-transform: none;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center;
}

#bespoke .bespoke-section-header {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: var(--bespoke-heading-band);
  padding: 0 var(--bespoke-gutter) !important;
  box-sizing: border-box;
}

#bespoke .bespoke-section-heading {
  color: var(--bespoke-ink) !important;
  font-family: var(--bespoke-display);
  font-size: clamp(2.5rem, 3.2vw, 3rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-align: center;
  text-transform: uppercase;
  margin: 0 !important;
}

@media (max-width: 991px) {
  #design-container .title-row:has(.bordered-title) .section-title {
    max-width: 43vw !important;
  }

  #bespoke #section-welcome .welcome-vertical-tagline {
    left: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }
}

@media (max-width: 800px) {
  #bespoke .bespoke-section-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 791px) and (max-width: 1199px) {
  #bespoke #section-lifestyle .lifestyle-slider > .area-item,
  #bespoke #section-featured-areas .featured-area-grid > .area-item {
    --anim-delay: 0s;
  }

  #bespoke #section-lifestyle .lifestyle-slider > .area-item:nth-child(even),
  #bespoke #section-featured-areas .featured-area-grid > .area-item:nth-child(even) {
    --anim-delay: 0.2s;
  }
}

@media (max-width: 790px) {
  .bespoke-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .bespoke-title-row {
    flex-direction: column;
    gap: 20px;
  }

  #bespoke .title-row.title-row-indent {
    padding-left: 1em;
  }

  #bespoke .title-row.title-row-indent-small {
    padding-left: 1em;
  }

  #bespoke .heading--hero {
    max-width: 12ch;
    font-size: clamp(1.9rem, 7.2vw, 2.35rem) !important;
  }

  :root {
    --bespoke-section-space: 44px;
    --bespoke-section-inner-gap: 30px;
    --bespoke-heading-band: 142px;
  }
}

@media (max-width: 560px) {
  #bespoke #section-welcome .welcome-vertical-tagline {
    left: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [class*="fade-"] {
    transition: opacity 0.1s ease-in-out !important;
    animation: none !important;
    transform: none !important;
  }

  .fade-in,
  [class*="fade-"][class$="-active"] {
    opacity: 1;
  }

  #bespoke *,
  #bespoke *::before,
  #bespoke *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/** PLATFORM INTEGRATION: SIERRA AND LOFTY PAGE SHELLS */

/* Production homepage: hide legacy Sierra modules */
body.home > section.home-quick-search,
body.home > div.dark-banner,
body.home > section.featured.padding,
body.home > section.communities.link-effect.dark,
body.home > section.chart.padding.js-chart-listings-stats,
body.home > section.blog.padding {
  display: none !important;
}

/* Keep the About shell, but remove its legacy content */
body.home > section.about > .bg,
body.home > section.about #pageComponent891646 {
  display: none !important;
}

/* Keep the Home shell full width and lift it into Sierra's header space */
body.home > section.about {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin-top: -65px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Remove Sierra's spacer between the custom homepage and footer */
body.home > section.about + div.clearfix {
  display: none !important;
}

body.home > section.about > .box.si-site-container.si-site-container--full {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Hide native Home components until mounted by the Bespoke bridge */
body.home #pageComponent1234483,
body.home #pageComponent1234484,
body.home #pageComponent1234485 {
  display: none !important;
}

/* Reveal Testimonials and Contact after they move into their holders */
body.home #bespoke-testimonials-holder > #pageComponent1234483,
body.home #form-holder > #pageComponent1234485 {
  display: block !important;
}

#page347757 .main-content {
  margin-top: -65px !important;
  padding: 0 !important;
}

#pageComponent1229848,
#pageComponent1229850,
#pageComponent1230012,
#pageComponent1230418 {
  display: none !important;
}

:is(#pageComponent1229851, #pageComponent1234485) > div > h2 {
  display: none !important;
}

@media (max-width: 790px) {
  #page347757 .main-content {
    margin-top: -110px !important;
  }
}


/** HEADER: SIERRA, LOFTY, REDUCED AND PAGE-SCOPED VARIATIONS */

.md-header.standard .header-container .head-menu {
  justify-content: center;
}

#dynamic-menu {
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--bespoke-body);
  font-weight: 300;
}

header.fixed {
  z-index: 1015 !important;
}

header.fixed.dark.dynamic:not(.reduced) {
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: none;
  background: transparent !important;
}

header nav ul li:hover .dropdown {
  text-align: left;
}

header .sub-nav > li > a,
#dynamic-menu li a,
.md-header.standard .header-container .head-menu > .menu-item > a,
.md-header.standard .header-container .head-account > .menu-item > a {
  text-decoration: none;
}

header .sub-nav > li > a {
  font-family: var(--bespoke-body);
  font-weight: 300;
}

#dynamic-menu li a {
  font-family: var(--bespoke-body);
  font-weight: 300;
}

.md-header.standard .header-container .head-menu > .menu-item > a,
.md-header.standard .header-container .head-account > .menu-item > a {
  font-family: var(--bespoke-body);
  font-weight: 300;
}

body.home header.reduced {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

header nav > ul > .logo-centered.dynamic-menu-item::before {
  display: none;
}

header.fixed.dynamic.reduced .logo img,
header.fixed.dynamic.reduced .logo-centered.dynamic-menu-item img {
  max-height: 65px !important;
}

@media (min-width: 1200px) {
  header.dark .logo,
  .md-header.standard .header-container .logo {
    display: none;
  }

  .logo-centered.dynamic-menu-item a {
    text-decoration: none;
  }

  header.dynamic .dynamic-nav-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  header.dynamic .dynamic-nav-container nav {
    order: 2;
    padding-left: 20px;
  }

  header.fixed.dark.dynamic:not(.reduced) {
    padding-top: 0;
  }

  header.dynamic .dynamic-nav-container .sub-nav {
    order: 1;
    align-self: flex-end;
  }

  .fixed.dark.dynamic.reduced .sub-nav {
    display: none;
  }

  header.dynamic.reduced .dynamic-nav-container nav {
    padding-left: 20px;
  }

  header.dynamic.reduced .logo-centered.dynamic-menu-item,
  header.dynamic.reduced .logo-centered.dynamic-menu-item a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header.dynamic.reduced .logo-centered.dynamic-menu-item {
    flex-direction: column;
  }

  header .sub-nav > li {
    height: auto;
    line-height: 40px;
  }

  header .sub-nav > li.lang {
    height: 40px;
  }

  #dynamic-menu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .logo-centered.dynamic-menu-item {
    margin-left: 5vw;
    margin-right: 5vw;
  }

  header.dynamic:not(.reduced) .logo-centered.dynamic-menu-item {
    position: relative;
    top: -20px;
  }

  header nav > ul > li > a {
    font-size: 16px;
  }

  .md-header.standard .header-container .menu-item.menu-item-logo .logo {
    display: flex;
  }

  .md-header.standard .header-container .nav-container {
    flex-direction: column;
  }

  .md-header.standard.transparent .header-container .head-account {
    order: 1;
  }

  .md-header.standard.transparent .header-container .head-menu .menu-item {
    padding-right: 0;
  }

  .md-header.standard.transparent .header-container .head-menu,
  .md-header.standard:not(.transparent) .header-container .head-menu {
    order: 2;
    width: 89%;
    margin: -40px auto 20px;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
  }

  .md-header.standard.transparent .header-container .head-menu .menu-item.menu-item-logo::before {
    top: -16px !important;
    display: none;
  }

  .md-header.standard.transparent .header-container .head-menu .menu-item.menu-item-logo .logo {
    margin-left: auto;
    margin-right: auto;
  }

  .md-header.standard .header-container .head-menu a.uppercase {
    font-size: 1.05vw;
  }

  header.fixed.dynamic:not(.reduced) .logo-centered.dynamic-menu-item {
    top: -10px;
    margin-right: clamp(28px, 4vw, 72px);
    margin-left: clamp(28px, 4vw, 72px);
  }

  header.fixed.dynamic:not(.reduced) .logo-centered.dynamic-menu-item a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: none !important;
  }

  header.fixed.dynamic:not(.reduced) .logo-centered.dynamic-menu-item img {
    width: clamp(220px, 14vw, 280px) !important;
    max-width: none !important;
    height: auto !important;
  }

}

@media (max-width: 1199px) {
  #dynamic-menu {
    display: none !important;
  }

  header.fixed.dark.dynamic:not(.reduced) {
    height: 110px !important;
    min-height: 110px !important;
    padding: 0 !important;
    top: 0 !important;
    background: #292929 !important;
  }
}

@media (max-width: 790px) {
  .logo-centered,
  .md-header.standard .header-container .menu-item.menu-item-logo {
    display: none;
  }

}


/** HERO */

.bespoke-hero-subtitle-hidden {
  display: none !important;
}

.bespoke-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--bespoke-paper);
  background: var(--bespoke-ink);
  place-items: center;
}

.bespoke-hero-media,
.bespoke-hero-poster,
.bespoke-hero-video,
.bespoke-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bespoke-hero-poster {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.bespoke-hero-media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}

.bespoke-hero-media > .embed-responsive,
.bespoke-hero-media > .embed-responsive-16by9 {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  aspect-ratio: auto !important;
}

.bespoke-hero-media > .embed-responsive::before,
.bespoke-hero-media > .embed-responsive-16by9::before {
  display: none !important;
  padding-top: 0 !important;
}

.bespoke-hero-media > .embed-responsive > .bespoke-hero-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
}

.bespoke-hero-video {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.bespoke-hero-overlay {
  background: rgba(5, 6, 6, 0.26);
}

.bespoke-hero-inner {
  position: relative !important;
  z-index: 1 !important;
  display: grid;
  width: 100%;
  min-height: 100svh;
  padding: clamp(110px, 14vh, 180px) var(--bespoke-gutter) clamp(72px, 10vh, 120px);
  place-items: center;
}

.bespoke-hero-copy {
  width: min(100%, 1180px);
  text-align: center;
}

.bespoke-hero-title-line {
  display: block;
}

.bespoke-brand-mark {
  margin: 0 0 clamp(28px, 4.5vh, 56px);
  color: var(--bespoke-paper);
  font-family: var(--bespoke-editorial);
  font-size: clamp(1.5rem, 2.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: normal;
  text-align: center;
  text-transform: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

#bespoke .bespoke-hero-eyebrow {
  margin: 0;
  color: var(--bespoke-paper);
  font-family: var(--bespoke-body);
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

#bespoke .bespoke-hero-accent {
  display: block;
  width: clamp(72px, 7vw, 104px);
  height: 2px;
  margin: 10px auto 14px;
  background: #c52b2f;
}

#bespoke .bespoke-hero .bespoke-brand-mark {
  display: block !important;
  position: static !important;
  float: none !important;
  width: 100% !important;
  margin: 0;
  color: #fff !important;
  font-size: clamp(3rem, 4.5vw, 4rem);
  line-height: 1.03;
  letter-spacing: normal;
  text-align: center !important;
  white-space: nowrap;
  transform: none !important;
}

#bespoke .bespoke-hero-meta {
  color: var(--bespoke-paper);
  font-family: var(--bespoke-body);
  font-size: clamp(0.72rem, 0.9vw, 0.95rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
  margin: clamp(24px, 4vh, 48px) 0 0;
  opacity: 0.84;
}

@media (min-width: 791px) {
  .bespoke-hero-title-line {
    white-space: nowrap;
  }
}

@media (max-width: 790px) {
  .bespoke-hero-poster {
    object-position: center 82% !important;
  }

  .bespoke-hero-heading {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bespoke-hero-inner {
    padding: 112px 24px 72px;
  }

  #bespoke .bespoke-hero-meta {
    letter-spacing: 0.22em;
  }

  .bespoke-brand-mark {
    margin-bottom: 34px;
    font-size: clamp(1.25rem, 7vw, 1.8rem);
    letter-spacing: normal;
  }

  #bespoke .bespoke-hero .bespoke-brand-mark {
    margin: 0;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.03;
    letter-spacing: normal;
  }
}


/** WELCOME / ABOUT US */

#bespoke #section-welcome .photo-holder,
  #bespoke #section-welcome .text-holder {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-self: stretch;
}

#bespoke #section-welcome .photo-holder {
  grid-column: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1em;
}

#bespoke #section-welcome .welcome-photo {
  margin: 0 0 0 auto;
}

#bespoke #section-welcome .welcome-photo img {
  display: block;
  width: 22vw;
  max-height: 65vh;
  margin-left: auto !important;
  margin-right: 0 !important;
  border-radius: 3px;
  object-fit: cover;
  object-position: top;
}

#bespoke #section-welcome .text-holder {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: 1em clamp(18px, 4vw, 72px) 1em 1em;
}

#bespoke #section-welcome .section-subtitle {
  margin: 0;
}

#bespoke #section-welcome .section-title {
  margin: 0 0 24px;
}

#bespoke #design-container #section-welcome .photo-holder img {
  margin-left: auto !important;
  margin-right: 0 !important;
}

#bespoke #section-welcome .title-font,
#bespoke #section-welcome .welcome-copy p,
#bespoke #section-welcome .welcome-bio-panel,
#bespoke #section-welcome .welcome-bio-panel h3 {
  color: var(--bespoke-ink) !important;
}

#bespoke #section-welcome .welcome-copy p,
#bespoke #section-welcome .welcome-bio-panel p {
  font-family: var(--bespoke-body);
  line-height: 1.75;
}

#bespoke #section-welcome .clean-btn {
  color: var(--bespoke-ink) !important;
  border-color: var(--bespoke-ink) !important;
}

#bespoke #section-welcome .subtitle-font {
  margin: 0;
  font-family: var(--bespoke-display);
  font-size: clamp(22px, 1.3vw, 25px) !important;
  font-weight: 100 !important;
  line-height: 1.2 !important;
  letter-spacing: 0;
  text-transform: none !important;
  color: var(--sshn-paper) !important;
}

#bespoke #design-container #section-welcome::before {
  content: none !important;
}

#bespoke #design-container #section-welcome,
#bespoke #design-container #section-welcome * {
  color: var(--sshn-ink) !important;
}

#bespoke #design-container #section-welcome .clean-btn,
#bespoke #design-container #section-welcome .clean-btn:visited {
  border-color: var(--sshn-ink) !important;
  color: var(--sshn-ink) !important;
}

#bespoke #design-container #section-welcome .clean-btn:hover,
#bespoke #design-container #section-welcome .clean-btn:focus-visible {
  border-color: var(--sshn-ink) !important;
  background: var(--sshn-ink) !important;
  color: var(--sshn-paper) !important;
}

#bespoke #section-welcome .welcome-name-line {
  display: inline-block;
  white-space: nowrap;
}

#bespoke #section-welcome .welcome-bio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}

#bespoke #design-container #section-welcome .welcome-bio-trigger {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: auto !important;
  min-width: 0;
  max-width: 100% !important;
  box-sizing: border-box;
  padding: 12px 20px !important;
  border: 1px solid var(--sshn-ink) !important;
  background: var(--sshn-ink) !important;
  color: var(--sshn-paper) !important;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  appearance: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

#bespoke #design-container #section-welcome .welcome-bio-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 220ms ease, margin-top 220ms ease;
}

#bespoke #design-container #section-welcome .welcome-bio-trigger[aria-expanded="true"]::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

#bespoke #design-container #section-welcome .welcome-bio-trigger:hover,
#bespoke #design-container #section-welcome .welcome-bio-trigger:focus-visible,
#bespoke #design-container #section-welcome .welcome-bio-trigger.is-active {
  border-color: var(--sshn-ink) !important;
  background: var(--sshn-paper) !important;
  color: var(--sshn-ink) !important;
  box-shadow: none;
}

#bespoke #section-welcome .welcome-bio-panel[hidden] {
  display: none !important;
}

#bespoke #section-welcome .welcome-supporting-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

#bespoke #section-welcome .welcome-supporting-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

#bespoke #section-welcome .welcome-bio-accordions {
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: none;
}

#bespoke #section-welcome .welcome-bio-panel p {
  max-width: none;
  margin: 0 0 0.85rem;
  font-size: 15px;
  line-height: 1.55;
}

@keyframes welcome-bio-accordion-open {
  from {
  opacity: 0;
  transform: translateY(-6px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
}

#bespoke #section-welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  column-gap: 4vw !important;
  box-sizing: border-box;
  row-gap: 0 !important;
  width: 100%;
  max-width: 100% !important;
  margin-top: 0;
  padding-top: 80px !important;
  padding-right: 0 !important;
  padding-bottom: clamp(36px, 5vw, 80px) !important;
  padding-left: 0 !important;
  background-color: transparent !important;
  background: var(--bespoke-paper) !important;
  color: var(--bespoke-ink) !important;
}

#bespoke #section-welcome .title-font {
  margin: 0;
  font-family: var(--bespoke-display);
  font-size: clamp(42px, 3.2vw, 61px) !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  letter-spacing: 0.2vw;
  text-transform: uppercase !important;
  color: var(--bespoke-ink) !important;
}

#bespoke #section-welcome .welcome-copy p {
  font-size: 18px;
  font-weight: 200;
  margin: 0 0 1rem;
  color: var(--bespoke-ink) !important;
  font-family: var(--bespoke-body);
  line-height: 1.75;
}

#bespoke #section-welcome .welcome-bio-panel {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(270px, 22vw, 390px);
  margin: 0;
  padding: clamp(22px, 2.4vw, 36px);
  border-top: 0;
  background: rgba(255, 255, 255, 0.97);
  pointer-events: auto;
  animation: welcome-bio-accordion-open 260ms ease both;
  color: var(--bespoke-ink) !important;
}

#bespoke #section-welcome .welcome-bio-panel h3 {
  margin: 0 0 16px;
  font-family: var(--bespoke-display) !important;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bespoke-ink) !important;
}

#bespoke #design-container #section-welcome {
  color: var(--sshn-ink) !important;
  grid-template-columns: repeat(2, minmax(0, 675px)) !important;
  align-items: start !important;
  justify-content: center;
  column-gap: clamp(40px, 5vw, 72px) !important;
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding: clamp(70px, 7vw, 100px) 30px !important;
  background: var(--bespoke-paper) !important;
  box-sizing: border-box;
}

#bespoke #design-container #section-welcome .text-holder {
  position: relative;
  grid-column: 1 !important;
  grid-row: 1;
  gap: 18px;
  padding: clamp(16px, 2vw, 30px) 0 clamp(16px, 2vw, 30px) clamp(70px, 6vw, 92px) !important;
}

#bespoke #design-container #section-welcome .photo-holder {
  grid-column: 2 !important;
  grid-row: 1;
  display: block;
  padding: 0 !important;
}

#bespoke #design-container #section-welcome .welcome-photo {
  padding-top: clamp(26px, 2.2vw, 38px);
  box-sizing: border-box;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#bespoke #design-container #section-welcome .welcome-photo::before,
#bespoke #design-container #section-welcome .welcome-photo::after,
#bespoke #design-container #section-welcome .photo-holder::before,
#bespoke #design-container #section-welcome .photo-holder::after {
  content: none !important;
}

#bespoke #design-container #section-welcome .welcome-photo img {
  flex: none !important;
  max-width: 100% !important;
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center top !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#bespoke #section-welcome .welcome-heading {
  margin: 0;
}

#bespoke #section-welcome .welcome-heading .title-font {
  margin: 0 !important;
  font-family: var(--bespoke-display) !important;
  font-size: clamp(2.5rem, 3.2vw, 3.25rem) !important;
  font-weight: 300 !important;
  line-height: 0.98 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

#bespoke #section-welcome .welcome-heading-subtitle {
  margin: 18px 0 4px !important;
  font-family: var(--bespoke-body) !important;
  font-size: clamp(0.72rem, 0.9vw, 0.9rem) !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
}

#bespoke #section-welcome .welcome-bio-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--sshn-ink);
  display: block;
  height: 0;
  min-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: height 600ms cubic-bezier(0.4, 0, 0.2, 1),
  margin-top 600ms cubic-bezier(0.4, 0, 0.2, 1),
  opacity 420ms ease,
  transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height, opacity, transform;
}

#bespoke #section-welcome .welcome-bio-stage.is-open {
  margin-top: 24px;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  #bespoke #design-container #section-welcome {
    align-items: start;
  }

  #bespoke #design-container #section-welcome .photo-holder {
    align-self: start;
    align-items: stretch;
    height: var(--welcome-portrait-height, auto);
  }

  #bespoke #design-container #section-welcome .welcome-photo {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  #bespoke #design-container #section-welcome .welcome-photo img {
    flex: 1 1 auto;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
}

@media (max-width: 700px) {
  #bespoke #section-welcome {
    grid-template-columns: 1fr;
    column-gap: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #bespoke #section-welcome .photo-holder,
      #bespoke #section-welcome .text-holder {
    width: 100%;
    max-width: 100%;
    grid-column: 1;
  }

  #bespoke #section-welcome .text-holder {
    padding: 1em;
  }

  #bespoke #section-welcome .title-font {
    font-size: clamp(38px, 8vw, 56px) !important;
    letter-spacing: 0.1vw;
  }

  #bespoke #section-welcome .subtitle-font {
    font-size: clamp(20px, 4vw, 24px) !important;
  }

  #bespoke #section-welcome .photo-holder {
    justify-content: center;
    align-items: center;
    padding: 1em;
  }

  #bespoke #section-welcome .welcome-photo {
    margin-left: auto;
    margin-right: auto;
  }

  #bespoke #section-welcome .welcome-photo img {
    width: auto;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #bespoke #design-container #section-welcome .photo-holder img {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #bespoke #design-container #section-welcome .photo-holder,
  #bespoke #design-container #section-welcome .text-holder,
  #bespoke #design-container #section-welcome .welcome-photo {
    height: auto;
  }

  #bespoke #design-container #section-welcome .welcome-photo {
    display: block;
  }

  #bespoke #design-container #section-welcome .welcome-photo img {
    height: auto !important;
    object-fit: contain !important;
  }

  #bespoke #design-container #section-welcome {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
    padding: 52px 24px 64px !important;
  }

  #bespoke #design-container #section-welcome .photo-holder {
    grid-column: 1 !important;
    grid-row: 1;
  }

  #bespoke #design-container #section-welcome .text-holder {
    grid-column: 1 !important;
    grid-row: 2;
    padding: 12px 0 0 54px !important;
  }
}

@media (min-width: 701px) and (max-width: 1199px) {
  #bespoke #design-container #section-welcome {
    grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.82fr) !important;
    column-gap: clamp(28px, 4vw, 48px) !important;
    padding: 52px 30px 60px !important;
  }

  #bespoke #design-container #section-welcome .text-holder {
    grid-column: 1 !important;
    grid-row: 1;
    padding: 12px 0 12px 52px !important;
  }

  #bespoke #design-container #section-welcome .photo-holder {
    grid-column: 2 !important;
    grid-row: 1;
    align-self: start;
    padding: 0 !important;
  }

  #bespoke #design-container #section-welcome .welcome-photo,
  #bespoke #design-container #section-welcome .welcome-photo img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  #bespoke #section-welcome .welcome-copy p {
    font-size: clamp(14px, 1.55vw, 17px);
    line-height: 1.65;
  }

  #bespoke #section-welcome .welcome-heading .title-font {
    font-size: clamp(2.2rem, 4.6vw, 3rem) !important;
  }
}

@media (max-width: 790px) {
  #bespoke #section-welcome {
    border-bottom: 1px solid var(--bespoke-rule);
  }

  #bespoke #section-welcome .welcome-bio-stage {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  #bespoke #design-container #section-welcome .welcome-photo {
    width: min(86vw, 440px) !important;
  }

  #bespoke #section-welcome .welcome-bio-actions {
    gap: 20px;
  }

  #bespoke #design-container #section-welcome .welcome-bio-trigger {
    width: auto !important;
  }

  #bespoke #section-welcome .welcome-bio-panel {
    min-height: clamp(340px, 90vw, 460px);
  }

  #bespoke #section-welcome .welcome-bio-stage {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  #bespoke #design-container #section-welcome .text-holder {
    padding-left: 42px !important;
  }

  #bespoke #section-welcome .title-font {
    font-size: clamp(27px, 7.5vw, 32px) !important;
  }

  #bespoke #section-welcome .welcome-heading .title-font {
    font-size: clamp(2.5rem, 10.5vw, 2.8rem) !important;
  }

  #bespoke #section-welcome .welcome-heading-subtitle {
    margin-top: 14px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.18em !important;
  }

  #bespoke #section-welcome .welcome-name-line {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  #bespoke #section-welcome .title-font {
    font-size: clamp(32px, 8vw, 36px) !important;
    letter-spacing: 0.05vw !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #bespoke #section-welcome .welcome-bio-panel,
  #bespoke #section-welcome .welcome-bio-trigger::after {
    animation: none;
    transition: none;
  }
}


/** STATS / PROVEN RESULTS */

#bespoke #proven_results .proven-inner {
  width: min(100%, 1360px);
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

#bespoke #proven_results .proven-heading {
  display: flex;
  align-items: center;
}

#bespoke #proven_results .proven-heading-main,
  #bespoke #proven_results .proven-heading-copy {
  width: 50%;
}

#bespoke #proven_results .proven-heading-main {
  position: relative;
  padding-right: 50px;
}

#bespoke #proven_results .proven-heading-main::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 60%;
  transform: translateY(-50%);
  border-right: 1px solid #fff;
}

#bespoke #proven_results .proven-heading-copy {
  padding-left: 50px;
}

#bespoke #proven_results h4 {
  font-weight: 100;
  font-style: normal;
  margin: 0;
  color: #d8d8d8;
  font-size: 24px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

#bespoke #proven_results h2 {
  font-weight: 400;
  font-style: normal;
  margin: 15px 0 !important;
  color: #fff !important;
  font-size: 70px !important;
  line-height: 1;
  text-align: left;
}

#bespoke #proven_results p {
  margin-bottom: 0;
  color: #fff;
  font-family: var(--bespoke-body);
  font-size: 17px !important;
  font-weight: 300 !important;
  line-height: 1.8 !important;
}

#bespoke #proven_results .stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 62px auto 48px;
  padding: 0;
}

#bespoke #proven_results .stat {
  min-width: 0;
  padding: 0 30px;
  border-right: 1px solid rgba(216, 216, 216, 0.38);
  text-align: center;
}

#bespoke #proven_results .stat:nth-child(4),
  #bespoke #proven_results .stat:last-child {
  border-right: 0;
}

#bespoke #proven_results .rank-stat {
  grid-column: span 1;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(216, 216, 216, 0.38);
}

#bespoke #proven_results .sales-stat {
  grid-column: span 2;
  padding-top: 44px;
}

#bespoke #proven_results .stat-num {
  display: block;
  color: #fff;
  font-family: var(--bespoke-display);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

#bespoke #proven_results .sales-num {
  font-size: clamp(2.6rem, 4.8vw, 4.85rem);
}

#bespoke #proven_results .stat-label {
  display: block;
  max-width: 270px;
  margin: 12px auto 0;
  color: #fff;
  font-family: var(--bespoke-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.45;
  text-transform: uppercase;
}

#bespoke #proven_results .stat-note {
  display: block;
  margin-top: 8px;
  color: #b9cde7;
  font-family: var(--bespoke-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

#bespoke #proven_results .tagline {
  position: absolute;
  right: 50px;
  bottom: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--bespoke-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

#bespoke #proven_results > .tagline {
  position: absolute !important;
  right: 50px !important;
  left: auto !important;
  width: max-content !important;
  max-width: calc(100% - 100px);
  margin: 0 !important;
  text-align: right;
}

#bespoke #proven_results {
  position: relative;
  width: 100%;
  padding: 175px 30px;
  background: radial-gradient(ellipse at center, rgba(42, 84, 134, 0.6) 0%, rgba(9, 15, 22, 0.8) 100%);
  background-color: transparent !important;
}

#bespoke #design-container #proven_results::before {
  content: none !important;
}

#bespoke #design-container #proven_results,
#bespoke #design-container #proven_results * {
  color: var(--bespoke-ink) !important;
}

#bespoke #design-container #proven_results .proven-heading-main::after {
  border-color: rgba(5, 6, 6, 0.24) !important;
}

#bespoke #proven_results .bespoke-stats-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  text-align: center;
}

#bespoke #proven_results .bespoke-stats-heading h2 {
  max-width: none !important;
  margin: 0 !important;
  font-family: var(--bespoke-display) !important;
  font-size: clamp(2rem, 2.8vw, 2.75rem) !important;
  font-weight: 300 !important;
  line-height: 1.08 !important;
  letter-spacing: 0.005em !important;
  text-transform: none !important;
}

#bespoke #proven_results .bespoke-stats-heading p {
  margin: 18px 0 0 !important;
  font-family: var(--bespoke-body) !important;
  font-size: clamp(0.72rem, 0.85vw, 0.9rem) !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.22em !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

#bespoke #proven_results .bespoke-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100% !important;
  min-width: 0;
  padding: 18px clamp(26px, 3vw, 48px) 34px;
  box-sizing: border-box;
  text-align: center;
}

#bespoke #proven_results .bespoke-stat::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 32px;
  transform: translateY(-50%);
  background: rgba(5, 6, 6, 0.2);
}

#bespoke #proven_results .bespoke-stat:last-child::after {
  content: none;
}

#bespoke #proven_results .bespoke-stat-icon {
  width: clamp(24px, 2vw, 30px);
  height: clamp(24px, 2vw, 30px);
  margin: 0 0 18px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.52;
}

#bespoke #proven_results .bespoke-stat .stat-num {
  display: block;
  font-family: var(--bespoke-display);
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

#bespoke #proven_results .bespoke-stat .stat-label {
  display: block;
  max-width: 250px;
  margin: 16px auto 0;
  font-family: var(--bespoke-body);
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#bespoke #design-container #proven_results {
  padding: clamp(82px, 7vw, 110px) 30px 110px !important;
  background: var(--bespoke-paper) !important;
  color: var(--bespoke-ink) !important;
  padding-top: var(--bespoke-section-space) !important;
  padding-bottom: var(--bespoke-section-space) !important;
}

#bespoke #proven_results .bespoke-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  width: min(100%, 1250px);
  min-height: clamp(190px, 16vw, 230px);
  padding: 0;
  list-style: none;
  margin: clamp(46px, 5vw, 68px) auto 48px;
  margin-top: var(--bespoke-section-inner-gap);
  margin-bottom: var(--bespoke-section-inner-gap);
}

#bespoke #proven_results .bespoke-credentials {
  width: min(100%, 1250px);
  margin: 0 auto;
  padding-top: clamp(32px, 3vw, 46px);
  border-top: 1px solid rgba(5, 6, 6, 0.18);
  text-align: center;
}

#bespoke #proven_results .bespoke-credentials h3 {
  margin: 0 0 28px;
  font-family: var(--bespoke-display);
  font-size: clamp(1.65rem, 2.2vw, 2.15rem) !important;
  font-weight: 400 !important;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: none;
}

#bespoke #proven_results .bespoke-credentials-carousel {
  --bespoke-credential-separator-offset: -8px;
  --bespoke-credential-row-height: 118px;
  width: 100%;
  margin: 0 auto;
}

#bespoke #proven_results .bespoke-credentials-swiper {
  width: 100%;
  min-width: 0;
  height: var(--bespoke-credential-row-height) !important;
  min-height: var(--bespoke-credential-row-height) !important;
  max-height: var(--bespoke-credential-row-height) !important;
  overflow: hidden;
}

#bespoke #proven_results .bespoke-credentials-list {
  height: var(--bespoke-credential-row-height) !important;
  min-height: var(--bespoke-credential-row-height) !important;
  max-height: var(--bespoke-credential-row-height) !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

#bespoke #proven_results .bespoke-credentials-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

#bespoke #proven_results .bespoke-credentials-swiper:not(.swiper-initialized) .bespoke-credentials-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

#bespoke #proven_results .bespoke-credential-slide {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--bespoke-credential-row-height) !important;
  min-height: var(--bespoke-credential-row-height) !important;
  max-height: var(--bespoke-credential-row-height) !important;
  padding: 12px clamp(12px, 1.5vw, 24px);
}

#bespoke #proven_results .bespoke-credential-slide::after {
  content: "";
  position: absolute;
  top: 50%;
  right: var(--bespoke-credential-separator-offset);
  width: 1px;
  height: 32px;
  transform: translateY(-50%);
  background: rgba(5, 6, 6, 0.2);
  pointer-events: none;
}

@media (min-width: 480px) {
  #bespoke #proven_results .bespoke-credentials-carousel {
    --bespoke-credential-separator-offset: -10px;
  }
}

@media (min-width: 768px) {
  #bespoke #proven_results .bespoke-credentials-carousel {
    --bespoke-credential-separator-offset: -12px;
  }
}

@media (min-width: 1024px) {
  #bespoke #proven_results .bespoke-credentials-carousel {
    --bespoke-credential-separator-offset: -15px;
  }
}

#bespoke #proven_results .bespoke-credential-slide img {
  display: block;
  width: auto;
  max-width: min(100%, 210px);
  height: auto;
  max-height: 72px !important;
  object-fit: contain;
}

#bespoke #proven_results .bespoke-credential-slide--seal img {
  max-width: 126px;
  max-height: 88px !important;
}

#bespoke #proven_results .bespoke-recognition {
  margin: 34px 0 0;
  font-family: var(--bespoke-body);
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.18em;
  white-space: nowrap;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  #bespoke #proven_results .stats {
    width: 100%;
    justify-items: stretch;
  }

  #bespoke #proven_results .stats > .stat {
    position: relative;
    grid-column: span 1 !important;
    padding-top: 0 !important;
    padding-bottom: 42px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(216, 216, 216, 0.38) !important;
  }

  #bespoke #proven_results .stats > .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: rgba(216, 216, 216, 0.38);
    pointer-events: none;
  }

  #bespoke #proven_results .stats > .stat > * {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #bespoke #proven_results .stats > .stat:nth-child(1) .stat-num {
    transform: translateX(-0.06em);
  }

  #bespoke #proven_results .stats > .stat:nth-child(2) .stat-num {
    transform: translateX(-0.1em);
  }

  #bespoke #proven_results .stats > .stat:nth-child(3) .stat-num {
    transform: translateX(-0.025em);
  }

  #bespoke #proven_results .tagline {
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  #bespoke #proven_results {
    padding: 88px 30px 140px;
  }

  #bespoke #proven_results .proven-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  #bespoke #proven_results .proven-heading-main,
      #bespoke #proven_results .proven-heading-copy {
    width: 100%;
  }

  #bespoke #proven_results .proven-heading-main {
    padding-right: 0;
  }

  #bespoke #proven_results .proven-heading-main::after {
    display: none;
  }

  #bespoke #proven_results .proven-heading-copy {
    padding-left: 0;
    margin-top: 18px;
  }

  #bespoke #proven_results h2 {
    font-size: clamp(46px, 6vw, 60px) !important;
  }

  #bespoke #proven_results .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 52px;
  }

  #bespoke #proven_results .stat {
    margin-bottom: 0;
  }

  #bespoke #proven_results .rank-stat,
      #bespoke #proven_results .sales-stat {
    grid-column: span 1;
    padding-top: 0;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(216, 216, 216, 0.38);
  }

  #bespoke #proven_results .stat:nth-child(odd) {
    border-right: 1px solid rgba(216, 216, 216, 0.38);
  }

  #bespoke #proven_results .stat:nth-child(even) {
    border-right: 0;
  }

  #bespoke #proven_results .stat:nth-last-child(-n + 2) {
    padding-top: 34px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  #bespoke #proven_results .stat-num {
    font-size: clamp(3.6rem, 7vw, 4.4rem);
  }

  #bespoke #proven_results .sales-num {
    font-size: clamp(2.35rem, 6vw, 3.65rem);
  }

  #bespoke #proven_results .bespoke-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #bespoke #proven_results .bespoke-stat {
    min-height: 220px;
  }

  #bespoke #proven_results .bespoke-stat:nth-child(2n)::after {
    content: none;
  }

  #bespoke #proven_results .bespoke-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(5, 6, 6, 0.16);
  }
}

@media (max-width: 790px) {
  #bespoke #proven_results {
    padding: 60px 24px 150px;
  }

  #bespoke #proven_results .proven-heading-main,
      #bespoke #proven_results .proven-heading-copy {
    margin-left: auto;
    margin-right: auto;
  }

  #bespoke #proven_results .proven-heading-main {
    padding-left: 0;
  }

  #bespoke #proven_results .proven-heading-copy {
    margin-top: 0;
  }

  #bespoke #proven_results h4,
      #bespoke #proven_results h2 {
    text-align: center;
  }

  #bespoke #proven_results h2 {
    margin: 15px auto !important;
    font-size: 2.5rem !important;
  }

  #bespoke #proven_results p {
    font-size: 16px !important;
    text-align: center;
  }

  #bespoke #proven_results .stats {
    grid-template-columns: 1fr;
    margin: 36px auto 30px;
  }

  #bespoke #proven_results .stat,
      #bespoke #proven_results .rank-stat,
      #bespoke #proven_results .sales-stat,
      #bespoke #proven_results .stat:nth-child(odd),
      #bespoke #proven_results .stat:nth-child(even),
      #bespoke #proven_results .stat:nth-last-child(-n + 2) {
    margin-bottom: 26px;
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 216, 216, 0.38);
  }

  #bespoke #proven_results .stat:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  #bespoke #proven_results .stat-num {
    font-size: 4rem;
  }

  #bespoke #proven_results .sales-num {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  #bespoke #proven_results .stat-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  #bespoke #proven_results .tagline {
    right: 0;
    bottom: 50px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #bespoke #design-container #proven_results {
    padding: var(--bespoke-section-space) 24px !important;
  }
}

@media (max-width: 767px) {
  #bespoke #proven_results {
    padding-bottom: 220px !important;
  }

  #bespoke #proven_results > .tagline {
    position: absolute !important;
    right: 24px !important;
    left: 24px !important;
    width: auto !important;
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 599px) {
  #bespoke #proven_results .bespoke-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  #bespoke #proven_results .bespoke-stat {
    min-height: 170px;
    padding: 20px 12px;
    border-bottom: 1px solid rgba(5, 6, 6, 0.16);
  }

  #bespoke #proven_results .bespoke-stat::after {
    content: "";
    height: 42px;
  }

  #bespoke #proven_results .bespoke-stat:nth-child(2n)::after,
  #bespoke #proven_results .bespoke-stat:last-child::after {
    content: none;
  }

  #bespoke #proven_results .bespoke-stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  #bespoke #proven_results .bespoke-stat .stat-num {
    font-size: clamp(2.65rem, 13vw, 3.35rem);
  }

  #bespoke #proven_results .bespoke-stat .stat-label {
    margin-top: 12px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  #bespoke #proven_results .bespoke-stat:last-child {
    border-bottom: 0;
  }

  #bespoke #proven_results .bespoke-credentials {
    padding-top: 34px;
  }

  #bespoke #proven_results .bespoke-credentials h3 {
    margin-bottom: 24px;
    font-size: 1.55rem !important;
  }

  #bespoke #proven_results .bespoke-credentials-carousel {
    --bespoke-credential-row-height: 96px;
  }

  #bespoke #proven_results .bespoke-credentials-swiper:not(.swiper-initialized) .bespoke-credentials-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #bespoke #proven_results .bespoke-credential-slide {
    padding: 10px;
  }

  #bespoke #proven_results .bespoke-credential-slide img {
    max-width: min(100%, 145px);
    max-height: 56px !important;
  }

  #bespoke #proven_results .bespoke-credential-slide--seal img {
    max-width: 92px;
    max-height: 70px !important;
  }

  #bespoke #proven_results .bespoke-credential-slide::after {
    height: 28px;
  }

  #bespoke #proven_results .bespoke-recognition {
    margin-top: 24px;
    font-size: clamp(0.56rem, 2.65vw, 0.68rem);
    letter-spacing: clamp(0.08em, 0.32vw, 0.12em);
  }

  #bespoke #design-container #proven_results {
    padding: var(--bespoke-section-space) 24px !important;
  }
}


/** EXPLORE BY LIFESTYLE */

#bespoke #section-lifestyle .section-subtitle h3,
  #bespoke #section-lifestyle .section-title h2 {
  margin: 0;
  color: #fff;
  letter-spacing: 0;
}

#bespoke #section-lifestyle .lifestyle-slider {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 100% !important;
  margin: 0;
  padding: 0;
}

#bespoke #section-lifestyle .lifestyle-slider .area-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 15px) !important;
  overflow: hidden;
}

#bespoke #section-lifestyle .lifestyle-slider .area-item .area-item-image,
  #bespoke #section-lifestyle .lifestyle-slider .area-item .area-item-image a {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

#bespoke #section-lifestyle .lifestyle-slider .area-item .area-item-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0);
  transform: none;
  transition: filter 0.5s ease;
  will-change: filter;
}

#bespoke #section-lifestyle .area-item-title a.area-title-no-wrap {
  white-space: nowrap;
}

#bespoke #section-lifestyle .area-item-title h3:has(a[href*="condo"]),
  #bespoke #section-lifestyle .area-item-title h3:has(a[href*="queens"]) {
  white-space: nowrap;
}

#bespoke #section-lifestyle .section-subtitle h3 {
  font-family: var(--bespoke-display);
  letter-spacing: 0;
  font-size: 1.2vw;
  font-weight: 200 !important;
  text-transform: uppercase;
  color: var(--sshn-paper) !important;
}

#bespoke #section-lifestyle .section-title h2 {
  margin-top: 12px;
  font-family: var(--bespoke-body);
  font-size: 2.2vw;
  font-weight: 400;
  line-height: 1.2;
  color: var(--sshn-paper) !important;
}

#bespoke #section-lifestyle .area-item {
  position: relative;
  isolation: isolate;
}

#bespoke #section-lifestyle .area-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transition: background-color 1s ease-out;
}

#bespoke #section-lifestyle .area-item:hover::before,
#bespoke #section-lifestyle .area-item:focus-within::before {
  background-color: rgba(0, 0, 0, 0.1);
}

#bespoke #section-lifestyle .area-item:hover .area-item-image img,
#bespoke #section-lifestyle .area-item:focus-within .area-item-image img {
  filter: grayscale(1) !important;
  transform: none !important;
}

#bespoke #section-lifestyle .area-item-title {
  position: absolute;
  width: 100%;
  top: 50% !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  padding: 10px 0 !important;
  background: transparent !important;
  text-align: center !important;
  z-index: 2 !important;
  pointer-events: none;
}

#bespoke #section-lifestyle .area-item-title a {
  display: inline-block;
  max-width: 100%;
  color: #fff;
  text-decoration: none;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
  font-family: var(--bespoke-display);
  font-size: 2.6rem !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
  pointer-events: auto;
}

#bespoke #section-lifestyle {
  width: 100%;
  max-width: 100%;
  padding: 0 !important;
  position: relative;
  isolation: isolate;
  background: var(--sshn-ink-glass-light) !important;
  color: var(--sshn-paper) !important;
  background-color: transparent !important;
}

#bespoke #section-lifestyle .title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(92%, 1180px);
  margin: 0 auto 40px;
  text-align: center;
  padding-top: 1em !important;
}

#bespoke #section-lifestyle .area-item-title h3 {
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  font-family: var(--bespoke-display);
  font-size: 2.6rem !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

#bespoke #section-lifestyle .area-item-title h3,
#bespoke #section-lifestyle .area-item-title a {
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: balance;
}

#bespoke #design-container #section-lifestyle::before {
  content: none !important;
}

#bespoke #design-container #section-lifestyle {
  width: 100% !important;
  max-width: none !important;
  margin-top: 0 !important;
  padding: 0 !important;
  background: var(--bespoke-paper) !important;
  color: var(--bespoke-ink) !important;
}

#bespoke #section-lifestyle .featured-area-holder-lifestyles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 !important;
  max-width: 100% !important;
  width: 1650px !important;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 0 !important;
  box-sizing: border-box;
}

#bespoke #section-lifestyle .bespoke-lifestyle-header {
  min-height: 148px;
}

@media (min-width: 1101px) {
  #bespoke #section-lifestyle .area-item-image {
    height: 500px !important;
    aspect-ratio: auto !important;
  }

  #bespoke #section-lifestyle .area-item-image a {
    height: 500px !important;
    aspect-ratio: auto !important;
  }

  #bespoke #section-lifestyle .lifestyle-slider {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
  }

  #bespoke #section-lifestyle .lifestyle-slider .area-item {
    width: auto !important;
    min-width: 0;
    grid-column: span 3;
  }

  #bespoke #section-lifestyle .lifestyle-slider .area-item:nth-child(-n + 3) {
    grid-column: span 4;
  }
}

@media (min-width: 791px) and (max-width: 991px) {
  #bespoke #section-lifestyle .area-item-image,
  #bespoke #section-lifestyle .area-item-image a {
    height: clamp(290px, 36vw, 360px) !important;
    aspect-ratio: auto !important;
  }
}

@media (min-width: 791px) and (max-width: 1100px) {
  #bespoke #section-lifestyle .lifestyle-slider {
    justify-content: center;
  }
}

@media (min-width: 992px) and (max-width: 1100px) {
  #bespoke #section-lifestyle .area-item-image {
    height: clamp(320px, 34vw, 390px) !important;
    aspect-ratio: auto !important;
  }

  #bespoke #section-lifestyle .area-item-image a {
    height: clamp(320px, 34vw, 390px) !important;
    aspect-ratio: auto !important;
  }
}

@media (max-width: 1100px) {
  #bespoke #section-lifestyle .lifestyle-slider .area-item {
    width: calc(50% - 10px) !important;
  }
}

@media (max-width: 790px) {
  #bespoke #section-lifestyle {
    margin-top: 0;
    padding-top: 0 !important;
  }

  #bespoke #section-lifestyle .title-row {
    width: calc(100% - 60px);
    margin-bottom: 32px;
    padding-top: 0;
  }

  #bespoke #section-lifestyle .section-subtitle h3 {
    font-size: 3.8vw;
  }

  #bespoke #section-lifestyle .section-title h2 {
    margin-top: 8px;
    font-size: 5vw;
  }

  #bespoke #section-lifestyle .lifestyle-slider {
    flex-direction: column !important;
    gap: 2px;
  }

  #bespoke #section-lifestyle .lifestyle-slider .area-item {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  #bespoke #section-lifestyle .lifestyle-slider .area-item .area-item-image,
      #bespoke #section-lifestyle .lifestyle-slider .area-item .area-item-image a {
    aspect-ratio: 16 / 10;
  }

  #bespoke #section-lifestyle .area-item-image {
    height: 500px !important;
    aspect-ratio: auto !important;
  }

  #bespoke #section-lifestyle .area-item-image a {
    height: 500px !important;
    aspect-ratio: auto !important;
  }

  #bespoke #design-container #section-lifestyle {
    padding: 0 !important;
  }

  #bespoke #section-lifestyle .featured-area-holder-lifestyles {
    width: 100%;
    padding-bottom: 0 !important;
  }

  #bespoke #section-lifestyle .bespoke-lifestyle-header {
    min-height: 132px;
  }
}


/** SEARCH BY AREA */

#bespoke #section-featured-areas .featured-area-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: 100% !important;
  width: 1650px;
  margin: 0 auto;
  padding: 0;
}

#bespoke #section-featured-areas .featured-area-grid.area-remainder-1 > .area-item:last-child {
  grid-column: 1 / -1;
}

#bespoke #section-featured-areas .featured-area-grid.area-remainder-1 > .area-item:last-child .area-item-image,
    #bespoke #section-featured-areas .featured-area-grid.area-remainder-1 > .area-item:last-child .area-item-image a {
  aspect-ratio: 16 / 6;
}

#bespoke #section-featured-areas .featured-area-grid:has(> .area-item:nth-last-child(1):nth-child(3n + 1)) > .area-item:last-child {
  grid-column: 1 / -1;
}

#bespoke #section-featured-areas .featured-area-grid:has(> .area-item:nth-last-child(1):nth-child(3n + 1)) > .area-item:last-child .area-item-image,
    #bespoke #section-featured-areas .featured-area-grid:has(> .area-item:nth-last-child(1):nth-child(3n + 1)) > .area-item:last-child .area-item-image a {
  aspect-ratio: 16 / 6;
}

#bespoke #section-featured-areas .featured-area-grid.area-remainder-2 > .area-item:nth-last-child(-n + 2) {
  grid-column: span 3;
}

#bespoke #section-featured-areas .featured-area-grid:has(> .area-item:nth-last-child(2):nth-child(3n + 1)) > .area-item:nth-last-child(-n + 2) {
  grid-column: span 3;
}

#bespoke #section-featured-areas .area-item-image,
  #bespoke #section-featured-areas .area-item-image a {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

#bespoke #section-featured-areas .area-item-title a.area-title-no-wrap {
  white-space: nowrap;
}

#bespoke #section-featured-areas .area-item-title h3:has(a[href*="condo"]),
  #bespoke #section-featured-areas .area-item-title h3:has(a[href*="queens"]) {
  white-space: nowrap;
}

#bespoke #section-featured-areas .section-subtitle h3,
  #bespoke #section-featured-areas .section-title h2 {
  margin: 0;
  letter-spacing: 0;
  color: var(--bespoke-ink) !important;
}

#bespoke #section-featured-areas .title-row {
  width: 90%;
  max-width: none;
  margin: 0 auto 70px;
  padding-inline: var(--bespoke-gutter) !important;
}

#bespoke #section-featured-areas .area-item-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0);
  transform: scale(1) !important;
  transition: filter 0.5s ease !important;
  will-change: filter;
}

#bespoke #section-featured-areas .area-item {
  grid-column: span 2;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

#bespoke #section-featured-areas .area-item::before {
  background: rgba(0, 0, 0, 0.1) !important;
  transition: background-color 650ms ease !important;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#bespoke #section-featured-areas .area-item:hover::before,
#bespoke #section-featured-areas .area-item:focus-within::before {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

#bespoke #section-featured-areas .area-item:hover .area-item-image img,
#bespoke #section-featured-areas .area-item:focus-within .area-item-image img {
  filter: grayscale(1) !important;
  transform: none !important;
}

#bespoke #section-featured-areas .area-item-title {
  position: absolute;
  width: 100%;
  top: 50% !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  padding: 10px clamp(18px, 3vw, 42px) !important;
  background: transparent !important;
  text-align: center !important;
  z-index: 2 !important;
  pointer-events: none;
}

#bespoke #section-featured-areas .area-item-title h3 {
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  font-family: var(--bespoke-display);
  font-size: 2.6rem !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

#bespoke #section-featured-areas .area-item-title a {
  display: inline-block;
  max-width: 100%;
  color: #fff;
  text-decoration: none;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
  font-family: var(--bespoke-display);
  font-size: 2.6rem !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
  pointer-events: auto;
}

#bespoke #design-container #section-featured-areas::before {
  content: none !important;
}

#bespoke #design-container #section-featured-areas .section-subtitle h3,
#bespoke #design-container #section-featured-areas .section-title h2 {
  color: var(--sshn-ink) !important;
}

#bespoke #design-container #section-featured-areas .bordered-title h3::before {
  background: var(--sshn-ink) !important;
}

#bespoke #design-container #section-featured-areas .area-item-title {
  top: 50% !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  padding: 10px clamp(18px, 3vw, 42px) !important;
  text-align: center !important;
  z-index: 2 !important;
  pointer-events: none;
  background: transparent !important;
}

#bespoke #design-container #section-featured-areas .area-item-title,
#bespoke #design-container #section-featured-areas .area-item-title * {
  color: var(--sshn-paper) !important;
}

#bespoke #section-featured-areas {
  width: 100%;
  padding-top: 40px;
  position: relative;
  isolation: isolate;
  background-color: transparent !important;
  background: var(--bespoke-paper) !important;
  color: var(--bespoke-ink) !important;
}

#bespoke #section-featured-areas .section-subtitle h3 {
  font-family: var(--bespoke-display);
  letter-spacing: 0;
  font-size: 1.5rem;
  font-weight: 300 !important;
  color: var(--bespoke-ink) !important;
}

#bespoke #section-featured-areas .section-title h2 {
  max-width: 23vw;
  margin-top: 18px;
  font-family: var(--bespoke-body);
  font-size: 2.1vw;
  font-weight: 400;
  line-height: 2.7rem;
  color: var(--bespoke-ink) !important;
}

#bespoke #design-container #section-featured-areas {
  background: var(--sshn-paper) !important;
  color: var(--sshn-ink) !important;
  padding: 0 0 clamp(56px, 5vw, 80px) !important;
}

#bespoke #section-featured-areas .featured-area-holder {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100% !important;
  width: 1650px !important;
  margin-right: auto;
  margin-left: auto;
  padding: 0 !important;
  padding-bottom: 0 !important;
  box-sizing: border-box;
}

#bespoke #section-featured-areas .bespoke-areas-header {
  min-height: 148px;
}

@media (min-width: 1101px) {
  #bespoke #section-featured-areas .area-item-image {
    height: 500px !important;
    aspect-ratio: auto !important;
  }

  #bespoke #section-featured-areas .area-item-image a {
    height: 500px !important;
    aspect-ratio: auto !important;
  }

  #bespoke #section-featured-areas .featured-area-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  #bespoke #section-featured-areas .featured-area-grid > .area-item {
    grid-column: span 4 !important;
  }
}

@media (min-width: 791px) and (max-width: 991px) {
  #bespoke #section-featured-areas .area-item-image,
  #bespoke #section-featured-areas .area-item-image a {
    height: clamp(500px, 66vw, 620px) !important;
    aspect-ratio: auto !important;
  }
}

@media (min-width: 992px) and (max-width: 1100px) {
  #bespoke #section-featured-areas .area-item-image {
    height: clamp(320px, 34vw, 390px) !important;
    aspect-ratio: auto !important;
  }

  #bespoke #section-featured-areas .area-item-image a {
    height: clamp(320px, 34vw, 390px) !important;
    aspect-ratio: auto !important;
  }
}

@media (max-width: 1100px) {
  #bespoke #section-featured-areas .featured-area-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #bespoke #section-featured-areas .area-item,
    #bespoke #section-featured-areas .featured-area-grid.area-remainder-2 > .area-item:nth-last-child(-n + 2) {
    grid-column: span 2;
  }

  #bespoke #section-featured-areas .featured-area-grid > .area-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  #bespoke #section-featured-areas .featured-area-grid > .area-item:last-child:nth-child(odd) .area-item-image,
      #bespoke #section-featured-areas .featured-area-grid > .area-item:last-child:nth-child(odd) .area-item-image a {
    aspect-ratio: 16 / 6;
  }
}

@media (max-width: 991px) {
  #bespoke #section-featured-areas .featured-area-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 2px;
  }

  #bespoke #section-featured-areas .area-item,
    #bespoke #section-featured-areas .featured-area-grid.area-remainder-1 > .area-item:last-child,
    #bespoke #section-featured-areas .featured-area-grid.area-remainder-2 > .area-item:nth-last-child(-n + 2),
    #bespoke #section-featured-areas .featured-area-grid > .area-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  #bespoke #section-featured-areas .area-item-image,
    #bespoke #section-featured-areas .area-item-image a,
    #bespoke #section-featured-areas .featured-area-grid.area-remainder-1 > .area-item:last-child .area-item-image,
    #bespoke #section-featured-areas .featured-area-grid.area-remainder-1 > .area-item:last-child .area-item-image a,
    #bespoke #section-featured-areas .featured-area-grid > .area-item:last-child:nth-child(odd) .area-item-image,
    #bespoke #section-featured-areas .featured-area-grid > .area-item:last-child:nth-child(odd) .area-item-image a {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 790px) {
  #bespoke #section-featured-areas {
    padding-top: 0;
  }

  #bespoke #section-featured-areas .title-row {
    width: calc(100% - 60px);
    margin-bottom: 44px;
  }

  #bespoke #section-featured-areas .section-title h2 {
    max-width: 100%;
    font-size: 5vw;
    line-height: 1.2;
  }

  #bespoke #section-featured-areas .area-item-image,
      #bespoke #section-featured-areas .area-item-image a,
      #bespoke #section-featured-areas .featured-area-grid.area-remainder-1 > .area-item:last-child .area-item-image,
      #bespoke #section-featured-areas .featured-area-grid.area-remainder-1 > .area-item:last-child .area-item-image a,
      #bespoke #section-featured-areas .featured-area-grid > .area-item:last-child:nth-child(odd) .area-item-image,
      #bespoke #section-featured-areas .featured-area-grid > .area-item:last-child:nth-child(odd) .area-item-image a {
    aspect-ratio: 16 / 10;
  }

  #bespoke #section-featured-areas .area-item-image {
    height: 500px !important;
    aspect-ratio: auto !important;
  }

  #bespoke #section-featured-areas .area-item-image a {
    height: 500px !important;
    aspect-ratio: auto !important;
  }

  #bespoke #design-container #section-featured-areas {
    padding: 0 0 40px !important;
  }

  #bespoke #section-featured-areas .featured-area-holder {
    padding-bottom: 0 !important;
  }

  #bespoke #section-featured-areas .bespoke-areas-header {
    min-height: 132px;
  }

  #bespoke #section-featured-areas .featured-area-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 2px;
  }

  #bespoke #section-featured-areas .area-item,
      #bespoke #section-featured-areas .featured-area-grid.area-remainder-1 > .area-item:last-child,
      #bespoke #section-featured-areas .featured-area-grid.area-remainder-2 > .area-item:nth-last-child(-n + 2),
      #bespoke #section-featured-areas .featured-area-grid > .area-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100% !important;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #bespoke #section-featured-areas .area-item-image img,
  #bespoke #section-featured-areas .area-item::before {
    transition: none !important;
  }
}


/** BUYERS / SELLERS */

#bespoke #section-buyers-sellers::after {
  display: none !important;
}

#bespoke #section-buyers-sellers .section-title {
  width: 100%;
}

#bespoke #section-buyers-sellers h2,
  #bespoke #section-buyers-sellers h3 {
  margin: 0;
  color: #fff;
  font-weight: 100 !important;
  letter-spacing: 0.01vw;
}

#bespoke #section-buyers-sellers h2 {
  margin-bottom: 0;
  font-family: var(--bespoke-display);
  font-size: 4vw !important;
  font-weight: 400 !important;
  line-height: 1.05;
}

#bespoke #section-buyers-sellers h3 {
  margin-top: 5px;
  margin-bottom: 0;
  font-family: var(--bespoke-display);
  font-size: clamp(18px, 1.3vw, 26px) !important;
  font-weight: 300 !important;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

#bespoke #section-buyers-sellers .clean-btn-area {
  margin-top: 24px;
}

#bespoke #section-buyers-sellers .buyer-seller-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: clamp(360px, 27vw, 510px);
  padding: 6vw;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  background-color: var(--sshn-ink-glass-soft) !important;
}

#bespoke #section-buyers-sellers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 12vw);
  width: 100%;
  max-width: none !important;
  margin-left: auto;
  margin-right: auto;
  padding: 12vw 10vw !important;
  background: transparent !important;
  background-color: transparent !important;
}

#bespoke #design-container .bespoke-page-inner > #section-buyers-sellers.bespoke-buyers-sellers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 !important;
  min-height: clamp(620px, 52vw, 760px);
  padding: 0 !important;
  overflow: hidden;
  background-color: var(--bespoke-ink) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

#bespoke #design-container .bespoke-page-inner > #section-buyers-sellers.bespoke-buyers-sellers::before {
  content: "" !important;
  background: rgba(5, 6, 6, 0.22) !important;
}

#bespoke #design-container #section-buyers-sellers .buyer-seller-card {
  min-height: inherit;
  padding: clamp(48px, 6vw, 96px);
  border: 0;
  border-radius: 0;
  background: rgba(5, 6, 6, 0.16) !important;
  box-sizing: border-box;
  -webkit-backdrop-filter: grayscale(0) brightness(1);
  backdrop-filter: grayscale(0) brightness(1);
  transition: background-color 650ms ease,
  -webkit-backdrop-filter 650ms ease,
  backdrop-filter 650ms ease;
}

#bespoke #design-container #section-buyers-sellers .buyer-seller-card:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

#bespoke #design-container #section-buyers-sellers .buyer-seller-card:hover,
#bespoke #design-container #section-buyers-sellers .buyer-seller-card:focus-within {
  background: rgba(5, 6, 6, 0.34) !important;
  -webkit-backdrop-filter: grayscale(1) brightness(0.78);
  backdrop-filter: grayscale(1) brightness(0.78);
}

#bespoke #design-container #section-buyers-sellers h2.heading {
  font-family: var(--bespoke-display) !important;
  font-size: clamp(3rem, 4.4vw, 4rem) !important;
  font-weight: 300 !important;
  line-height: 0.95 !important;
  letter-spacing: 0.015em !important;
  text-transform: none !important;
}

#bespoke #design-container #section-buyers-sellers h3 {
  font-family: var(--bespoke-body);
  font-size: clamp(0.78rem, 1vw, 0.95rem) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.18em !important;
}

#bespoke #design-container #section-buyers-sellers .buyer-seller-copy {
  max-width: 42ch;
  margin: 22px auto 0;
  color: var(--bespoke-paper);
  font-family: var(--bespoke-body);
  font-size: 17px;
  font-weight: 300 !important;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-align: center;
  text-wrap: balance;
}

#bespoke #design-container #section-buyers-sellers .clean-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 0;
  max-width: 100% !important;
  box-sizing: border-box;
  padding: 12px 20px !important;
  border: 1px solid var(--bespoke-paper) !important;
  background: transparent !important;
  color: var(--bespoke-paper) !important;
  font-family: var(--bespoke-body);
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

#bespoke #design-container #section-buyers-sellers .clean-btn:hover,
#bespoke #design-container #section-buyers-sellers .clean-btn:focus-visible {
  border-color: var(--bespoke-paper) !important;
  background: var(--bespoke-paper) !important;
  color: var(--bespoke-ink) !important;
}

@media (max-width: 991px) {
  #bespoke #section-buyers-sellers {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 10vw 6vw !important;
  }

  #bespoke #section-buyers-sellers .buyer-seller-card {
    min-height: clamp(320px, 42vw, 460px);
    padding: 8vw 6vw;
  }
}

@media (max-width: 790px) {
  #bespoke #section-buyers-sellers {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 12vw 30px !important;
  }

  #bespoke #section-buyers-sellers .buyer-seller-card {
    min-height: 300px;
    padding: 12vw 6vw;
  }

  #bespoke #section-buyers-sellers h2 {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 12vw !important;
  }

  #bespoke #section-buyers-sellers h3 {
    margin-top: 5px;
    font-size: 5.2vw !important;
  }

  #bespoke #design-container .bespoke-page-inner > #section-buyers-sellers.bespoke-buyers-sellers {
    grid-template-columns: 1fr;
    min-height: 0;
    background-position: 46% center !important;
  }

  #bespoke #design-container #section-buyers-sellers .buyer-seller-card {
    min-height: 360px;
    padding: 54px 24px;
  }

  #bespoke #design-container #section-buyers-sellers .buyer-seller-card:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  #bespoke #design-container #section-buyers-sellers .buyer-seller-card {
    transition: none;
  }
}


/** FEATURED LISTINGS */

#pageComponent874047,
#bespoke section.featured:not(.bespoke-featured-built) {
  display: none !important;
}

#bespoke #section-featured-listings .section-subtitle h3,
  #bespoke #section-featured-listings .section-title h2 {
  margin: 0;
  color: #fff;
  letter-spacing: 0;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .featured-gallery {
  position: relative !important;
  width: 92.8% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .gallery {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  border-radius: 0 !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: visible !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap.swiper-slide {
  display: block !important;
  height: auto !important;
  float: none !important;
  box-sizing: border-box !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .item {
  position: relative !important;
  width: calc(100% - 12px) !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
  border: none !important;
  border-radius: 3px !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .link-cover {
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  cursor: pointer !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .link-cover:focus-visible {
  outline: 2px solid #fff !important;
  outline-offset: -4px !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .img {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .img .photo {
  position: relative !important;
  display: block !important;
  aspect-ratio: 5 / 4;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .img .photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
  filter: grayscale(0);
  transition: transform 0.5s ease, filter 0.5s ease !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap:hover .img .photo img,
#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap:focus-within .img .photo img {
  filter: grayscale(1);
  transform: scale(1.05) !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .caption {
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
  background: rgba(0, 0, 0, 0.08) !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .caption p {
  position: static !important;
  inset: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  color: #fff !important;
  font-family: var(--bespoke-body);
  font-size: 1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .caption::before,
  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .caption::after,
  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .caption p::before,
  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .caption p::after {
  display: none !important;
  content: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 5 !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 12px 24px !important;
  color: #fff !important;
  text-transform: uppercase !important;
  background: rgba(19, 19, 19, 0.55) !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-1 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  width: 100% !important;
  padding: 0 !important;
  border: none !important;
  min-width: 0 !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .price {
  flex: 0 0 auto !important;
  padding: 0 !important;
  color: #fff !important;
  white-space: nowrap !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-2 {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: auto !important;
  padding: 0 !important;
  border: none !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-2 .col-xs-4 {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  width: auto !important;
  padding: 0 10px 0 0 !important;
  color: #fff !important;
  border-right: 1px solid rgba(255, 255, 255, 0.45) !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-2 .col-xs-4:last-child {
  padding-right: 0 !important;
  border-right: none !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .city {
  flex: 1 1 auto !important;
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #fff !important;
  text-align: right !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .city .line {
  display: inline !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .city .line + .line::before {
  content: ", ";
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-3 {
  display: none !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info,
  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info * {
  font-family: var(--bespoke-body);
  font-size: 0.72vw !important;
  line-height: 1.2 !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .view-all {
  display: block !important;
  margin-top: 38px !important;
  text-align: center !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .btn-effect {
  display: inline-block !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls {
  position: absolute !important;
  top: 43% !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 100% !important;
  pointer-events: none !important;
  transform: translateY(-50%) !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  color: #fff !important;
  position: relative !important;
  z-index: 1000 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  cursor: pointer !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button svg,
  #bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button svg path {
  color: #fff !important;
  stroke: #fff !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-prev {
  transform: translateX(-42px) !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-next {
  transform: translateX(30px) !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button:hover {
  background: rgba(0, 0, 0, 0.65) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .swiper-pagination {
  display: none !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .swiper-pagination-bullet {
  display: none !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .swiper-pagination-bullet-active {
  display: none !important;
}

#bespoke #section-featured-listings .section-subtitle h3 {
  font-family: var(--bespoke-display);
  letter-spacing: 0;
  font-size: 1.5rem;
  font-weight: 300 !important;
  color: var(--sshn-paper) !important;
}

#bespoke #section-featured-listings .section-title h2 {
  max-width: 23vw;
  margin-top: 18px;
  margin-bottom: 0;
  font-family: var(--bespoke-body);
  font-size: 2.1vw;
  font-weight: 400;
  line-height: 2.7rem;
  color: var(--sshn-paper) !important;
}

#bespoke #section-featured-listings {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-top: 80px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 32px;
  background: var(--sshn-ink-glass) !important;
  color: var(--sshn-paper) !important;
  background-color: transparent !important;
}

#bespoke #design-container #section-featured-listings::before {
  content: none !important;
}

#bespoke #design-container #section-featured-listings,
#bespoke #design-container #section-featured-listings * {
  color: var(--sshn-ink) !important;
}

#bespoke #section-featured-listings .title-row {
  width: 82%;
  max-width: none;
  margin: 0 0 clamp(76px, 5vw, 100px);
  margin-bottom: 18px !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .img .photo {
  aspect-ratio: 3 / 2 !important;
}

#bespoke #section-featured-listings #featured-holder .item-wrap .caption {
  display: none !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  padding: clamp(18px, 1.8vw, 28px) !important;
  color: var(--sshn-paper) !important;
  text-transform: none !important;
  background: rgba(5, 6, 6, 0.2) !important;
  box-shadow: 0 -12px 34px rgba(5, 6, 6, 0.12);
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info,
#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info * {
  color: var(--sshn-paper) !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-1 {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start !important;
  column-gap: clamp(18px, 2vw, 34px) !important;
  row-gap: 0 !important;
  width: 100% !important;
  text-align: left !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .price {
  order: 1;
  grid-column: 1;
  grid-row: 1;
  margin: 0 !important;
  font-family: var(--bespoke-display);
  font-size: clamp(20px, 1.5vw, 29px) !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .city {
  order: 2;
  grid-column: 2;
  grid-row: 1;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  text-align: right !important;
  white-space: normal !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .city .line {
  display: block !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .city .line:first-child {
  margin-bottom: 3px;
  font-family: var(--bespoke-editorial);
  font-size: clamp(14px, 1.05vw, 19px) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  text-transform: none !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .city .line:last-child {
  font-family: var(--bespoke-body);
  font-size: clamp(10px, 0.68vw, 12px) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .city .line + .line::before {
  content: none !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-2 {
  order: 3;
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  width: 100% !important;
  max-height: 0;
  margin-top: 0 !important;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: max-height 420ms ease, margin-top 420ms ease, opacity 320ms ease, transform 420ms ease;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap:hover .info-2,
#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap:focus-within .info-2 {
  max-height: 52px;
  margin-top: 14px !important;
  opacity: 1;
  transform: translateY(0);
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-2 .col-xs-4 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  width: auto !important;
  padding: 6px 10px !important;
  color: var(--sshn-paper) !important;
  white-space: nowrap;
  background: #000 !important;
  border: 0 !important;
  border-radius: 999px;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-2 .col-xs-4,
#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-2 .col-xs-4 * {
  color: var(--sshn-paper) !important;
  font-family: var(--bespoke-body);
  font-size: clamp(9px, 0.62vw, 11px) !important;
  line-height: 1 !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-2 .name {
  font-weight: 400 !important;
}

#bespoke #design-container #section-featured-listings #featured-holder .view-all a.clean-btn:hover,
#bespoke #design-container #section-featured-listings #featured-holder .view-all a.clean-btn:focus-visible {
  color: var(--sshn-paper) !important;
}

#bespoke #section-featured-listings #featured-holder .house-slider-controls button {
  border-color: var(--sshn-ink) !important;
  background: var(--sshn-paper) !important;
}

#bespoke #section-featured-listings #featured-holder .house-slider-controls button svg,
#bespoke #section-featured-listings #featured-holder .house-slider-controls button svg path {
  color: var(--sshn-ink) !important;
  stroke: var(--sshn-ink) !important;
}

#bespoke #section-featured-listings #featured-holder .house-slider-controls button:hover,
#bespoke #section-featured-listings #featured-holder .house-slider-controls button:focus-visible {
  background: var(--sshn-ink) !important;
}

#bespoke #section-featured-listings #featured-holder .house-slider-controls button:hover svg,
#bespoke #section-featured-listings #featured-holder .house-slider-controls button:hover svg path,
#bespoke #section-featured-listings #featured-holder .house-slider-controls button:focus-visible svg,
#bespoke #section-featured-listings #featured-holder .house-slider-controls button:focus-visible svg path {
  color: var(--sshn-paper) !important;
  stroke: var(--sshn-paper) !important;
}

#bespoke #design-container #section-featured-listings {
  background: var(--sshn-paper) !important;
  color: var(--sshn-ink) !important;
  padding: 0 !important;
}

#bespoke #section-featured-listings #featured-holder {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 0 !important;
  padding-bottom: clamp(52px, 4vw, 72px) !important;
  box-sizing: border-box;
}

#bespoke #section-featured-listings .bespoke-featured-header {
  min-height: 148px;
}

@media (min-width: 1100px) {
  #bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .img .photo {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 5 / 4 !important;
  }
}

@media (max-width: 790px) {
  #bespoke #section-featured-listings {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  #bespoke #section-featured-listings .title-row {
    width: calc(100% - 60px);
    margin: 0 auto 44px;
  }

  #bespoke #section-featured-listings .section-title h2 {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 5vw;
    line-height: normal;
  }

  #bespoke #section-featured-listings #featured-holder .bespoke-featured-built .featured-gallery {
    width: 92% !important;
  }

  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .item {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .img .photo {
    aspect-ratio: auto;
    height: 400px !important;
    min-height: 400px !important;
    max-height: none !important;
  }

  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info {
    padding: 12px 16px !important;
    text-align: center !important;
  }

  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-1 {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px 14px !important;
  }

  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .city {
    flex-basis: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info,
      #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info * {
    font-size: 2.6vw !important;
  }

  #bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls {
    top: 43% !important;
  }

  #bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-prev {
    transform: translateX(-16px) !important;
  }

  #bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-next {
    transform: translateX(16px) !important;
  }

  #bespoke #design-container #section-featured-listings {
    padding: 0 !important;
  }

  #bespoke #section-featured-listings #featured-holder {
    padding-bottom: 0 !important;
  }

  #bespoke #section-featured-listings .bespoke-featured-header {
    min-height: 132px;
  }
}

@media (hover: none), (max-width: 790px) {
  #bespoke #section-featured-listings .title-row {
    margin-bottom: 16px !important;
  }

  #bespoke #section-featured-listings .section-title h2 {
    margin-bottom: 0 !important;
  }

  #bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .img .photo {
    height: 400px !important;
    min-height: 400px !important;
  }

  #bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info {
    width: 100% !important;
    max-width: 100% !important;
  }

  #bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .item-wrap .info-2 {
    max-height: 52px;
    margin-top: 12px !important;
    opacity: 1;
    transform: none;
  }
}


/** FEATURED EDITORIAL GRID */

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .featured-gallery {
  width: min(92%, 1740px) !important;
  max-width: none !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
  height: auto;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card {
  min-width: 0;
  overflow: hidden;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card:first-child {
  grid-column: 1 / -1;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .item {
  position: relative;
  width: 100% !important;
  min-height: 0 !important;
  height: 100% !important;
  overflow: hidden;
  background: #252525;
  border-radius: 0 !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .img,
#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .img .photo {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .img .photo {
  position: relative;
  aspect-ratio: 17 / 10 !important;
  overflow: hidden;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card:first-child .img .photo {
  aspect-ratio: 13 / 4 !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .img .photo::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(12, 12, 12, 0.82));
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .img .photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .info {
  position: absolute !important;
  inset: auto 0 0 !important;
  z-index: 3;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: clamp(16px, 2.2vw, 30px) !important;
  color: #fff !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
  transform: none !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .info,
#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .info * {
  color: #fff !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .info-1 {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 5px !important;
  padding: 0 !important;
  background: transparent !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .price {
  order: 1;
  margin: 0 !important;
  font-family: var(--bespoke-editorial) !important;
  font-size: clamp(1.35rem, 2vw, 2rem) !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .city {
  order: 2;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(0.78rem, 1.05vw, 1rem) !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .city .line {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .city .line + .line::before {
  content: none !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .info-2 {
  order: 3;
  display: flex !important;
  width: auto !important;
  max-height: none !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  gap: 14px;
  opacity: 1 !important;
  background: transparent !important;
  transform: none !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .info-2 .col-xs-4 {
  display: flex !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 14px 0 0 !important;
  gap: 4px;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.48) !important;
  background: transparent !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .info-2 .col-xs-4:last-child {
  padding-right: 0 !important;
  border-right: 0 !important;
}

#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .info-2 .qtd,
#bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .info-2 .name {
  font-size: clamp(0.64rem, 0.8vw, 0.76rem) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.04em !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .caption {
  display: none !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls {
  position: static !important;
  z-index: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 24px !important;
  gap: 12px;
  pointer-events: auto !important;
  transform: none !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button {
  position: static !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  color: var(--sshn-ink) !important;
  background: transparent !important;
  border: 1px solid rgba(37, 37, 37, 0.55) !important;
  border-radius: 50% !important;
  transform: none !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button svg,
#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button svg path {
  color: var(--sshn-ink) !important;
  stroke: currentColor !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button:hover,
#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button:focus-visible {
  color: #fff !important;
  background: var(--sshn-ink) !important;
  border-color: var(--sshn-ink) !important;
}

#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button:hover svg,
#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button:hover svg path,
#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button:focus-visible svg,
#bespoke #section-featured-listings #featured-holder .bespoke-featured-built .house-slider-controls button:focus-visible svg path {
  color: #fff !important;
  stroke: #fff !important;
}

#bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .swiper-slide {
  transition-property: opacity !important;
}

@media (max-width: 790px) {
  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-group {
    grid-template-columns: 1fr;
  }

  #bespoke #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card:first-child {
    grid-column: auto;
  }

  #bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card .img .photo,
  #bespoke #design-container #section-featured-listings #featured-holder #bespoke-featured-swiper .bespoke-featured-card:first-child .img .photo {
    aspect-ratio: 4 / 3 !important;
  }
}

/** CLIENT TESTIMONIALS */

#bespoke #section-testimonials .text-holder {
  width: 100%;
  text-align: left;
}

#bespoke #section-testimonials .section-subtitle h3,
  #bespoke #section-testimonials .section-title h2 {
  margin: 0;
  color: #fff;
  letter-spacing: 0;
}

#bespoke #section-testimonials .section-subtitle {
  margin-bottom: 18px;
}

#bespoke #section-testimonials .section-subtitle h3 {
  font-family: var(--bespoke-display);
  letter-spacing: 0;
  font-size: 1.5rem;
  font-weight: 300 !important;
  line-height: 1.3;
  text-transform: uppercase;
}

#bespoke #section-testimonials .section-title h2 {
  max-width: 23vw;
  margin-top: 18px;
  margin-bottom: 0;
  font-family: var(--bespoke-body);
  font-size: 2.1vw;
  font-weight: 400;
  line-height: 2.7rem;
}

#bespoke #section-testimonials .testimonials-heading {
  width: 82%;
  max-width: none;
  margin: 0;
  min-width: 0;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

#bespoke #section-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: clamp(48px, 5vw, 84px) 4vw !important;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  gap: clamp(10px, 1.2vw, 18px) !important;
  background-color: transparent !important;
}

#bespoke #design-container .bespoke-page-inner > section:not(#section-testimonials) {
  background-image: none !important;
}

#bespoke #design-container #section-testimonials {
  min-height: 100svh !important;
  align-content: center;
  background-color: transparent !important;
  background-attachment: fixed !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

#bespoke #design-container #section-testimonials::before {
  content: none !important;
}

#bespoke #design-container .bespoke-page-inner > #section-testimonials.bespoke-testimonials::before {
  content: "" !important;
  display: block !important;
  background: rgba(5, 6, 6, 0.6) !important;
}

#bespoke #section-testimonials .bespoke-reviews-heading {
  align-self: center;
  width: 100%;
  max-width: 960px;
  color: var(--sshn-paper);
  text-align: center;
}

#bespoke #section-testimonials .bespoke-reviews-brand {
  margin: 0;
  color: #fff !important;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: normal;
}

#bespoke #section-testimonials .bespoke-reviews-brand-lockup {
  width: 100%;
  margin: 0 0 clamp(24px, 3vw, 38px);
  text-align: center;
}

#bespoke #section-testimonials .bespoke-reviews-brand-lockup .bespoke-hero-eyebrow {
  color: #fff !important;
}

#bespoke #section-testimonials #reviews-heading {
  max-width: none;
  margin: 0 auto !important;
  color: var(--sshn-paper) !important;
  font-family: var(--bespoke-display);
  font-size: clamp(2.5rem, 3.4vw, 3.25rem) !important;
  font-weight: 300 !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: none !important;
}

#bespoke #section-testimonials .bespoke-reviews-subtitle {
  margin: 22px 0 0;
  color: var(--sshn-paper);
  font-family: var(--bespoke-body);
  font-size: clamp(0.9rem, 1.15vw, 1.15rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#bespoke #section-testimonials .bespoke-reviews-widget {
  width: 100%;
  max-width: 940px;
  min-width: 0;
  justify-self: center;
}

#bespoke #section-testimonials .macklin-testimonials-swiper {
  width: 100%;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 20px;
  background: rgba(5, 6, 6, 0.62);
  backdrop-filter: blur(2px);
}

#bespoke #section-testimonials .macklin-testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

#bespoke #section-testimonials .macklin-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(250px, 25vw, 340px);
  padding: clamp(34px, 5vw, 68px) clamp(32px, 7vw, 96px);
  box-sizing: border-box;
  color: var(--sshn-paper);
}

#bespoke #section-testimonials .macklin-testimonial-stars {
  margin-bottom: 24px;
  color: #d8b45b;
  font-family: Arial, sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1;
  letter-spacing: 0.24em;
}

#bespoke #section-testimonials .macklin-testimonial blockquote {
  margin: 0;
}

#bespoke #section-testimonials .macklin-testimonial blockquote p {
  max-width: 900px;
  margin: 0;
  color: var(--sshn-paper) !important;
  font-family: var(--bespoke-body);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 300;
  line-height: 1.75;
  text-align: left;
}

#bespoke #section-testimonials .macklin-testimonial-attribution {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--bespoke-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#bespoke #section-testimonials .macklin-testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 0 26px;
}

#bespoke #section-testimonials .macklin-testimonial-controls[hidden] {
  display: none !important;
}

#bespoke #section-testimonials .macklin-testimonial-controls button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: transparent;
  color: var(--sshn-paper);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

#bespoke #section-testimonials .macklin-testimonial-controls button:hover,
#bespoke #section-testimonials .macklin-testimonial-controls button:focus-visible {
  background: var(--sshn-paper);
  color: var(--sshn-ink);
}

#bespoke #section-testimonials .macklin-testimonial-controls svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#bespoke #design-container .bespoke-page-inner > #section-testimonials.bespoke-testimonials {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: center;
  justify-items: center;
  min-height: clamp(680px, 78svh, 880px) !important;
  padding: clamp(72px, 9vw, 136px) clamp(30px, 7vw, 120px) !important;
  background-position: center bottom !important;
  gap: var(--bespoke-section-inner-gap) !important;
  padding-top: var(--bespoke-section-space) !important;
  padding-bottom: clamp(72px, 7vw, 110px) !important;
}

@media (max-width: 991px) {
  #bespoke #section-testimonials {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 54px 30px !important;
  }

  #bespoke #section-testimonials .testimonials-heading {
    width: 100%;
    padding-left: 0;
  }

  #bespoke #section-testimonials .section-title h2 {
    max-width: 640px;
    font-size: 4vw;
    line-height: normal;
  }

  #bespoke #section-testimonials .bespoke-reviews-heading,
  #bespoke #section-testimonials .bespoke-reviews-widget {
    width: 100%;
    max-width: 760px;
    justify-self: center;
  }

  #bespoke #section-testimonials #reviews-heading {
    max-width: 12ch;
  }

  #bespoke #design-container .bespoke-page-inner > #section-testimonials.bespoke-testimonials {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    padding: 76px 30px !important;
    gap: var(--bespoke-section-inner-gap) !important;
    padding-top: var(--bespoke-section-space) !important;
    padding-bottom: 76px !important;
  }
}

@media (max-width: 790px) {
  #bespoke #section-testimonials {
    padding: 46px 30px !important;
  }

  #bespoke #section-testimonials .section-title h2 {
    font-size: 4vw;
    line-height: 1.25;
  }

  #bespoke #design-container #section-testimonials {
    background-attachment: scroll !important;
  }

  #bespoke #design-container .bespoke-page-inner > #section-testimonials.bespoke-testimonials {
    gap: var(--bespoke-section-inner-gap) !important;
    padding: var(--bespoke-section-space) 20px 64px !important;
  }
}

@media (max-width: 560px) {
  #bespoke #section-testimonials .macklin-testimonial {
    min-height: 290px;
    padding: 34px 26px;
  }

  #bespoke #section-testimonials .macklin-testimonial blockquote p {
    line-height: 1.6;
  }

  #bespoke #section-testimonials .bespoke-reviews-brand {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  #bespoke #section-testimonials .bespoke-reviews-brand-lockup {
    margin-bottom: 20px;
  }

  #bespoke #section-testimonials #reviews-heading {
    max-width: 10ch;
    font-size: clamp(2.35rem, 11vw, 3.1rem) !important;
  }

  #bespoke #section-testimonials .bespoke-reviews-subtitle {
    margin-top: 17px;
    font-size: 0.8rem;
  }

  #bespoke #design-container .bespoke-page-inner > #section-testimonials.bespoke-testimonials {
    gap: var(--bespoke-section-inner-gap) !important;
    padding: var(--bespoke-section-space) 20px 56px !important;
  }
}

/* Sierra-managed testimonial carousel */

#bespoke #section-testimonials #bespoke-testimonials-holder,
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483),
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials,
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .js-content-testimonials {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials {
  padding: 0 !important;
  background: transparent !important;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-container.si-testimonials.si-testimonials--scroller {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .js-content-testimonials {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 20px;
  background: rgba(5, 6, 6, 0.5);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(3px);
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-list,
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-track {
  width: 100%;
  min-width: 0;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item {
  min-height: clamp(210px, 20vw, 280px);
  padding: clamp(24px, 3vw, 42px) clamp(40px, 6vw, 76px) !important;
  box-sizing: border-box;
  color: var(--sshn-paper) !important;
  text-align: left !important;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item-content {
  display: -webkit-box;
  max-width: 780px;
  margin: 0;
  padding: 0 !important;
  overflow: hidden;
  color: var(--sshn-paper) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: var(--bespoke-body);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  font-weight: 300;
  line-height: 1.7;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item-content::before,
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item-content::after,
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item::after,
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item-by::before,
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item-by::after {
  display: none !important;
  content: none !important;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item::before {
  content: "★★★★★";
  display: block;
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin-bottom: 20px;
  color: #d8b45b;
  font-family: Arial, sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1;
  letter-spacing: 0.24em;
  text-align: left !important;
  transform: none !important;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item-by {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: var(--bespoke-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  padding: 0;
  overflow: hidden;
  color: transparent !important;
  font-size: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-prev {
  left: 18px;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-next {
  right: 18px;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-arrow::before {
  display: block;
  color: var(--sshn-paper) !important;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 36px;
  opacity: 1;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-prev::before {
  content: "‹";
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-next::before {
  content: "›";
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-arrow:hover,
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-arrow:focus-visible {
  background: var(--sshn-paper);
  border-color: var(--sshn-paper);
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-arrow:hover::before,
#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-arrow:focus-visible::before {
  color: var(--sshn-ink) !important;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0 0 24px;
  list-style: none;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
}

#bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-dots .slick-active button {
  background: var(--sshn-paper);
}

@media (max-width: 560px) {
  #bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item {
    min-height: 270px;
    padding: 30px 28px 82px !important;
  }

  #bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item-content {
    line-height: 1.6;
  }

  #bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .si-testimonials__item::before {
    margin-bottom: 16px !important;
  }

  #bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-arrow {
    top: auto !important;
    bottom: 18px !important;
    transform: none !important;
  }

  #bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-prev {
    left: 18px;
  }

  #bespoke #section-testimonials :is(#pageComponent1234364, #pageComponent1234483) .slick-next {
    right: 18px;
  }
}


/** INSTAGRAM */

#bespoke #section-instagram .instagram-heading {
  width: 82%;
  max-width: none;
  margin: 0;
  min-width: 0;
}

#bespoke #section-instagram .text-holder {
  width: 100%;
  text-align: left;
}

#bespoke #section-instagram .section-subtitle h3,
  #bespoke #section-instagram .section-title h2 {
  margin: 0;
  color: #fff;
  letter-spacing: 0;
}

#bespoke #section-instagram .section-subtitle {
  margin-bottom: 18px;
}

#bespoke #section-instagram .instagram-widget-shell {
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
}

#bespoke #section-instagram .section-subtitle h3 {
  font-family: var(--bespoke-display);
  letter-spacing: 0;
  font-size: 1.5rem;
  font-weight: 300 !important;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--sshn-paper) !important;
}

#bespoke #section-instagram .section-title h2 {
  max-width: 30vw;
  margin-top: 18px;
  margin-bottom: 0;
  font-family: var(--bespoke-body);
  font-size: 2.1vw;
  font-weight: 400;
  line-height: 2.7rem;
  color: var(--sshn-paper) !important;
}

#bespoke #section-instagram {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 4vw, 68px);
  width: 100%;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: clamp(54px, 6vw, 96px) 4vw !important;
  background: var(--sshn-ink-glass) !important;
  color: var(--sshn-paper) !important;
  background-color: transparent !important;
}

#bespoke #design-container #section-instagram::before {
  content: none !important;
}

#bespoke #section-instagram .bespoke-instagram-heading p {
  margin: 0;
  color: var(--sshn-ink);
  font-family: var(--bespoke-body);
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

#bespoke #section-instagram .bespoke-instagram-heading h2 {
  margin: 16px 0 0 !important;
  color: var(--sshn-ink) !important;
  font-family: var(--bespoke-display) !important;
  font-size: clamp(2.5rem, 3.4vw, 3.25rem) !important;
  font-weight: 300 !important;
  line-height: 0.95 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

#bespoke #section-instagram .instagram-holder,
  #bespoke #section-instagram .instagram-widget-shell,
  #bespoke #section-instagram .elfsight-instagram-holder {
  display: block !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: visible !important;
  flex: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding-inline: 0 !important;
}

#bespoke #section-instagram [class^="elfsight-app-"] {
  display: block;
  height: auto;
  max-height: none;
  overflow: visible;
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

#bespoke #design-container .bespoke-page-inner > #section-instagram.bespoke-instagram {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  background: var(--sshn-paper) !important;
  color: var(--sshn-ink) !important;
  padding: 0 !important;
}

#bespoke #section-instagram .instagram-holder {
  padding-bottom: 0 !important;
  box-sizing: border-box;
}

#bespoke #section-instagram .bespoke-instagram-heading {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--bespoke-gutter);
  min-height: 148px;
}

@media (max-width: 991px) {
  #bespoke #section-instagram {
    gap: 36px;
    padding: 70px 30px !important;
  }

  #bespoke #section-instagram .instagram-heading {
    width: 100%;
    padding-left: 0;
  }

  #bespoke #section-instagram .section-title h2 {
    max-width: 640px;
    font-size: 4vw;
    line-height: normal;
  }
}

@media (max-width: 790px) {
  #bespoke #section-instagram {
    padding: 58px 30px !important;
  }

  #bespoke #design-container .bespoke-page-inner > #section-instagram.bespoke-instagram {
    padding: 0 !important;
  }

  #bespoke #section-instagram .instagram-holder {
    padding-bottom: 0 !important;
  }

  #bespoke #section-instagram .bespoke-instagram-heading {
    min-height: 132px;
    padding: 0 var(--bespoke-gutter);
  }
}

@media (max-width: 620px) {
  #bespoke #section-instagram .bespoke-instagram-heading {
    padding: 0 var(--bespoke-gutter);
  }

  #bespoke #section-instagram .bespoke-instagram-heading h2 {
    font-size: clamp(2.5rem, 11vw, 3rem) !important;
  }
}


/** CONTACT / GET IN TOUCH */

#bespoke #section-contact.container {
  max-width: 100vw !important;
}

#bespoke #section-contact .contact-col-left {
  justify-content: flex-start;
  padding: 1em clamp(18px, 3vw, 48px) 1em 1em;
}

#bespoke #section-contact .contact-col-right {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0 !important;
  padding: 1em 1em 1em clamp(18px, 3vw, 48px);
}

#bespoke #section-contact .contact-col-right .contact-photo,
  #bespoke #section-contact .contact-col-right img {
  width: 100%;
}

#bespoke #section-contact .contact-col-right img {
  display: block;
  height: auto;
  object-fit: cover;
}

#bespoke #section-contact h2 {
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  font-family: var(--bespoke-display);
  font-size: 2.8rem;
  font-weight: 400 !important;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: left;
}

#bespoke #section-contact .address-line {
  margin: 0 0 2px;
  color: #000;
  font-family: var(--bespoke-body);
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.5;
}

#bespoke #section-contact .address-line a {
  color: #000;
  text-decoration: none;
}

#bespoke #section-contact .social-holder .social-link {
  flex: 0 0 auto;
}

#bespoke #section-contact .social-holder .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 24px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

#bespoke #section-contact .social-holder .social-icon svg,
    #bespoke #section-contact .social-holder .social-icon path {
  fill: currentColor;
  transition: fill 0.3s ease;
}

#bespoke #section-contact .social-holder .social-icon svg {
  width: 68% !important;
  height: 68% !important;
  min-width: 18px;
  min-height: 18px;
  color: currentColor;
  opacity: 1;
}

#bespoke #section-contact .social-holder .social-icon:hover,
    #bespoke #section-contact .social-holder .social-icon:focus-visible {
  color: #000 !important;
  background-color: #fff;
  border-color: #fff;
}

#bespoke #section-contact .social-holder .social-icon:hover svg,
      #bespoke #section-contact .social-holder .social-icon:hover path,
      #bespoke #section-contact .social-holder .social-icon:focus-visible svg,
      #bespoke #section-contact .social-holder .social-icon:focus-visible path {
  color: #000 !important;
  fill: #000 !important;
}

#bespoke #section-contact .social-holder .social-link.text-white .social-icon:hover,
    #bespoke #section-contact .social-holder .social-link.text-white .social-icon:focus-visible,
    #bespoke #section-contact .social-holder .social-link.text-white:hover .social-icon {
  color: #000 !important;
}

#bespoke #section-contact .social-holder .social-link.text-white .social-icon:hover svg,
      #bespoke #section-contact .social-holder .social-link.text-white .social-icon:hover svg path,
      #bespoke #section-contact .social-holder .social-link.text-white .social-icon:focus-visible svg,
      #bespoke #section-contact .social-holder .social-link.text-white .social-icon:focus-visible svg path,
      #bespoke #section-contact .social-holder .social-link.text-white:hover .social-icon svg,
      #bespoke #section-contact .social-holder .social-link.text-white:hover .social-icon svg path {
  color: #000 !important;
  fill: #000 !important;
  opacity: 1 !important;
}

#bespoke #section-contact #form-holder .top-content {
  display: none;
  padding: 0 !important;
  background: transparent !important;
}

#bespoke #section-contact #form-holder .down-content {
  padding: 0 !important;
  color: #000;
  background: transparent !important;
}

#bespoke #section-contact #form-holder .down-content .title {
  display: none;
}

#bespoke #section-contact #form-holder .md-form.column-agent .down-content .input-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#bespoke #section-contact #form-holder .md-form.column-agent .down-content .basic-info {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  width: 100%;
}

#bespoke #section-contact #form-holder .md-form.column-agent .down-content .basic-info input,
    #bespoke #section-contact #form-holder .md-form.column-agent .down-content .basic-info textarea,
    #bespoke #section-contact #form-holder .md-form.column-agent .down-content .message textarea {
  display: block;
  width: 100%;
  height: auto;
  padding-left: 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  background-color: transparent;
  box-shadow: none;
}

#bespoke #section-contact #form-holder .md-form.column-agent .down-content .info-form ::placeholder {
  color: #000 !important;
}

#bespoke #section-contact #form-holder .md-form.column-agent .down-content .message {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

#bespoke #section-contact #form-holder .md-form.column-agent .down-content .message textarea {
  padding: 0;
}

#bespoke #section-contact #form-holder .md-form.column-agent .down-content .basic-info .input-box {
  flex: 1;
  margin-left: auto;
  margin-right: auto;
}

#bespoke #section-contact #form-holder .md-form.column-agent .down-content .submit-box {
  text-align: center;
}

#bespoke #section-contact #form-holder .disclaimer-wrap.opt-in .disclaimer-content {
  color: #3e3e3e;
}

#bespoke #section-contact #form-holder .disclaimer-wrap.opt-in .checkbox-li .check-box-container {
  color: #3e3e3e !important;
  border-color: #3e3e3e !important;
}

#bespoke #section-contact .social-holder .social-icon,
#bespoke #section-contact .social-holder .social-icon:visited {
  color: var(--sshn-paper) !important;
  border-color: var(--sshn-paper) !important;
}

#bespoke #section-contact .contact-col-main,
#bespoke #section-contact .contact-col-main * {
  border-color: var(--sshn-line-dark) !important;
}

#bespoke #section-contact {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  background-color: transparent !important;
}

#bespoke #design-container .bespoke-page-inner > #section-contact.bespoke-contact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 720px;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--sshn-ink) !important;
}

#bespoke #design-container #section-contact::before {
  background: transparent !important;
  content: none !important;
}

#bespoke #section-contact .logo-col {
  flex: 0 0 50%;
  max-width: 50%;
  color: var(--sshn-paper) !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100% !important;
  min-height: 100%;
  padding: clamp(70px, 8vw, 130px) clamp(30px, 5vw, 82px) !important;
  background: var(--sshn-ink) !important;
  box-sizing: border-box;
}

#bespoke #design-container .bespoke-page-inner > #section-contact.bespoke-contact > .logo-col,
#bespoke #design-container .bespoke-page-inner > #section-contact.bespoke-contact > .contact-col-main {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
}

#bespoke #section-contact .bespoke-contact-brand {
  max-width: none;
  margin: 0;
  color: #fff !important;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: normal;
  white-space: nowrap;
}

#bespoke #section-contact .bespoke-contact-brand-lockup {
  width: 100%;
  margin: 0 0 clamp(48px, 6vw, 86px);
  text-align: center;
}

#bespoke #section-contact .bespoke-contact-brand-lockup .bespoke-hero-eyebrow {
  color: #fff !important;
}

#bespoke #section-contact .bespoke-contact-brokerage-label {
  margin: 0 0 -6px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--bespoke-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

#bespoke #section-contact .contact-logo {
  width: clamp(150px, 17vw, 260px) !important;
  max-width: none !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin: 0;
}

#bespoke #section-contact .contact-logo img {
  object-fit: contain;
  opacity: 1;
  visibility: visible;
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) grayscale(1) brightness(1.6) !important;
}

#bespoke #section-contact .social-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 12px);
  width: 100%;
  margin-top: 30px;
}

#bespoke #section-contact .contact-col-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  min-width: 0;
  padding: clamp(58px, 6vw, 100px) clamp(34px, 6vw, 96px) !important;
  background: var(--sshn-paper) !important;
  color: var(--sshn-ink) !important;
  box-sizing: border-box;
}

#bespoke #section-contact .contact-info-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1em;
  width: 100% !important;
  max-width: none !important;
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
}

#bespoke #section-contact .contact-col-left,
  #bespoke #section-contact .contact-col-right {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: calc(50% - 31px) !important;
  max-width: none !important;
  flex: 1 1 0 !important;
  padding: 0 !important;
}

#bespoke #section-contact .section-subtitle h2 {
  font-family: var(--bespoke-display) !important;
  font-size: clamp(2.35rem, 2.7vw, 3.55rem) !important;
  font-weight: 400 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
  white-space: nowrap;
}

#bespoke #section-contact .contact-address {
  margin-top: clamp(28px, 3vw, 42px);
}

#bespoke #section-contact .contact-agent-line {
  margin-bottom: 28px !important;
  font-size: 1rem !important;
}

#bespoke #section-contact .contact-detail-label {
  margin: 26px 0 4px;
  color: var(--sshn-ink);
  font-family: var(--bespoke-body) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  line-height: 1.35;
  letter-spacing: 0 !important;
  text-align: left;
  text-transform: none !important;
}

#bespoke #section-contact .contact-detail-label:first-of-type {
  margin-top: 0;
}

#bespoke #section-contact .contact-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1);
}

#bespoke #section-contact #form-holder {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  margin-top: clamp(44px, 5vw, 76px);
}

@media (max-width: 1180px) {
  #bespoke #section-contact {
    flex-direction: column;
    flex-wrap: wrap;
  }

  #bespoke #section-contact .logo-col,
      #bespoke #section-contact .contact-col-main {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }

  #bespoke #section-contact .logo-col {
    min-height: 320px;
  }

  #bespoke #section-contact .contact-info-row {
    flex-direction: row;
    gap: 0;
  }

  #bespoke #section-contact .contact-col-right img {
    max-width: 520px;
  }

  #bespoke #section-contact .contact-col-right.photo-holder {
    margin-top: 0 !important;
  }
}

@media (max-width: 991px) {
  #bespoke #design-container .bespoke-page-inner > #section-contact.bespoke-contact {
    grid-template-columns: 1fr !important;
    min-height: 0;
  }

  #bespoke #section-contact .logo-col {
    min-height: 480px;
  }
}

@media (max-width: 790px) {
  #bespoke #section-contact {
    flex-direction: column;
    flex-wrap: wrap;
  }

  #bespoke #section-contact .logo-col,
      #bespoke #section-contact .contact-col-main {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }

  #bespoke #section-contact .contact-info-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 0;
  }

  #bespoke #section-contact .contact-col-left {
    padding: 1em 9px 1em 1em;
  }

  #bespoke #section-contact .contact-col-right {
    padding: 1em 1em 1em 9px;
  }

  #bespoke #section-contact .contact-col-right img {
    max-width: none;
  }

  #bespoke #section-contact #form-holder .md-form.column-agent .down-content .basic-info {
    flex-direction: column;
  }

  #bespoke #section-contact .contact-col-left,
      #bespoke #section-contact .contact-col-right {
    width: calc(50% - 31px) !important;
    max-width: none !important;
    flex: 1 1 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 620px) {
  #bespoke #section-contact .logo-col {
    min-height: 360px;
    padding: 52px 24px !important;
  }

  #bespoke #section-contact .bespoke-contact-brand {
    margin-bottom: 0;
    white-space: normal;
  }

  #bespoke #section-contact .contact-col-main {
    padding: 48px 24px !important;
  }

  #bespoke #section-contact .section-subtitle h2 {
    white-space: normal;
  }

  #bespoke #section-contact .contact-info-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    gap: 36px;
    padding: 0 !important;
  }

  #bespoke #section-contact .contact-col-right {
    order: 1;
  }

  #bespoke #section-contact .contact-col-left {
    order: 2;
  }

  #bespoke #section-contact .contact-col-left,
  #bespoke #section-contact .contact-col-right {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  #bespoke #section-contact .contact-photo,
  #bespoke #section-contact .contact-photo img {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 520px) {
  #bespoke #section-contact .social-holder {
    gap: 8px;
  }

  #bespoke #section-contact .social-holder .social-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  #bespoke #section-contact .social-holder {
    gap: 5px;
  }

  #bespoke #section-contact .social-holder .social-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/** BESPOKE TABLET AND MOBILE TILE PROPORTIONS */
@media (max-width: 1199px) {
  #bespoke #design-container #section-lifestyle .lifestyle-slider,
  #bespoke #design-container #section-featured-areas .featured-area-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
  }

  #bespoke #design-container #section-lifestyle .lifestyle-slider > .area-item,
  #bespoke #design-container #section-featured-areas .featured-area-grid > .area-item {
    grid-column: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  #bespoke #design-container #section-lifestyle .lifestyle-slider > .area-item:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    justify-self: stretch;
  }

  #bespoke #design-container #section-lifestyle .lifestyle-slider > .area-item:last-child:nth-child(odd) .area-item-image {
    aspect-ratio: 2 / 1 !important;
  }

  #bespoke #design-container #section-lifestyle .area-item-image,
  #bespoke #design-container #section-featured-areas .area-item-image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
  }

  #bespoke #design-container #section-lifestyle .area-item-image a,
  #bespoke #design-container #section-featured-areas .area-item-image a {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }

  #bespoke #section-lifestyle .area-item-title h3,
  #bespoke #section-lifestyle .area-item-title a,
  #bespoke #section-featured-areas .area-item-title h3,
  #bespoke #section-featured-areas .area-item-title a {
    font-size: 2.6rem !important;
    line-height: 1.12 !important;
  }

  #bespoke #section-lifestyle .bespoke-lifestyle-header,
  #bespoke #section-featured-areas .bespoke-areas-header {
    min-height: 104px !important;
  }
}

@media (max-width: 790px) {
  #bespoke #design-container #section-lifestyle .lifestyle-slider,
  #bespoke #design-container #section-featured-areas .featured-area-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 2px !important;
  }

  #bespoke #design-container #section-lifestyle .lifestyle-slider > .area-item,
  #bespoke #design-container #section-featured-areas .featured-area-grid > .area-item,
  #bespoke #design-container #section-lifestyle .lifestyle-slider > .area-item:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
  }

  #bespoke #design-container #section-lifestyle .lifestyle-slider > .area-item:last-child:nth-child(odd) .area-item-image {
    aspect-ratio: 4 / 5 !important;
  }

  #bespoke #section-lifestyle .lifestyle-slider > .area-item,
  #bespoke #section-featured-areas .featured-area-grid > .area-item {
    --anim-delay: 0s;
  }
}


/** FOOTER */

footer .link-effect.dark a::after {
  background: #fff !important;
}
