/* [project]/src/styles/globals.css [app-client] (css) */
:root {
  --castle-wall-base: #d8d8d3;
  --castle-wall-pattern-size: 1200px 1200px;
  --castle-wall-pattern: radial-gradient(circle at 20% 10%, #ffffff8c, transparent 30%),
    radial-gradient(circle at 80% 0%, #fff6, transparent 36%);
  --prestige-gold: #bea174;
  --prestige-gold-soft: #e5cfaa;
  --prestige-ink: #2a241c;
  --prestige-deep: #16130f;
  --prestige-paper: #fffcf6f0;
  --prestige-shadow: 0 26px 48px #00000038;
  --prestige-border: 1px solid #bea17452;
}

body {
  box-sizing: border-box;
  color: #2f281f;
  background-color: var(--castle-wall-base);
  background-image: linear-gradient(180deg, #fcf9f2eb, #e8e6dff2),
    linear-gradient(90deg, #00000006 1px, transparent 1px),
    linear-gradient(#00000005 1px, transparent 1px),
    var(--castle-wall-pattern);
  background-size: auto, 34px 34px, 34px 34px, var(--castle-wall-pattern-size);
  background-blend-mode: normal, normal, normal, screen;
  background-repeat: no-repeat, repeat, repeat, no-repeat;
  background-attachment: fixed, fixed, fixed, fixed;
  font-family: Cormorant Garamond, Georgia, Times New Roman, serif;
  margin: 0 !important;
  padding: 0 !important;
}

::selection {
  color: #fff;
  background: #cfb17b47;
}

.prestige-site {
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  box-sizing: border-box !important;
  max-width: 100% !important;
  height: auto !important;
}

.html-content img {
  object-fit: contain !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}

.richtext [style*="underline dashed"] {
  -webkit-text-decoration: underline dashed;
  text-decoration: underline dashed;
}

.richtext [style*="color:"] {
  color: inherit;
}

.richtext [style*="background-color:"] {
  border-radius: .25rem;
  padding: .2em .4em;
  display: inline;
}

.payload-richtext p:empty:before {
  content: "";
  vertical-align: baseline;
  width: 1px;
  height: 1.2em;
  display: inline-block;
}

:is(.payload-richtext p:empty, .payload-richtext p:blank) {
  min-height: 1.2em;
  line-height: 1.2;
}

.payload-richtext p {
  min-height: 1.2em;
}

.payload-richtext {
  color: #2a2118;
  font-size: clamp(1.12rem, 1.35vw, 1.3rem);
  line-height: 1.62;
}

.payload-richtext h1, .payload-richtext h2, .payload-richtext h3 {
  color: #2a2219;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.payload-richtext p + p {
  margin-top: .7em;
}

.payload-richtext a {
  color: #6e4f2a;
  border-bottom: 1px solid #6e4f2a66;
  text-decoration: none;
}

.payload-richtext a:hover {
  color: #8a6638;
  border-bottom-color: #8a6638b8;
}

.floating-contact-cta {
  z-index: 1600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff8eb;
  background: linear-gradient(#3e3427eb, #1a150ff5);
  border: 1px solid #bea17485;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .74rem;
  font-weight: 700;
  text-decoration: none;
  position: fixed;
  bottom: clamp(12px, 2.2vw, 30px);
  right: clamp(10px, 2vw, 26px);
  box-shadow: 0 12px 26px #00000047;
}

.floating-contact-cta:hover {
  color: #fff4dd;
  background: linear-gradient(#4e4131f2, #1a150ffa);
}

/* [project]/src/styles/menu_princ.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main-nav {
  background-color: var(--menu-bg-color, var(--castle-wall-base));
  color: var(--menu-text-color, #fff);
  font-family: var(--menu-font-family, Arial, sans-serif);
  background-image: none;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-bottom: 2px solid #00000059;
  padding-top: 0;
  position: relative;
}

body.property-modal-open .main-nav {
  box-shadow: none;
  border-bottom-color: #0000;
}

.main-nav:before {
  display: none;
}

.main-nav > .nav-menu > .nav-item > a {
  color: var(--menu-text-color, #fff) !important;
}

.main-nav > .nav-menu > .nav-item > a:hover, .main-nav > .nav-menu > .nav-item > a:focus-visible {
  color: var(--menu-hover-text-color, #aeb7ae) !important;
}

.menu-toggle {
  display: none;
}

.nav-toggle {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.nav-toggle .bar {
  background-color: var(--menu-text-color, #fff);
  width: 35px;
  height: 4px;
  margin: 3px 0;
  transition: all .3s;
}

.nav-menu {
  background-color: #0000;
  flex-direction: column;
  list-style: none;
  display: none;
}

.submenu {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.menu-toggle:checked + .nav-toggle + .nav-menu {
  display: flex;
}

.nav-overlay {
  z-index: 1000;
  background: #00000059;
  display: none;
  position: fixed;
  inset: 0;
}

.menu-toggle:checked ~ .nav-overlay {
  display: block;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    z-index: 1001;
    position: relative;
  }

  .nav-overlay-panel {
    display: none;
  }
}

.nav-item {
  position: relative;
}

.nav-link, .nav-link-main, .nav-toggle-btn {
  color: var(--menu-text-color, #fff);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.nav-link:hover, .nav-link-main:hover, .nav-toggle-btn:hover, .submenu .nav-link:hover, .submenu .nav-link:focus-visible {
  color: var(--menu-hover-text-color, #aeb7ae);
  background-color: #555;
}

.nav-link--active, .submenu .nav-link.nav-link--active {
  background-color: var(--menu-active-color, #ffffff26);
}

.menu-arrow {
  margin-right: 8px;
  font-size: .8rem;
  transition: transform .3s;
}

.submenu-active .menu-arrow {
  transform: rotate(90deg);
}

.nav-item .submenu {
  background-color: var(--menu-bg-color, var(--castle-wall-base));
  flex-direction: column;
  display: none;
}

.nav-item.submenu-active > .submenu {
  display: flex;
}

.submenu .nav-link {
  background-color: #0000;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .submenu .nav-link-main {
    background-color: #0000;
    border-bottom: 1px solid #555;
    padding-left: 20px;
  }
}

@media screen and (min-width: 769px) {
  .main-nav {
    flex-wrap: wrap;
    align-items: center;
    display: flex;
    position: relative;
  }

  .nav-toggle {
    cursor: default;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    padding: 0 10px 0 20px;
    display: flex;
  }

  .nav-toggle .bar {
    background-color: var(--menu-text-color, #fff);
    width: 25px;
    height: 4px;
    margin: 2px 0;
    transition: none;
  }

  .main-nav > .nav-menu {
    padding-left: 50px;
  }

  .nav-menu {
    background-color: #0000;
    flex-flow: wrap;
    display: flex !important;
  }

  .nav-item {
    white-space: nowrap;
    position: relative;
  }

  .submenu {
    background-color: var(--menu-bg-color, var(--castle-wall-base));
    z-index: 1000;
    background-image: none;
    background-size: auto;
    border: 1px solid #00000059;
    flex-direction: column;
    min-width: 200px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 12px 26px #00000059;
  }

  .nav-item.submenu-active > .submenu {
    display: flex;
  }

  .submenu li {
    width: 100%;
  }

  .submenu .nav-link {
    padding: 6px 20px;
  }

  .nav-item.has-submenu > a.nav-link, .nav-item.has-submenu > button.nav-link, .nav-item.has-submenu > .nav-title {
    align-items: center;
    display: flex;
  }

  .nav-overlay {
    z-index: 1000;
    background: #0006;
    display: none;
    position: fixed;
    inset: 0;
  }

  .nav-overlay-panel {
    background-color: var(--menu-bg-color, var(--castle-wall-base));
    background-image: none;
    background-size: auto;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    padding-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: auto;
    box-shadow: 2px 0 8px #00000059;
  }

  .nav-overlay-panel:before {
    display: none;
  }

  .nav-menu-overlay {
    flex-direction: column;
    width: 100%;
    display: flex !important;
  }

  .nav-menu-overlay .nav-item {
    width: 100%;
  }

  .nav-menu-overlay .submenu {
    background-color: var(--menu-bg-color, var(--castle-wall-base));
    width: 100%;
    display: none;
    position: relative;
    top: auto;
    left: auto;
  }

  .nav-menu-overlay .nav-item.submenu-active > .submenu {
    flex-direction: column;
    display: flex;
  }

  .nav-menu-overlay .submenu .nav-link {
    padding: 10px 20px;
  }

  .menu-toggle:checked ~ .nav-overlay {
    display: block;
  }
}

/* [project]/src/styles/banniere.css [app-client] (css) */
.site-header {
  position: relative;
}

.header-link {
  text-decoration: none;
  display: block;
}

.header-banner__menu {
  z-index: 8;
  position: absolute;
  top: clamp(12px, 2vw, 28px);
  right: clamp(14px, 3vw, 34px);
}

.header-banner {
  --banner-visual-ratio: 16 / 9;
  --banner-overlay-ratio: 1 / 1;
  --banner-overlay-width: clamp(168px, 17.25vw, 258px);
  border-bottom: 1px solid #bea17440;
  width: 100%;
  min-height: clamp(430px, 62vh, 760px);
  position: relative;
  overflow: hidden;
}

.header-banner--custom {
  background: radial-gradient(circle at top, #406fb02e, #0000 32%), linear-gradient(#07285b 0%, #08224f 48%, #04152f 100%);
}

.header-banner--sky {
  background: linear-gradient(#5e7488 0%, #9eadb7 45%, #d7d0c5 100%);
}

.header-banner__scene {
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  background-position: 50% 52%;
  background-repeat: no-repeat;
  background-size: 108%;
  position: absolute;
  inset: 0;
  transform: translateY(-8%);
}

.header-banner__veil {
  z-index: 2;
  background: linear-gradient(90deg, #061a3df0 0%, #061a3dd6 34%, #061a3d29 58%, #061a3d00 74%), linear-gradient(#05122c14 0%, #06142e1f 32%, #040c1d6b 100%);
  position: absolute;
  inset: 0;
}

.header-banner__shell {
  z-index: 3;
  min-height: inherit;
  grid-template-columns: minmax(320px, 560px) minmax(260px, 1fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 48px);
  width: min(1560px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px) clamp(18px, 4vw, 44px) clamp(24px, 3vw, 36px);
  display: grid;
  position: relative;
}

.header-banner__content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: clamp(360px, 54vh, 640px);
  display: flex;
  position: relative;
}

.header-banner__content:before {
  content: none;
}

.header-banner__visual {
  width: min(100%, 760px);
  aspect-ratio: var(--banner-visual-ratio);
  place-self: center end;
  position: relative;
  transform: translateY(-9%);
}

.header-banner__visual-frame {
  background: linear-gradient(#ffffff05, #fff0), radial-gradient(circle at 50% 72%, #e0af6024, #0000 34%);
  border: 1px solid #dfc27f24;
  border-radius: 24px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.header-banner__visual:before {
  content: "";
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(#ffffff08, #fff0), linear-gradient(90deg, #08183805, #08183800);
  position: absolute;
  inset: 0;
}

.header-banner__visual:after {
  content: "";
  z-index: 3;
  border-radius: 0 0 inherit inherit;
  pointer-events: none;
  background: linear-gradient(#0000 0%, #040e2114 26%, #040e2180 100%);
  height: 32%;
  position: absolute;
  inset: auto 0 0;
}

.header-banner__overlay {
  z-index: 4;
  width: var(--banner-overlay-width);
  aspect-ratio: var(--banner-overlay-ratio);
  pointer-events: none;
  justify-content: center;
  align-items: center;
  margin: 0 0 18px;
  display: flex;
  position: relative;
}

.header-banner__overlay img {
  object-fit: contain;
  filter: drop-shadow(0 10px 18px #00000047) drop-shadow(0 0 16px #ffebb724);
  width: 100%;
  height: 100%;
  display: block;
}

.header-banner__brand {
  z-index: 4;
  color: #f8efdf;
  flex-direction: column;
  gap: 14px;
  max-width: min(480px, 100%);
  padding: clamp(8px, 1vw, 12px) 0 0;
  display: flex;
  position: relative;
}

body.property-modal-open .header-banner__overlay, body.property-modal-open .header-banner__brand, body.property-modal-open .header-banner:before, body.property-modal-open .header-banner:after, body.property-modal-open .prestige-marquee, body.property-modal-open .home-intro-strip {
  opacity: 0;
  visibility: hidden;
}

body.property-modal-open .header-menu-shell {
  box-shadow: none;
  border-bottom-color: #0000;
}

.header-banner__title {
  letter-spacing: .015em;
  text-transform: uppercase;
  text-wrap: balance;
  color: #f6efe1;
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.15rem, 3.8vw, 4.65rem);
  font-weight: 500;
  line-height: .94;
}

.header-banner__subtitle {
  letter-spacing: .03em;
  text-transform: none;
  color: #efe4cbf5;
  max-width: 27ch;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.4;
}

.header-banner__cta {
  color: #e6d0a0;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: #0a1a3a42;
  border: 1px solid #ddc07fd1;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  padding: 13px 24px;
  font-size: .82rem;
  display: inline-flex;
  box-shadow: 0 12px 28px #0308132e;
}

.prestige-marquee {
  background: #2b241b;
  border-top: 1px solid #bea17433;
  border-bottom: 1px solid #bea17433;
}

.prestige-marquee__inner {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 10px clamp(10px, 2vw, 24px);
  display: flex;
}

.prestige-marquee__inner span {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f4e0beeb;
  font-size: .74rem;
}

.header-menu-shell {
  background: linear-gradient(#faf6ecf2, #f2ece0f2);
  border-bottom: 1px solid #bea17447;
  box-shadow: 0 8px 22px #00000014;
}

.header-banner__menu .main-nav {
  box-shadow: none;
  background: none;
  border-bottom: 0;
}

.header-banner__menu .nav-toggle {
  padding: 0;
}

.header-banner__menu .nav-toggle .bar {
  background-color: #e6d0a0;
}

.header-banner__menu .nav-menu {
  background: none;
}

@media screen and (min-width: 769px) {
  .header-banner__shell {
    padding-top: clamp(8px, 1.2vw, 18px);
  }

  .header-banner__content {
    justify-content: flex-start;
    padding-top: 0;
  }

  .header-banner__overlay {
    align-self: flex-start;
    margin-top: -14px;
    margin-bottom: 8px;
  }

  .header-banner__brand {
    margin-top: 0;
    padding-top: 0;
  }

  .header-banner__menu .main-nav {
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .header-banner__menu .main-nav > .nav-menu {
    justify-content: flex-end;
    gap: clamp(4px, 1vw, 14px);
    padding-left: 0;
  }

  .header-banner__menu .nav-item {
    display: flex;
  }

  .header-banner__menu .nav-link, .header-banner__menu .nav-link-main, .header-banner__menu .nav-toggle-btn {
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #ead8b2;
    background: none;
    width: 100%;
    padding: 10px 14px;
    font-size: .78rem;
  }

  .header-banner__menu .nav-link:hover, .header-banner__menu .nav-link:focus-visible, .header-banner__menu .nav-link-main:hover, .header-banner__menu .nav-toggle-btn:hover {
    color: #fff4d8;
    background: #ffffff14;
  }

  .header-banner__menu .submenu {
    background: #071a3cf5;
    border: 1px solid #dfc27f2e;
    box-shadow: 0 14px 32px #00000047;
  }
}

.header-menu-shell__inner {
  width: min(1560px, 100%);
  margin: 0 auto;
  padding: 0 clamp(0px, 2vw, 14px);
}

.home-intro-strip {
  background: #f5f0e6;
  border-bottom: 1px solid #bea17433;
}

.home-intro-strip__inner {
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
}

.home-intro-strip__inner span {
  color: #5e4d39;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
}

@media (max-width: 768px) {
  .header-banner {
    --banner-overlay-width: clamp(168px, 42vw, 258px);
    min-height: clamp(560px, 82vh, 780px);
  }

  .header-banner__menu {
    top: auto;
    left: 50%;
    right: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
    z-index: 9;
    width: calc(100vw - 24px);
    max-width: 680px;
    position: absolute;
    transform: translateX(-50%);
  }

  .header-banner__menu:before {
    content: "";
    z-index: -1;
    filter: blur(10px);
    background: radial-gradient(circle, #06142eb8 0%, #06142e61 52%, #06142e00 100%);
    border-radius: 999px;
    position: absolute;
    inset: -10px -6px;
  }

  .header-banner__veil {
    background: linear-gradient(#04142ee0 0%, #0416348f 28%, #04102814 55%, #020a187a 100%);
  }

  .header-banner__shell {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 6px 18px 24px;
  }

  .header-banner__content {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    min-height: clamp(520px, 78vh, 740px);
    padding-bottom: 72px;
  }

  .header-banner__content:before {
    opacity: .42;
    width: 180px;
    height: 180px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-banner__overlay {
    margin-top: 0;
    margin-bottom: 0;
  }

  .header-banner__brand {
    align-items: center;
    max-width: 320px;
    padding-top: 0;
  }

  .header-banner__content > .header-banner__overlay:first-child {
    align-self: center;
    margin-top: -4px;
  }

  .header-banner__menu .main-nav {
    background: none;
    border-bottom: 0;
    width: 100%;
    position: relative;
  }

  .header-banner__menu .nav-toggle {
    align-items: center;
    width: 100%;
    padding: 0;
  }

  .header-banner__menu .nav-toggle .bar {
    background-color: #e6d0a0;
    width: 30px;
    box-shadow: 0 0 10px #e6d0a02e;
  }

  .header-banner__menu .nav-menu {
    background: #06142ee6;
    border-radius: 18px;
    width: 100%;
    margin-top: 0;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    overflow: hidden;
    box-shadow: 0 14px 34px #00000047;
  }

  .header-banner__menu .nav-item, .header-banner__menu .submenu {
    width: 100%;
  }

  .header-banner__menu .nav-link, .header-banner__menu .nav-link-main, .header-banner__menu .nav-toggle-btn {
    text-align: center;
    border-bottom: 1px solid #dfc27f29;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
  }

  .header-banner__menu .submenu .nav-link, .header-banner__menu .submenu .nav-link-main {
    padding-left: 18px;
  }

  .header-banner__menu .nav-item:last-child > .nav-link, .header-banner__menu .nav-item:last-child > .nav-toggle-btn, .header-banner__menu .submenu li:last-child > .nav-link {
    border-bottom: 0;
  }

  .header-banner__title {
    max-width: 9ch;
    font-size: clamp(2.05rem, 8.2vw, 3.25rem);
  }

  .header-banner__subtitle {
    max-width: 24ch;
    font-size: 1rem;
  }

  .header-banner__cta {
    margin-top: 8px;
    padding: 12px 20px;
    font-size: .78rem;
  }

  .header-banner__visual {
    place-self: center stretch;
    width: 100%;
    margin-top: auto;
    transform: translateY(-12%);
  }

  .header-banner__visual-frame {
    border-radius: 18px;
  }

  .header-banner__visual:before {
    border-radius: inherit;
    inset: 6px 0 0;
  }

  .header-banner__visual:after {
    border-radius: 0 0 inherit inherit;
    height: 24%;
  }

  .header-banner__scene {
    background-position: 50% 48%;
    background-size: 114%;
    inset: 0;
    transform: translateY(-9%);
  }

  .prestige-marquee__inner {
    scrollbar-width: thin;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }
}

/* [project]/src/styles/contenupage.css [app-client] (css) */
html, body {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.main-content {
  flex-direction: column;
  flex: 1;
  width: 100%;
  margin: 0;
  display: flex;
  position: relative;
}

.site-main:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(#3f4e411f, #0000 70%);
  height: 150px;
  position: absolute;
  inset: 0 0 auto;
}

.no-parchment-sheet {
  color: #2d2a25;
  border: 1px solid var(--site-page-border-color, #25362c24);
  background: var(--site-page-bg, linear-gradient(180deg, #fffffffc, #f9f7f2fc));
  border-radius: 22px;
  width: min(1480px, 100%);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(22px, 2.9vw, 42px) clamp(16px, 2.4vw, 40px) clamp(34px, 3.7vw, 58px);
  position: relative;
  box-shadow: 0 20px 44px #1c231f1f, inset 0 1px #ffffffe0;
}

.no-parchment-sheet > :not(.no-parchment-sheet__ornament) {
  z-index: 1;
  position: relative;
}

.no-parchment-sheet__ornament {
  pointer-events: none;
  z-index: 2;
  height: 18px;
  display: block;
  position: absolute;
  left: 28px;
  right: 28px;
}

.no-parchment-sheet__ornament:before, .no-parchment-sheet__ornament:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.no-parchment-sheet__ornament:before {
  background: linear-gradient(90deg, transparent, var(--site-page-top-line-color, #6c7a6361), transparent);
  height: 1px;
  top: 0;
}

.no-parchment-sheet__ornament:after {
  background: radial-gradient(#6c7a6333, #0000 70%) center / 170px 10px no-repeat;
  height: 10px;
  top: 0;
}

.no-parchment-sheet__ornament--top {
  top: 14px;
}

.no-parchment-sheet__ornament--bottom {
  background: linear-gradient(90deg, transparent, var(--site-page-bottom-line-color, #bf9d6680), transparent) center bottom / 100% 1px no-repeat;
  height: 28px;
  bottom: 14px;
  transform: scaleY(-1);
}

.richtext img {
  object-fit: contain;
  box-sizing: border-box;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  display: block;
}

.content-1, .content-4 {
  background: linear-gradient(#fffffff5, #faf8f3f5);
  border: 1px solid #25362c1f;
  border-radius: 16px;
  padding: clamp(16px, 2vw, 28px);
  box-shadow: inset 0 1px #fff9;
}

.properties-page--content .content-1, .properties-page--content .content-2, .properties-page--content .content-3, .properties-page--content .content-3_2, .properties-page--content .content-4 {
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.no-parchment-sheet > .content-1, .no-parchment-sheet > .content-4, .no-parchment-sheet > .content2_1-2_2-3_1-3_2 .content-2, .no-parchment-sheet > .content2_1-2_2-3_1-3_2 .content-3, .no-parchment-sheet > .content2_1-2_2-3_1-3_2 .content-3_2 {
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
}

.no-parchment-sheet > .content-1:first-of-type, .no-parchment-sheet > .content-4:first-of-type, .no-parchment-sheet > .content2_1-2_2-3_1-3_2:first-of-type {
  margin-top: 18px;
  padding-top: 0;
  position: relative;
}

.no-parchment-sheet > .content-1:first-of-type:before, .no-parchment-sheet > .content-4:first-of-type:before, .no-parchment-sheet > .content2_1-2_2-3_1-3_2:first-of-type:before {
  content: "";
  background: linear-gradient(90deg,
    transparent,
    var(--site-page-top-line-color, #bf9d668c),
    transparent);
  height: 1px;
  position: absolute;
  top: -18px;
  left: 14px;
  right: 14px;
}

@media (max-width: 768px) {
  .main-content {
    padding: 8px 4px;
  }
}

@media (min-width: 769px) {
  .main-content {
    padding: 26px 28px 16px;
  }
}

/* [project]/src/styles/basdepage.css [app-client] (css) */
footer {
  width: 100%;
  color: var(--footer-link-color, #f2e4ca);
  text-align: center;
  background: none;
  margin: 0;
  padding: 0;
}

footer ul {
  box-sizing: border-box;
  background: var(--footer-band-bg-color, linear-gradient(180deg,
    #2d261df0,
    #1c1812f5));
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border: none;
  border-radius: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 20px 30px;
  list-style: none;
  display: flex;
}

footer a.footer-link {
  color: var(--footer-link-color, #f2e4ca);
  border-radius: 6px;
  padding: 4px 8px;
  text-decoration: none;
  transition: background-color .25s, color .25s;
  display: inline-block;
}

footer a.footer-link:hover, footer a.footer-link:focus-visible {
  color: var(--footer-hover-text-color, #aeb7ae);
  background-color: var(--footer-hover-bg-color, #00000040);
}

footer a.footer-link.footer-link--active {
  background-color: var(--footer-active-color, #ffffff26);
}

footer .footer-text {
  color: var(--footer-link-color, #f2e4ca);
}

/* [project]/src/styles/slugpage.css [app-client] (css) */
@media (min-width: 769px) {
  .content-1, .content-4 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .content2_1-2_2-3_1-3_2 {
    box-sizing: border-box;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
  }

  .content2_1-2_2, .content3_1-3_2 {
    flex-direction: row;
    flex: 1;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    display: flex;
  }

  .content2_1, .content3_1 {
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
    flex: 0 0 100%;
  }

  .content-2, .content-3 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .content2_1-2_2-3_1-3_2 {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    display: flex;
  }

  .content2_1-2_2, .content3_1-3_2 {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    display: flex;
  }

  .content2_1, .content3_1 {
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
    flex: 0 0 100%;
  }

  .content2_2, .content3_2 {
    box-sizing: border-box;
    white-space: nowrap;
    flex: 0 0;
    padding: 0;
  }

  .content-2, .content-3 {
    width: 100%;
  }
}

.lexical-table-cell {
  border: none !important;
}

a {
  color: #8c9c92;
  text-decoration: none;
}

a:hover {
  color: #005346;
}

.properties-page {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 18px 10px 58px;
  position: relative;
}

.properties-page:before {
  content: "";
  background: linear-gradient(90deg,
    transparent,
    var(--site-page-top-line-color, #bf9d668c),
    transparent);
  height: 1px;
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
}

body.property-modal-open .properties-page:before, body.property-modal-open .properties-hero:after {
  content: none;
  opacity: 0;
  background: none;
}

.properties-hero {
  width: min(1220px, 100%);
  margin: 4px auto 20px;
  padding: 10px 2px 14px;
  position: relative;
}

.properties-hero--content {
  min-height: 0;
  margin-bottom: 18px;
  padding-top: 0;
}

.properties-hero:after {
  content: "";
  background: linear-gradient(90deg,
    var(--site-page-bottom-line-color, #bf9d66cc),
    #bf9d6600);
  width: clamp(180px, 22vw, 280px);
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.properties-hero__kicker {
  color: #8d6b38;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin: 0 0 8px;
  font-size: .7rem;
  font-weight: 600;
}

.properties-hero__title {
  color: #25332b;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
  font-family: Cormorant Garamond, Georgia, Times New Roman, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.properties-empty {
  color: #fff;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 20px 12px;
}

.properties-carousel {
  --properties-gap: 22px;
  gap: var(--properties-gap);
  grid-template-columns: 1fr;
  align-items: start;
  padding: 12px 4px 24px;
  display: grid;
}

.property-card {
  appearance: none;
  text-align: left;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex;
}

@media (min-width: 769px) {
  .properties-carousel {
    --properties-gap: 66px;
    --properties-pad-x: 76px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 12px var(--properties-pad-x) 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    display: flex;
    overflow-x: auto;
  }

  .properties-carousel::-webkit-scrollbar {
    display: none;
  }

  .property-card {
    scroll-snap-align: center;
    flex: 0 0 clamp(300px, 28vw, 420px);
  }
}

@media (max-width: 768px) {
  .properties-carousel {
    gap: 18px;
    padding: 12px 0 24px;
  }
}

.properties-carousel-wrap {
  position: relative;
}

.properties-controls {
  display: none;
}

@media (min-width: 769px) {
  .properties-controls {
    display: contents;
  }
}

.properties-control {
  top: var(--properties-nav-mid, 50vh);
  --properties-nav-btn-width: clamp(44px, 4vw, 76px);
  height: clamp(44px, 8vh, 72px);
  width: var(--properties-nav-btn-width);
  --properties-edge-gap: max(0px,
    calc(var(--properties-nav-right, 0px) - var(--properties-nav-btn-width)));
  --properties-arrow-offset: clamp(6px, 1vw, 14px);
  color: #14141480;
  cursor: pointer;
  box-shadow: none;
  z-index: 40;
  background: #ffffff1f;
  border: 0;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 56px;
  line-height: 1;
  transition: color .14s, background .14s;
  display: flex;
  position: fixed;
  transform: translateY(-50%);
}

.properties-control--prev {
  left: var(--properties-edge-gap);
  padding-right: var(--properties-arrow-offset);
  justify-content: flex-end;
}

.properties-control--next {
  left: auto;
  right: var(--properties-edge-gap);
  padding-left: var(--properties-arrow-offset);
  justify-content: flex-start;
}

.properties-control:disabled {
  opacity: .35;
  cursor: default;
  background: none;
}

.properties-control:hover:not(:disabled) {
  color: #1414149e;
  background: #ffffff38;
}

.properties-control:active:not(:disabled) {
  background: #ffffff4d;
}

@media (min-width: 769px) {
  .properties-carousel-wrap {
    overflow: hidden;
  }
}

.property-frame {
  background: linear-gradient(135deg, #2b160a 0%, #5a3a1e 45%, #2b160a 100%);
  border-radius: 12px;
  padding: 18px;
  position: relative;
  box-shadow: 0 18px 34px #00000073;
}

.property-frame:before {
  content: "";
  pointer-events: none;
  border-radius: 10px;
  position: absolute;
  inset: 10px;
  box-shadow: inset 0 0 0 2px #ffdca08c, inset 0 0 0 6px #00000040;
}

.property-title {
  color: #2a1b10;
  text-align: center;
  pointer-events: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: linear-gradient(#fff0d2f2, #d2aa78f2);
  border-radius: 999px;
  max-width: 90%;
  margin: 0 auto;
  padding: 8px 12px;
  font-family: Cormorant Garamond, Georgia, Times New Roman, serif;
  font-weight: 700;
  position: absolute;
  top: -14px;
  left: 18px;
  right: 18px;
  box-shadow: 0 10px 18px #00000059;
}

.property-frame__mat {
  aspect-ratio: 4 / 3;
  background: linear-gradient(#f4ead6 0%, #e1d0b0 100%);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  position: relative;
  box-shadow: inset 0 10px 14px #ffffff8c, inset 0 -10px 14px #0003;
}

.property-image-wrap {
  background: #0003;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px #00000040;
}

.property-image {
  object-fit: contain;
  transition: transform .38s;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 768px) {
  .property-image-wrap {
    width: 100%;
  }
}

.property-image--placeholder {
  background: #00000040;
}

.property-description {
  color: #ffffffeb;
  background: #00000047;
  border-radius: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  line-height: 1.52;
}

.property-modal {
  z-index: 5000;
  isolation: isolate;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: #070a08fb;
  justify-content: center;
  align-items: center;
  padding: 18px;
  display: flex;
  position: fixed;
  inset: 0;
}

.property-modal__panel {
  z-index: 1;
  background: linear-gradient(135deg, #2b160a 0%, #5a3a1e 45%, #2b160a 100%);
  border-radius: 14px;
  flex-direction: column;
  width: min(1100px, 100%);
  max-height: 92vh;
  padding: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 48px #0009;
}

.property-modal__panel:before {
  content: "";
  pointer-events: none;
  border-radius: 10px;
  position: absolute;
  inset: 10px;
  box-shadow: inset 0 0 0 2px #ffdca08c, inset 0 0 0 6px #00000040;
}

.property-modal__header {
  background: #00000059;
  border-bottom: 1px solid #ffffff1f;
  border-radius: 8px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  display: grid;
}

.property-modal__title {
  color: #fffffff2;
  text-align: center;
  grid-column: 2;
  justify-self: center;
  font-weight: 700;
}

.property-modal__close {
  appearance: none;
  color: #fffffff2;
  cursor: pointer;
  background: #ffffff1f;
  border: 0;
  border-radius: 10px;
  grid-column: 3;
  justify-self: end;
  padding: 10px 12px;
}

.property-modal__body {
  scrollbar-width: none;
  background: #f2efe8;
  border-radius: 10px;
  flex-direction: column;
  flex: auto;
  gap: 14px;
  min-height: 0;
  padding: 14px 16px 44px;
  display: flex;
  overflow: hidden auto;
}

.property-modal__body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.property-share {
  background: var(--tile-card-bg, linear-gradient(180deg, #fcfaf5, #f2ede3));
  border: 1px solid var(--tile-card-border-color, #2b3c311f);
  border-radius: 14px;
  grid-template-rows: auto 1fr;
  align-items: start;
  padding: 11px 13px;
  display: grid;
  box-shadow: 0 16px 30px #101b1514;
}

.property-share__header {
  text-align: center;
  align-content: start;
  justify-items: center;
  row-gap: 4px;
  display: grid;
}

.property-share__label {
  color: var(--tile-description-color, #32453a);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.property-share__status {
  color: var(--tile-description-color, #53695b);
  min-height: .9rem;
  font-size: .74rem;
  line-height: 1.2;
}

.property-share__page-link {
  color: var(--tile-description-color, #32453a);
  font-size: .9rem;
  text-decoration: none;
}

.property-share__page-link:hover {
  text-decoration: underline;
}

.property-share__actions {
  flex-wrap: wrap;
  justify-content: center;
  align-self: center;
  gap: 8px;
  margin-top: -4px;
  display: flex;
}

.property-share__button {
  appearance: none;
  border: 1px solid var(--tile-card-border-color, #2b3c3124);
  background: var(--tile-title-bg, #ffffffd1);
  min-height: 34px;
  color: var(--tile-title-color, #25342c);
  cursor: pointer;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 7px 12px;
  font-size: .82rem;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color .18s, border-color .18s, color .18s, transform .18s;
  display: inline-flex;
}

.property-share__button:hover {
  background: var(--tile-title-bg, #fff);
  border-color: var(--tile-card-border-color, #2b3c313d);
  color: var(--tile-title-color, #1d2922);
  transform: translateY(-1px);
}

.property-modal__topbar {
  grid-template-columns: minmax(0, 1.7fr) minmax(220px, .7fr);
  align-items: stretch;
  gap: 10px;
  display: grid;
}

.property-modal__topbar > .property-share, .property-modal__topbar > .property-modal__info-card--highlights {
  height: 100%;
}

.property-modal__viewer {
  background: linear-gradient(#fff, #f7f4ee);
  border-radius: 12px;
  flex: none;
  align-self: start;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.property-modal__image-wrap {
  background: linear-gradient(#fff, #f7f4ee);
  width: 100%;
  height: min(58vh, 600px);
  position: relative;
}

.property-modal__image-wrap--zoomed {
  cursor: grab;
  touch-action: none;
  overscroll-behavior: contain;
}

.property-modal__image-wrap--zoomed:active {
  cursor: grabbing;
}

.property-modal__image {
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  width: 100% !important;
  height: 100% !important;
}

.property-modal__image--placeholder {
  height: 520px;
}

.property-modal__nav {
  z-index: 2;
  color: #fffffff2;
  cursor: pointer;
  background: #00000073;
  border: 0;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.property-modal__zoom-controls {
  z-index: 3;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #00000059;
  border-radius: 999px;
  gap: 8px;
  padding: 8px;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 12px;
  box-shadow: inset 0 0 0 1px #ffffff1f;
}

.property-modal__zoom {
  color: #fffffff2;
  cursor: pointer;
  background: #00000073;
  border: 1px solid #ffdca040;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 40px;
}

.property-modal__zoom:disabled {
  opacity: .35;
  cursor: default;
}

.property-modal__zoom:hover:not(:disabled) {
  background: #0000008c;
}

.property-modal__nav:disabled {
  opacity: .35;
  cursor: default;
}

.property-modal__nav--prev {
  left: 12px;
}

.property-modal__nav--next {
  right: 12px;
}

.property-modal__thumbs {
  background: var(--tile-card-bg, #f7f5f0);
  border-top: 1px solid var(--tile-card-border-color, #2b3c3124);
  box-shadow: none;
  flex: none;
  gap: 10px;
  margin-top: 12px;
  padding-top: 14px;
  padding-bottom: 4px;
  display: flex;
  overflow: auto hidden;
}

.property-modal__thumb {
  border: 1px solid var(--tile-card-border-color, #283a2f14);
  cursor: pointer;
  background: none;
  border-radius: 10px;
  flex: none;
  width: 104px;
  padding: 0;
}

.property-modal__thumb-img-wrap {
  border-radius: 10px;
  width: 104px;
  height: 74px;
  position: relative;
  overflow: hidden;
}

.property-modal__thumb-img {
  object-fit: contain;
  width: 100% !important;
  height: 100% !important;
}

.property-modal__description {
  min-height: 0;
  color: var(--tile-description-color, #2d362f);
  background: none;
  border-radius: 0;
  flex: auto;
  padding: 0;
  line-height: 1.82;
  overflow: visible;
}

.property-modal__description .property-description__text {
  max-width: none;
  font-size: 1rem;
  overflow: visible;
}

.property-description__plain {
  max-width: none;
  color: var(--tile-description-color, #2d362f);
  white-space: pre-line;
  font-size: 1rem;
  line-height: 1.82;
  display: block;
}

.property-modal__description--full .property-description__text {
  column-gap: 36px;
  max-width: none;
}

.property-modal__info-card--full {
  overflow: visible;
}

.property-modal__description .property-description__text > p:first-child:first-letter {
  color: var(--tile-description-color, #4b6654);
  font-size: 1.28em;
  font-weight: 700;
}

.properties-page {
  max-width: 1460px;
  padding: 10px 12px 62px;
}

.properties-carousel {
  gap: 24px;
}

.property-card {
  border: 1px solid var(--tile-card-border-color, #25362c24);
  background: var(--tile-card-bg, linear-gradient(180deg, #fffffffc, #f8f6f1fa));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 34px #1a261f1c;
}

.property-card--clickable {
  cursor: pointer;
}

.property-card--clickable:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #bf9d66e6;
}

.property-card:hover {
  border-color: var(--tile-card-border-color, #2b3e333d);
  transform: translateY(-2px);
  box-shadow: 0 26px 46px #14201a33;
}

.property-card__open {
  all: unset;
  cursor: pointer;
  display: block;
  position: relative;
}

.property-frame {
  box-shadow: none;
  background: none;
  border-radius: 0;
  padding: 0;
}

.property-frame:before {
  display: none;
}

.property-title {
  background: var(--tile-title-bg, linear-gradient(90deg, #1f2d25fa, #3f5647f7));
  max-width: none;
  min-height: 74px;
  color: var(--tile-title-color, #f8f5ef);
  box-shadow: none;
  text-align: left;
  letter-spacing: .045em;
  border-bottom: 1px solid var(--tile-card-border-color, #ffffff1a);
  text-shadow: 0 1px #0003;
  border-radius: 0;
  align-items: center;
  margin: 0;
  padding: 15px 18px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  display: flex;
  position: static;
  overflow: hidden;
}

.property-frame__mat {
  box-shadow: none;
  aspect-ratio: 16 / 10;
  background: none;
  border-radius: 0;
  padding: 0;
}

.property-image-wrap {
  box-shadow: none;
  background: #070c080d;
  border-radius: 0;
}

.property-image {
  object-fit: cover;
}

.property-card:hover .property-image {
  transform: scale(1.03);
}

.property-description {
  background: var(--tile-card-bg, transparent);
  color: var(--tile-description-color, #28312c);
  border-radius: 0;
  margin: 0;
  padding: 18px 20px 10px;
  font-size: clamp(.97rem, 1.05vw, 1.05rem);
  line-height: 1.68;
}

.property-description__text {
  overflow: hidden;
}

.property-description--collapsed {
  max-height: var(--property-desc-max, 13.5rem);
  position: relative;
  overflow: hidden;
}

.property-description--collapsed:after {
  display: none;
}

.property-description__text > p:first-child:first-letter {
  color: var(--tile-description-color, #486251);
  font-size: 1.22em;
  font-weight: 700;
}

.properties-page--textonly .properties-carousel {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 12px 4px 24px;
  display: grid;
}

.properties-page--textonly .property-card {
  width: min(1220px, 100%);
  height: auto;
  margin: 0 auto;
  display: block;
}

.properties-page--textonly .property-title {
  width: 100%;
  min-height: unset;
  padding: 18px 24px;
}

.properties-page--textonly .property-description {
  border-left: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 20px 24px 24px;
}

.properties-page--textonly .property-description__text {
  max-width: none;
}

.property-description .property-description__toggle {
  color: var(--tile-description-color, #32453a);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #2b3c311a;
  border: 0;
  border-radius: 999px;
  margin-top: 10px;
  padding: 8px 14px;
  font-size: .8rem;
  transition: background-color .18s, color .18s;
}

.property-description .property-description__toggle:hover {
  color: var(--tile-description-color, #25342c);
  background: #2b3c312e;
}

.property-highlights {
  background: var(--tile-card-bg, transparent);
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 6px 20px 22px;
  list-style: none;
  display: flex;
}

.property-highlight {
  color: var(--tile-description-color, #32453a);
  letter-spacing: .02em;
  font-size: .82rem;
  line-height: 1.2;
}

.property-highlights--inline {
  gap: 8px 0;
}

.property-highlights--inline .property-highlight {
  text-transform: none;
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
  align-items: center;
  margin: 0 12px 0 0;
  padding: 0 12px 0 0;
  line-height: 1.35;
  display: inline-flex;
  position: relative;
}

.property-highlights--inline .property-highlight:after {
  content: "";
  background: #32453a3d;
  width: 1px;
  height: .95em;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.property-highlights--inline .property-highlight:last-child {
  margin-right: 0;
  padding-right: 0;
}

.property-highlights--inline .property-highlight:last-child:after {
  display: none;
}

.property-modal {
  background: #070a08;
}

.property-modal__panel {
  isolation: isolate;
  background: linear-gradient(#fff, #f7f5f0);
  border: 1px solid #bf9d6647;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 30px 62px #0a110d70;
}

.property-modal__panel:before {
  display: none;
}

.property-modal__header {
  background: linear-gradient(90deg, #212f27f7, #415749f5);
  border-bottom: 1px solid #25362c1f;
  border-radius: 18px 18px 0 0;
}

.property-modal__title {
  color: #f6f3ec;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  font-size: .92rem;
}

.property-modal__close {
  background: #fff3;
  transition: background-color .18s;
}

.property-modal__close:hover {
  background: #ffffff47;
}

.property-modal__body {
  background: var(--tile-card-bg, #f7f5f0);
  gap: 10px;
  padding: 18px 18px 20px;
}

.property-modal__viewer {
  box-shadow: none;
  border: 0;
  border-radius: 12px;
}

.property-modal__hero-grid, .property-detail-page__hero-grid {
  flex-direction: column;
  gap: 18px;
  display: flex;
}

.property-modal__media-column, .property-modal__sidebar, .property-detail-page__media, .property-detail-page__sidebar {
  min-width: 0;
}

.property-modal__viewer-shell, .property-modal__media-card, .property-modal__info-card, .property-detail-page__media-card {
  border: 1px solid var(--tile-card-border-color, #2b3c311f);
  background: var(--tile-card-bg, linear-gradient(180deg, #fff, #f7f4ee));
  border-radius: 18px;
  box-shadow: 0 16px 30px #101b1514;
}

.property-modal__media-card {
  background: var(--tile-card-bg, #f7f4ee);
}

.property-modal__viewer-shell, .property-modal__media-card, .property-detail-page__media-card {
  padding: 14px;
}

.property-modal__topbar > * {
  min-width: 0;
}

.property-modal__media-topbar {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  display: flex;
}

.property-modal__eyebrow, .property-modal__section-title {
  color: var(--tile-description-color, #53695b);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  font-size: .76rem;
  font-weight: 700;
}

.property-modal__counter {
  background: var(--tile-title-bg, #2b3c3114);
  min-height: 32px;
  color: var(--tile-title-color, #314238);
  white-space: nowrap;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  font-size: .82rem;
  display: inline-flex;
}

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

.property-detail-page__sidebar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.property-modal__sidebar > *, .property-detail-page__sidebar > * {
  min-width: 0;
}

.property-modal__info-card {
  padding: 12px 14px;
}

.property-modal__info-card--highlights {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.property-modal__info-card--description {
  flex-direction: column;
  flex: auto;
  gap: 12px;
  min-height: 0;
  display: flex;
}

.property-modal__info-card--empty {
  color: var(--tile-description-color, #53695b);
}

.property-modal__empty {
  color: var(--tile-description-color, #617568);
  font-size: .96rem;
  line-height: 1.6;
}

.property-modal__info-card--full {
  margin-top: 4px;
  padding: 20px 22px;
}

.property-modal__section-title {
  margin: 0 0 6px;
  line-height: 1.2;
}

.property-modal__info-card--highlights .property-modal__section-title, .property-share__header {
  align-self: center;
  min-height: 1.85rem;
  margin-top: 0;
}

.property-highlights--modal {
  gap: 4px 0;
  padding: 0;
}

.property-modal__info-card--highlights .property-highlight {
  font-size: .78rem;
}

.property-modal__info-card--highlights .property-highlights--inline {
  justify-content: center;
  row-gap: 6px;
}

.property-modal__info-card--highlights .property-highlights {
  border-left: 0;
  padding-left: 0;
}

.property-modal__info-card--highlights .property-highlights--inline .property-highlight {
  margin-right: 0;
  padding-right: 0;
}

.property-modal__info-card--highlights .property-highlights--inline .property-highlight:after {
  display: none;
}

.property-modal__info-card--highlights .property-highlights--inline .property-highlight + .property-highlight {
  margin-left: 10px;
  padding-left: 10px;
}

.property-modal__info-card--highlights .property-highlights--inline .property-highlight + .property-highlight:before {
  content: "";
  background: #32453a3d;
  width: 1px;
  height: .95em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.property-modal__image-wrap {
  background: var(--tile-card-bg, #f7f5f0);
  border-radius: 12px;
}

.property-modal__nav, .property-modal__zoom {
  background: #1d2a229e;
  transition: background-color .18s;
}

.property-modal__nav:hover:not(:disabled), .property-modal__zoom:hover:not(:disabled) {
  background: #18261ec7;
}

.property-modal__thumb--active {
  border-color: #3f5244cc;
}

.property-detail-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px 12px 72px;
  position: relative;
}

.property-detail-page:before {
  content: "";
  background: linear-gradient(90deg,
    transparent,
    var(--site-page-top-line-color, #bf9d668c),
    transparent);
  height: 1px;
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
}

.property-detail-page__topbar {
  margin-bottom: 14px;
}

.property-detail-page__back {
  color: var(--tile-description-color, #32453a);
  font-size: .96rem;
  text-decoration: none;
}

.property-detail-page__back:hover {
  text-decoration: underline;
}

.property-detail-page__title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.property-detail-page__hero {
  width: min(1220px, 100%);
  margin: 4px auto 22px;
}

.property-detail-page__kicker {
  margin-bottom: 8px;
}

.property-detail-page__content {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.property-detail-page__main {
  min-width: 0;
}

.property-detail-page__media-card {
  padding: 16px;
}

.property-detail-page__viewer {
  box-shadow: 0 24px 40px #121c1626;
}

.property-detail-page__image-wrap {
  height: min(64vh, 720px);
}

.property-detail-page__description {
  min-height: 220px;
  margin-top: 20px;
}

.property-detail-page__share-card .property-share__actions {
  justify-content: center;
}

.property-modal__body > .property-modal__info-card--description {
  flex: none;
  min-height: auto;
}

.property-modal__body .property-modal__description {
  flex: none;
  min-height: auto;
  overflow: visible;
}

@media (min-width: 769px) {
  .properties-controls {
    display: none !important;
  }

  .properties-carousel-wrap {
    overflow: visible;
  }

  .properties-carousel {
    scroll-snap-type: none;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 10px 0 26px;
    display: grid;
    overflow: visible;
  }

  .property-card {
    border: 1px solid var(--tile-card-border-color, #2b3c3129);
    background: var(--tile-card-bg, linear-gradient(180deg, #fff, #f8f6f1));
    border-radius: 20px;
    grid-template-rows: 1fr 96px;
    grid-template-columns: minmax(360px, 46%) minmax(0, 1fr);
    gap: 0;
    width: min(1220px, 100%);
    height: 460px;
    margin: 0 auto;
    display: grid;
    box-shadow: 0 18px 34px #19241e24;
  }

  .property-card__open {
    grid-area: 1 / 1 / span 2;
    min-height: 100%;
  }

  .property-frame, .property-frame__mat, .property-image-wrap {
    height: 100%;
  }

  .property-title {
    border-bottom: 1px solid var(--tile-card-border-color, #ffffff24);
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 82px;
    max-height: 82px;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.35;
    display: -webkit-box;
  }

  .property-frame__mat {
    aspect-ratio: unset;
    min-height: 100%;
  }

  .property-description {
    border-left: 1px solid var(--tile-card-border-color, #2b3c311f);
    flex-direction: column;
    grid-area: 1 / 2;
    height: 100%;
    min-height: 0;
    padding: 20px 24px 12px;
    display: flex;
    overflow: hidden;
  }

  .property-description__text {
    display: block;
    overflow: visible;
  }

  .property-description__text--clamped {
    line-clamp: 8;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

  .property-description .property-description__toggle {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: auto;
  }

  .property-highlights {
    border-left: 1px solid var(--tile-card-border-color, #2b3c311f);
    grid-area: 2 / 2;
    align-self: end;
    height: 96px;
    min-height: 96px;
    padding: 2px 24px 22px;
    overflow: hidden;
  }

  .property-highlights--inline {
    max-height: 72px;
    overflow: hidden;
  }

  .property-highlights--inline .property-highlight {
    font-size: .86rem;
  }

  .properties-page--textonly .properties-carousel {
    grid-template-columns: 1fr;
    padding: 12px 0 24px;
    display: grid;
    overflow: visible;
  }

  .properties-page--textonly .property-card {
    grid-template-rows: none;
    grid-template-columns: none;
    height: auto;
  }

  .properties-page--textonly .property-title {
    line-clamp: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
    min-height: 88px;
    max-height: none;
    line-height: 1.35;
    display: flex;
  }

  .properties-page--textonly .property-description {
    display: block;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .property-modal__hero-grid, .property-detail-page__hero-grid {
    gap: 16px;
  }

  .property-modal__body {
    gap: 14px;
    padding: 12px 12px 16px;
  }

  .property-modal__panel {
    max-height: 96vh;
  }

  .property-modal__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .property-modal__title {
    font-size: .98rem;
    line-height: 1.35;
  }

  .property-modal__viewer-shell, .property-modal__media-card, .property-detail-page__media-card, .property-modal__info-card, .property-share {
    border-radius: 16px;
    padding: 12px;
  }

  .property-modal__topbar {
    grid-template-columns: 1fr;
  }

  .property-modal__media-topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .property-modal__media-card {
    display: block;
  }

  .property-modal__counter {
    min-height: 30px;
    padding: 5px 10px;
  }

  .property-modal__image-wrap {
    height: min(42vh, 360px);
  }

  .property-modal__description {
    padding: 0;
    overflow: visible;
  }

  .property-modal__description .property-description__text {
    max-width: none;
    font-size: .98rem;
    line-height: 1.76;
  }

  .property-description__plain {
    font-size: .98rem;
    line-height: 1.76;
  }

  .property-modal__info-card--full {
    padding: 14px 14px 16px;
  }

  .property-modal__thumb-toggle {
    padding-top: 8px;
  }

  .property-modal__thumbs {
    flex-direction: row;
    gap: 10px;
    margin-top: 0;
    padding-top: 8px;
    padding-bottom: 4px;
    overflow: auto hidden;
  }

  .property-modal__thumb-img-wrap {
    width: 88px;
    height: 64px;
  }

  .property-modal__nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
  }

  .property-modal__zoom-controls {
    padding: 6px;
    bottom: 8px;
    left: 8px;
  }

  .property-share__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .property-detail-page {
    padding: 14px 10px 56px;
  }

  .property-detail-page__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .property-detail-page__sidebar {
    gap: 14px;
  }

  .property-detail-page__hero {
    margin-bottom: 18px;
  }

  .property-detail-page__image-wrap {
    height: min(44vh, 360px);
  }

  .properties-hero {
    margin-bottom: 14px;
  }

  .properties-hero__kicker {
    letter-spacing: .16em;
    font-size: .66rem;
  }
}

/*# sourceMappingURL=src_styles_00dt9~8._.css.map*/