@charset "UTF-8";
/*
Theme Name:  Be Still Getaways
Description: Boutique hospitality theme for Be Still Getaways, Central Virginia.
Version:     1.0
*/
/* ============================================================
   SCSS COMPILATION ORDER
   Import partials in the correct cascade order
   ============================================================ */
/* ============================================================
   CUSTOM PROPERTIES / VARIABLES
   Tokens not covered by theme.json presets
   ============================================================ */
:root {
  /* Raw colour values — use WP preset vars in blocks,
     these are for components and custom CSS */
  --bs-teal: #005870;
  --bs-teal-lt: #2E7D8C;
  --bs-sage: #5C7A6E;
  --bs-sage-lt: #8FADA4;
  --bs-cream: #faf7f2;
  --bs-sand: #E2DDD6;
  --bs-charcoal: #0F0F0E;
  --bs-dk: #005870;
  --bs-white: #FDFCFA;
  --bs-warm-rust: #C1623F;
  --bs-color-border: #e0d9cf;
  --bs-text-muted: #888888;
  /* Font family shortcuts */
  --bs-sans: var(--wp--preset--font-family--jost);
  --bs-serif: var(--wp--preset--font-family--cormorant);
  /* Easing */
  --bs-expo: cubic-bezier(0.19, 1, 0.22, 1);
  /* Teal gradient rule — reused in multiple sections */
  --bs-teal-rule: linear-gradient(
                      90deg,
                      transparent,
                      #1C5C69 35%,
                      #2E7D8C 65%,
                      transparent
                    );
  /* Layout */
  --bs-nav-h: 74px;
  --bs-nav-h-sc: 62px;
}

/* ============================================================
   WORDPRESS PRESET REFERENCES
   SCSS variables that reference WP-generated CSS custom properties
   ============================================================ */
/* ============================================================
   SCSS FUNCTIONS & MIXINS
   Reusable SCSS utilities for the theme
   ============================================================ */
/* ============================================================
   RESET & BASE
   CSS Reset and baseline styles
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

/* ============================================================
   TYPOGRAPHY
   Base font styles and text elements
   ============================================================ */
body {
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.82;
  color: var(--wp--preset--color--charcoal);
  background: var(--wp--preset--color--white);
  overflow-x: hidden;
}

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

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

/* ============================================================
   GLOBAL ELEMENTS
   Site-wide structural elements
   ============================================================ */
.wp-site-blocks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.page-template-internal-pages .wp-site-blocks > .wp-block-group {
  flex: 1;
  display: flex;
  align-items: center;
}

footer.wp-block-template-part {
  margin-top: auto;
}

/* ============================================================
   FLEX UTILITIES
   Flexbox helper classes
   ============================================================ */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   Reusable text styling classes
   ============================================================ */
.bs-tag,
.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
  font-family: var(--wp--preset--font-family--jost);
  color: var(--wp--preset--color--teal);
  margin-bottom: 14px;
}

.is-style-dark .bs-tag,
.has-dk-background-color .bs-tag {
  color: var(--wp--preset--color--teal-lt);
}

.bs-teal-rule {
  height: 2px;
  background: var(--bs-teal-rule);
  border: none;
}

.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--bs-expo), transform 0.9s var(--bs-expo);
}
.rv.on {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.07s;
}

.d2 {
  transition-delay: 0.14s;
}

.d3 {
  transition-delay: 0.21s;
}

.d4 {
  transition-delay: 0.28s;
}

/* ============================================================
   SPACING UTILITIES
   Margin and padding helper classes
   ============================================================ */
/* ============================================================
   COLOR UTILITIES
   Color helper classes
   ============================================================ */
/* ============================================================
   HEADER
   Site header styles
   ============================================================ */
/* ============================================================
   FOOTER
   Site footer with grid layout
   ============================================================ */
.footer-grid,
.ft-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 54px;
  margin-bottom: 52px;
}

.ft-brand .brand-name,
.ft-brand .bn,
.ft-br .brand-name,
.ft-br .bn {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wp--preset--color--white);
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}
.ft-brand .brand-sub,
.ft-brand .bs,
.ft-br .brand-sub,
.ft-br .bs {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wp--preset--color--teal);
  margin-bottom: 17px;
}
.ft-brand p,
.ft-br p {
  font-size: 12.5px;
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.4);
  max-width: 266px;
  margin-bottom: 20px;
}

.footer-col h4,
.ft-col h4 {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--teal);
  margin-bottom: 17px;
}
.footer-col ul,
.ft-col ul {
  list-style: none;
}
.footer-col ul li + li,
.ft-col ul li + li {
  margin-top: 9px;
}
.footer-col ul li a,
.ft-col ul li a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}
.footer-col ul li a:hover,
.ft-col ul li a:hover {
  color: var(--wp--preset--color--white);
}

.ft-ct a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
  display: block;
  margin-bottom: 8px;
}
.ft-ct a:hover {
  color: var(--wp--preset--color--teal);
}

.footer-bottom,
.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 13px;
}
.footer-bottom p,
.ft-bot p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.21);
}
.footer-bottom a,
.ft-bot a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.29);
  transition: color 0.3s;
}
.footer-bottom a:hover,
.ft-bot a:hover {
  color: var(--wp--preset--color--teal);
}

@media (max-width: 1024px) {
  .footer-grid,
  .ft-g {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .footer-grid,
  .ft-g {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* ============================================================
   NAVIGATION
   Main navigation and mobile menu
   ============================================================ */
nav#mainNav.sc,
.site-header.sc .wp-block-navigation {
  background: rgba(250, 250, 249, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: var(--bs-nav-h-sc);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}

.site-logo-wrap,
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo-main,
.logo .lm {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--wp--preset--color--white);
  transition: color 0.4s;
}

.logo-sub,
.logo .ls {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wp--preset--color--teal-lt);
  transition: color 0.4s;
}

nav#mainNav.sc .lm {
  color: var(--wp--preset--color--charcoal);
}

nav#mainNav.sc .ls {
  color: var(--wp--preset--color--teal);
}

.wp-block-navigation__container,
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
}
.wp-block-navigation__container a,
.nav-links a {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s;
}
.wp-block-navigation__container a:hover,
.nav-links a:hover {
  color: var(--wp--preset--color--teal);
}

nav#mainNav.sc .nav-links a {
  color: var(--wp--preset--color--charcoal);
}

.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
  margin-top: -2px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--wp--preset--color--white);
  transition: background 0.4s;
}

nav#mainNav.sc .burger span {
  background: var(--wp--preset--color--charcoal);
}

@media (max-width: 768px) {
  .wp-block-navigation,
  nav#mainNav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
    width: 100%;
    padding: 16px;
    gap: 24px;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container > .wp-block-navigation-item {
    width: 100%;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__label {
    font-size: 16px;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
    padding: 8px 0 0 !important;
    gap: 16px;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    padding: 0;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container .wp-block-navigation-item__label {
    font-size: 12px;
    font-weight: 400;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
    top: 24px;
    right: 24px;
  }
}
/* Override WordPress navigation responsive breakpoint to 768px */
@media (min-width: 768px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block !important;
  }
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .wp-block-navigation__responsive-container {
    display: none !important;
  }
  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container.is-menu-open {
    display: flex !important;
  }
}
/* ============================================================
   GRID LAYOUTS
   Generic grid systems
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   BUTTONS
   Supplements theme.json button element defaults
   ============================================================ */
.wp-block-button__link svg,
.btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.wp-block-button__link:hover svg,
.btn:hover svg {
  transform: translateX(4px);
}

.wp-block-button.is-style-primary .wp-block-button__link {
  background: var(--wp--preset--color--teal);
  border-color: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
}

.btn-teal {
  background: var(--wp--preset--color--teal);
  border-color: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
  border-radius: 0;
}

.wp-block-button.is-style-secondary .wp-block-button__link {
  background: transparent;
  border-width: 1.5px;
  border-style: solid;
  border-color: var(--wp--preset--color--charcoal);
  color: var(--wp--preset--color--charcoal);
}
.wp-block-button.is-style-secondary .wp-block-button__link:hover {
  background: var(--wp--preset--color--charcoal);
  color: var(--wp--preset--color--white);
}

.btn-dark {
  background: transparent;
  border-width: 1.5px;
  border-style: solid;
  border-color: var(--wp--preset--color--charcoal);
  color: var(--wp--preset--color--charcoal);
  border-radius: 0;
}
.btn-dark:hover {
  background: var(--wp--preset--color--charcoal);
  color: var(--wp--preset--color--white);
}

.wp-block-button.is-style-ghost .wp-block-button__link {
  border: 1px solid;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--wp--preset--color--white);
}
.wp-block-button.is-style-ghost .wp-block-button__link:hover {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--charcoal);
}

.btn-light {
  border: 1px solid;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--wp--preset--color--white);
}
.btn-light:hover {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--charcoal);
}

.wp-block-button.is-style-warm .wp-block-button__link,
.btn-warm {
  background: var(--bs-warm-rust);
  border-color: var(--bs-warm-rust);
  color: var(--wp--preset--color--white);
}
.wp-block-button.is-style-warm .wp-block-button__link:hover,
.btn-warm:hover {
  background: #A84E2E;
  border-color: #A84E2E;
}

/* ============================================================
   PROPERTY CARDS
   Stay cards for property listings
   ============================================================ */
.stays-section {
  background: var(--wp--preset--color--cream);
  padding: var(--wp--preset--spacing--3-xl) 0;
}

.stays-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}

.property-grid,
.s-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.property-card,
.card {
  background: var(--wp--preset--color--white);
  overflow: hidden;
  transition: transform 0.4s var(--bs-expo), box-shadow 0.4s var(--bs-expo);
}
.property-card:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.09);
}
.property-card:hover .card-image img,
.property-card:hover .c-img img,
.card:hover .card-image img,
.card:hover .c-img img {
  transform: scale(1.06);
}
.property-card:hover .card-link,
.property-card:hover .c-lnk,
.card:hover .card-link,
.card:hover .c-lnk {
  color: var(--wp--preset--color--teal);
  gap: 11px;
}

.card-image,
.c-img {
  position: relative;
  height: 244px;
  overflow: hidden;
}
.card-image img,
.c-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s var(--bs-expo);
}

.card-badge,
.badge {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 11px;
}

.card-body,
.c-body {
  padding: 22px 22px 24px;
}

.card-location,
.c-loc {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--sage);
  margin-bottom: 6px;
}

.card-name,
.c-name {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--wp--preset--color--charcoal);
  margin-bottom: 10px;
}

.card-meta,
.c-meta {
  display: flex;
  gap: 13px;
  font-size: 11.5px;
  color: #8A8A84;
  margin-bottom: 17px;
}
.card-meta span,
.c-meta span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.card-meta svg,
.c-meta svg {
  color: var(--wp--preset--color--sage-lt);
  flex-shrink: 0;
}

.card-link,
.c-lnk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--charcoal);
  transition: color 0.3s, gap 0.3s;
}
.card-link svg,
.c-lnk svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.property-card.is-featured,
.card.ft {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.property-card.is-featured .card-image,
.property-card.is-featured .c-img,
.card.ft .card-image,
.card.ft .c-img {
  height: 100%;
  min-height: 280px;
}
.property-card.is-featured .card-body,
.property-card.is-featured .c-body,
.card.ft .card-body,
.card.ft .c-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.property-card.is-featured .card-name,
.property-card.is-featured .c-name,
.card.ft .card-name,
.card.ft .c-name {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.card-description,
.c-desc {
  font-size: 13.5px;
  line-height: 1.76;
  color: #6A6A64;
  margin-bottom: 22px;
}

.mid-term-strip,
.mt-strip {
  margin-top: 32px;
  background: var(--wp--preset--color--dk);
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  position: relative;
}
.mid-term-strip::before,
.mt-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bs-teal-rule);
}

.mt-title,
.mt-t {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--wp--preset--color--white);
  line-height: 1.2;
}
.mt-title em,
.mt-t em {
  font-style: italic;
  color: var(--wp--preset--color--teal-lt);
}

@media (max-width: 768px) {
  .property-grid,
  .s-grid {
    grid-template-columns: 1fr;
  }
  .property-card.is-featured,
  .card.ft {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .property-card.is-featured .card-image,
  .property-card.is-featured .c-img,
  .card.ft .card-image,
  .card.ft .c-img {
    min-height: 220px;
  }
}
/* ============================================================
   HERO SECTION
   Full-screen hero with background image
   ============================================================ */
.wp-block-cover.is-style-hero,
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .wp-block-cover.is-style-hero,
  .hero {
    min-height: 90vh !important;
  }
}

.hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s ease-out;
}
.hero-bg img.on {
  transform: scale(1);
}

.hero-ov,
.wp-block-cover__background.is-style-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(8, 24, 28, 0.48) 0%, rgba(8, 24, 28, 0.04) 30%, rgba(8, 24, 28, 0.04) 65%, rgba(8, 24, 28, 0.58) 100%);
}

.hero-eyebrow {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
  animation: hFade 1.2s var(--bs-expo) 0.3s both;
}

@keyframes hFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-logo {
  animation: hFade 1.5s var(--bs-expo) 0.15s both;
}

.hero-word {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-weight: 400;
  font-size: clamp(5rem, 14vw, 14rem);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--wp--preset--color--white);
  text-align: center;
  animation: hWord 2.5s var(--bs-expo) 0.3s both;
}

@keyframes hWord {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-explore {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  animation: hFade 1s var(--bs-expo) 1.4s both;
  cursor: pointer;
}
.hero-explore span {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s;
}
.hero-explore svg {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s, transform 0.4s;
}
.hero-explore:hover span {
  color: var(--wp--preset--color--white);
}
.hero-explore:hover svg {
  color: var(--wp--preset--color--white);
  transform: translateY(4px);
}

.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 4;
  background: var(--bs-teal-rule);
}

/* ============================================================
   TESTIMONIALS
   Testimonial cards with horizontal scroll
   ============================================================ */
.testimonials-section,
.testi {
  background: var(--wp--preset--color--cream);
  padding: var(--wp--preset--spacing--3-xl) 0;
  overflow: hidden;
}

.testimonials-track,
.t-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials-track::-webkit-scrollbar,
.t-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card,
.t-card {
  flex: 0 0 calc(33.33% - 12px);
  min-width: 276px;
  background: var(--wp--preset--color--white);
  padding: 34px;
  scroll-snap-align: start;
  position: relative;
}
.testimonial-card::before,
.t-card::before {
  content: "“";
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--wp--preset--color--teal);
  opacity: 0.26;
  position: absolute;
  top: 17px;
  left: 26px;
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.t-stars svg {
  color: var(--wp--preset--color--teal);
}

.testimonial-text,
.t-txt {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 1.04rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.76;
  color: var(--wp--preset--color--charcoal);
  margin-bottom: 22px;
}

.testimonial-author,
.t-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-av {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: var(--wp--preset--color--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 0.95rem;
  color: var(--wp--preset--color--charcoal);
  flex-shrink: 0;
}

.t-nm {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wp--preset--color--charcoal);
  display: block;
}

.t-pl {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 10px;
  color: var(--wp--preset--color--sage);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonial-card,
  .t-card {
    flex: 0 0 calc(85% - 12px);
  }
}
/* ============================================================
   BOOKING WIDGET
   Sticky booking form widget for property pages
   ============================================================ */
.bw-total-label, .bw-price-title, .bw-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bw-field input,
.bw-field select {
  width: 100%;
  background: var(--bs-white);
  border: 1px solid var(--bs-sand);
  padding: 10px 13px;
  font-family: var(--wp--preset--font-family--jost);
  font-size: 12px;
  color: var(--bs-charcoal);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  transition: border-color 0.22s;
}
.bw-field input:focus,
.bw-field select:focus {
  border-color: var(--bs-teal);
}

.bw-book-now, .bw-search {
  width: 100%;
  background: var(--bs-teal);
  border: none;
  color: var(--bs-white);
  font-family: var(--wp--preset--font-family--jost);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
  justify-content: center;
  transition: background 0.3s;
}
.bw-book-now:hover, .bw-search:hover {
  background: var(--bs-teal-lt);
}

.book-widget {
  position: sticky;
  top: 78px;
  background: var(--bs-cream);
  padding: 24px;
  flex-direction: column;
  gap: 0;
}
.book-widget br {
  display: none;
}
@media (max-width: 1024px) {
  .book-widget {
    position: relative;
    top: auto;
    margin-top: 44px;
  }
}

.bw-title {
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bs-charcoal);
  margin-bottom: 18px;
}

.bw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.bw-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.bw-field label {
  color: rgba(15, 15, 14, 0.42);
}
.bw-field input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.5;
}

.bw-occ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  background: var(--bs-white);
  border: 1px solid var(--bs-sand);
  padding: 10px 13px;
  margin-bottom: 14px;
  transition: border-color 0.22s;
}
.bw-occ:hover {
  border-color: var(--bs-sand);
}

.bw-occ-label {
  font-size: 12px;
  color: var(--bs-charcoal);
}

.bw-occ-ctrl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
}

.bw-occ-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--bs-sand);
  background: none;
  cursor: pointer;
  font-size: 12px;
  color: var(--bs-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  transition: border-color 0.2s, background 0.2s;
}
.bw-occ-btn:hover {
  border-color: var(--bs-teal);
  background: rgba(28, 92, 105, 0.06);
}

.bw-occ-num {
  font-size: 12px;
  font-weight: 500;
  min-width: 16px;
  text-align: center;
}

.bw-search {
  margin-bottom: 20px;
}
.bw-search.bw-search-outline {
  background: transparent;
  border: 1px solid var(--bs-teal);
  color: var(--bs-teal);
}
.bw-search.bw-search-outline:hover {
  background: rgba(28, 92, 105, 0.08);
  border-color: var(--bs-teal-lt);
  color: var(--bs-teal-lt);
}

.bw-book-now {
  display: inline-flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
  margin-bottom: 14px;
}
.bw-book-now:hover {
  color: var(--bs-white);
}

.bw-divider {
  height: 1px;
  background: var(--bs-sand);
  margin: 4px 0 16px;
}

.bw-price-title {
  letter-spacing: 0.1em;
  color: var(--bs-charcoal);
  margin-bottom: 4px;
}

.bw-nights {
  font-size: 16px;
  color: rgba(15, 15, 14, 0.44);
  margin-bottom: 14px;
}

.bw-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.bw-line.fees .bw-line-label, .bw-line.taxes .bw-line-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.bw-line.fees .bw-line-label svg, .bw-line.taxes .bw-line-label svg {
  width: 10px;
  height: 10px;
  color: rgba(15, 15, 14, 0.36);
}

.bw-line-label {
  font-size: 14px;
  color: rgba(15, 15, 14, 0.6);
}

.bw-line-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--bs-charcoal);
}

.bw-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--bs-sand);
  margin-top: 4px;
  margin-bottom: 14px;
}

.bw-total-label {
  letter-spacing: 0.06em;
  color: var(--bs-charcoal);
}

.bw-total-val {
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--bs-charcoal);
}

.bw-due-now {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  background: rgba(28, 92, 105, 0.08);
  border: 1px solid rgba(28, 92, 105, 0.2);
  padding: 10px 13px;
  margin-bottom: 6px;
}

.bw-due-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bs-teal);
}
.bw-due-label svg {
  width: 11px;
  height: 11px;
}

.bw-due-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-teal);
}

.bw-checkin-due {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 14, 0.04);
  padding: 10px 13px;
  margin-bottom: 14px;
}

.bw-checkin-label {
  font-size: 12px;
  color: rgba(15, 15, 14, 0.5);
}

.bw-checkin-val {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(15, 15, 14, 0.6);
}

.bw-cancel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--bs-teal);
  cursor: pointer;
  border-top: 1px solid var(--bs-sand);
  padding-top: 12px;
}
.bw-cancel svg {
  width: 10px;
  height: 10px;
}
.bw-cancel:hover {
  color: var(--bs-teal-lt);
}

@keyframes shimmer {
  from {
    background-position: -1000px 0;
  }
  to {
    background-position: 1000px 0;
  }
}
.bw-shimmer {
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
  background-size: 1000px 100%;
  border-radius: 4px;
  animation: shimmer 1.5s linear infinite;
}

.bw-shimmer-line {
  height: 14px;
  margin-bottom: 10px;
}
.bw-shimmer-line.tall {
  height: 20px;
}
.bw-shimmer-line.short {
  width: 60%;
}

/* ============================================================
   PROPERTY DETAIL
   Single property page styles
   ============================================================ */
.shortcode-single-property br {
  display: none;
}

.hero {
  position: relative;
  height: 68vh;
  min-height: 440px;
  overflow: hidden;
  margin-top: 0;
}
.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero img.on {
  transform: scale(1);
}
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 24, 28, 0.3) 0%, rgba(8, 24, 28, 0.04) 40%, rgba(8, 24, 28, 0.52) 100%);
}
.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bs-teal-rule);
}
.hero-gallery-bar {
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 6px;
  align-items: center;
}

.hg-thumb {
  width: 68px;
  height: 50px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  opacity: 0.74;
  transition: opacity 0.25s, border-color 0.25s;
}
.hg-thumb:hover {
  opacity: 1;
  border-color: var(--bs-teal-lt);
}
.hg-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hg-more {
  width: 68px;
  height: 50px;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}
.hg-more:hover {
  background: rgba(28, 92, 105, 0.6);
}
.hg-more span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bs-white);
}

.pg-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.pg-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 54px;
  padding: 44px 0 80px;
  align-items: start;
}

.bc {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  gap: 7px;
  margin-bottom: 18px;
}
.bc a,
.bc span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 15, 14, 0.36);
  transition: color 0.2s;
}
.bc a:hover {
  color: var(--bs-teal);
}
.bc .sep {
  color: rgba(15, 15, 14, 0.2);
}
.bc .cur {
  color: rgba(15, 15, 14, 0.56);
}

.prop-loc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bs-sage);
  margin-bottom: 10px;
}
.prop-loc svg {
  color: var(--bs-sage-lt);
  flex-shrink: 0;
}

.prop-name {
  font-family: var(--wp--preset--font-family--cormorant);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--bs-charcoal);
  margin-bottom: 16px;
}

.prop-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.ps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(15, 15, 14, 0.56);
}
.ps svg {
  color: var(--bs-sage-lt);
  flex-shrink: 0;
}

.sec-title {
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bs-charcoal);
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--bs-sand);
  margin-top: 36px;
}
.sec-title:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.desc {
  font-size: 14px;
  line-height: 1.86;
  color: rgba(15, 15, 14, 0.62);
}
.desc p + p {
  margin-top: 12px;
}
.desc .room-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs-teal);
  margin-top: 16px;
  margin-bottom: 4px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs-teal);
  cursor: pointer;
  background: none;
  border: none;
  transition: gap 0.25s;
}
.read-more-btn:hover {
  gap: 10px;
}
.read-more-btn svg {
  width: 10px;
  height: 10px;
}

.desc-overflow {
  overflow: hidden;
  transition: max-height 0.5s var(--bs-expo);
}
.desc-overflow.collapsed {
  max-height: 180px;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.desc-overflow.expanded {
  max-height: 2000px;
  mask-image: none;
  -webkit-mask-image: none;
}

.fac-overflow {
  overflow: hidden;
  transition: max-height 0.5s var(--bs-expo);
}
.fac-overflow.collapsed {
  max-height: 180px;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.fac-overflow.expanded {
  max-height: 2000px;
}

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

.fac {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 7px;
  font-size: 14px;
  color: rgba(15, 15, 14, 0.58);
}
.fac svg {
  color: var(--bs-sage);
  flex-shrink: 0;
}
.fac.na {
  color: rgba(15, 15, 14, 0.28);
}
.fac.na svg {
  color: rgba(15, 15, 14, 0.2);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs-teal);
  cursor: pointer;
  transition: gap 0.25s;
  background: none;
  border: none;
}
.view-all-link:hover {
  gap: 9px;
}
.view-all-link svg {
  width: 10px;
  height: 10px;
}

.hero-gallery-bar {
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hg-thumb {
  width: 68px;
  height: 50px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  opacity: 0.74;
  transition: opacity 0.25s, border-color 0.25s;
}
.hg-thumb:hover {
  opacity: 1;
  border-color: var(--bs-teal-lt);
}
.hg-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hg-more {
  width: 68px;
  height: 50px;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}
.hg-more:hover {
  background: rgba(28, 92, 105, 0.6);
}
.hg-more span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bs-white);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.contact-row br {
  display: none;
}

.ct-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ct-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 15, 14, 0.36);
}

.ct-val {
  font-size: 13px;
  color: var(--bs-charcoal);
}
.ct-val a {
  color: var(--bs-teal);
  transition: color 0.2s;
}
.ct-val a:hover {
  color: var(--bs-teal-lt);
}

.map-box {
  width: 100%;
  height: 220px;
  background: var(--bs-cream);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 16px;
}
.map-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.map-box-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bs-white);
  background: var(--bs-teal);
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.map-btn:hover {
  background: var(--bs-teal-lt);
}
.map-btn br {
  display: none;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(15, 15, 14, 0.08) 19px, rgba(15, 15, 14, 0.08) 20px), repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(15, 15, 14, 0.08) 19px, rgba(15, 15, 14, 0.08) 20px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}

.lb-inner {
  position: relative;
  max-width: 960px;
  width: 100%;
}
.lb-inner img {
  width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.lb-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.64);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.lb-close:hover {
  color: var(--bs-white);
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.32);
  border: none;
  border-radius: 50%;
  color: var(--bs-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lb-prev {
  left: -54px;
}

.lb-next {
  right: -54px;
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(28, 92, 105, 0.6);
}

.lb-count {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1024px) {
  .hero {
    height: 52vw;
    min-height: 260px;
  }
  .pg-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hg-thumb,
  .hg-more {
    width: 52px;
    height: 38px;
  }
  .lb-prev {
    left: -14px;
  }
  .lb-next {
    right: -14px;
  }
}
@media (max-width: 768px) {
  .pg-wrap {
    padding: 0 20px;
  }
  .fac-grid {
    grid-template-columns: 1fr;
  }
  .hero-gallery-bar {
    bottom: 10px;
    right: 10px;
    gap: 4px;
  }
  .hg-thumb,
  .hg-more {
    width: 44px;
    height: 32px;
  }
  .hg-more span {
    font-size: 9px;
  }
}
/* ============================================================
   PROPERTY LISTING / ARCHIVE PAGE
   All styles for the property listing archive page
   ============================================================ */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.pg-hero {
  position: relative;
  height: 46vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
}
.pg-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.pg-hero-bg img.on {
  transform: scale(1);
}

.pg-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 24, 28, 0.52) 0%, rgba(8, 24, 28, 0.18) 50%, rgba(8, 24, 28, 0.66) 100%);
}

.pg-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pg-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 12px;
  animation: hFd 1s var(--bs-expo) 0.2s both;
}

.pg-title {
  font-family: var(--wp--preset--font-family--serif);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: 0.06em;
  color: var(--bs-white);
  line-height: 1;
  animation: hWd 1.4s var(--bs-expo) 0.1s both;
}

.pg-hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 3;
  background: var(--bs-teal-rule);
}

.pg-bc {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  animation: hFd 1s var(--bs-expo) 0.8s both;
}
.pg-bc a,
.pg-bc span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
}
.pg-bc a:hover {
  color: rgba(255, 255, 255, 0.76);
}
.pg-bc .cur {
  color: rgba(255, 255, 255, 0.66);
}

@keyframes hFd {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hWd {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ms-wrap {
  position: relative;
}

.ms-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bs-white);
  border: 1px solid var(--bs-sand);
  padding: 8px 12px;
  cursor: pointer;
  font-family: var(--wp--preset--font-family--jost);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-text-muted);
  white-space: nowrap;
  min-width: 120px;
  transition: all 200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ms-trigger:hover {
  border-color: var(--bs-teal);
  color: var(--bs-teal);
}
.ms-trigger.open {
  border-color: var(--bs-teal);
  color: var(--bs-teal);
  border-bottom-color: transparent;
  background: var(--bs-white);
  z-index: 101;
  position: relative;
}
.ms-trigger.has-value {
  color: var(--bs-teal);
  border-color: var(--bs-teal);
}

.ms-trigger-label {
  flex: 1;
}

.ms-count {
  background: var(--bs-teal);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 1px 6px;
  border-radius: 9999px;
  min-width: 18px;
  text-align: center;
}

.ms-caret {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  margin-top: 2px;
}

.ms-trigger.open .ms-caret {
  transform: rotate(-135deg) translateY(-2px);
}

.ms-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: var(--bs-white);
  border: 1px solid var(--bs-teal);
  min-width: 200px;
  max-height: 260px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 180ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.ms-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.ms-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: var(--bs-charcoal);
  transition: background 120ms;
  border-bottom: 1px solid var(--bs-sand);
}
.ms-option:last-child {
  border-bottom: none;
}
.ms-option:hover {
  background: rgba(0, 88, 112, 0.08);
}
.ms-option.selected {
  background: rgba(0, 88, 112, 0.08);
  color: var(--bs-teal);
}
.ms-option.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: transparent !important;
}
.ms-option.disabled .ms-checkbox {
  opacity: 0.4;
}

.ms-checkbox {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--bs-sand);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms;
}

.ms-option.selected .ms-checkbox {
  background: var(--bs-teal);
  border-color: var(--bs-teal);
}

.ms-check {
  width: 8px;
  height: 5px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 120ms;
}

.ms-option.selected .ms-check {
  opacity: 1;
}

.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bs-sand);
  background: var(--bs-white);
  min-height: 0;
  transition: all 200ms;
}
.pills-row .pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 88, 112, 0.08);
  color: var(--bs-teal);
  font-family: var(--wp--preset--font-family--jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 88, 112, 0.2);
  animation: pillIn 200ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pillIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.pill-x {
  width: 14px;
  height: 14px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 120ms;
  color: var(--bs-teal);
  font-size: 12px;
  line-height: 1;
}
.pill-x:hover {
  background: var(--bs-teal);
  color: #fff;
}

.pill-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs-text-muted);
  margin-right: 2px;
}

.props {
  background: var(--bs-cream);
  padding: 32px 0 64px;
}

.card {
  background: var(--bs-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}
.card:hover .c-img img {
  transform: scale(1.05);
}
.card:hover .c-book {
  color: var(--bs-teal);
  gap: 7px;
}
.card.hide {
  display: none;
}

.c-img {
  overflow: hidden;
  flex-shrink: 0;
}
.c-img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.c-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bs-sand);
}

.c-img-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(18px);
  transform: scale(1.05);
  transition: opacity 0.4s;
  z-index: 1;
}

.c-img-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.c-img-full.loaded {
  opacity: 1;
}

.c-img-wrapper.loaded::after {
  display: none;
}

@keyframes c-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.c-body {
  padding: 13px 15px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.c-loc svg {
  color: var(--bs-sage-lt);
  flex-shrink: 0;
  width: 9px;
  height: 9px;
}

.c-name {
  font-family: var(--wp--preset--font-family--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--bs-charcoal);
  margin-bottom: 5px;
}

.c-stats {
  font-size: 12px;
  color: rgba(15, 15, 14, 0.46);
}

.c-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--bs-sand);
}

.c-price {
  font-family: var(--wp--preset--font-family--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--bs-charcoal);
  line-height: 1;
}
.c-price small {
  font-family: var(--wp--preset--font-family--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 15, 14, 0.34);
  display: block;
  margin-top: 2px;
}

.c-book {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 15, 14, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color 0.22s, gap 0.22s;
}
.c-book svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
}

.empty {
  display: none;
  text-align: center;
  padding: 64px 20px;
  grid-column: 1/-1;
}
.empty.show {
  display: block;
}
.empty h3 {
  font-family: var(--wp--preset--font-family--serif);
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 9px;
}
.empty p {
  font-size: 13px;
  color: rgba(15, 15, 14, 0.42);
  max-width: 320px;
  margin: 0 auto 22px;
  line-height: 1.78;
}

.mid {
  background: var(--bs-dk);
  padding: 24px 0;
  position: relative;
}
.mid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bs-teal-rule);
}

.mid-t {
  font-family: var(--wp--preset--font-family--serif);
  font-size: 1.32rem;
  font-weight: 300;
  color: var(--bs-white);
  line-height: 1.2;
}
.mid-t em {
  font-style: italic;
  color: var(--bs-teal-lt);
}

.mid-s {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-bar {
    top: auto;
    position: relative;
  }
  .search-band {
    top: var(--bs-nav-h-sc);
  }
  .search-form {
    flex-wrap: wrap;
    height: auto;
  }
  .sf {
    flex: 0 0 50%;
    min-height: 56px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sf:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sf-go {
    flex: 0 0 100%;
    height: 48px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .fi-right .fi-sort {
    display: none;
  }
  .sf {
    flex: 0 0 100%;
    border-right: none;
  }
  .mid .wrap {
    padding: 18px 20px;
  }
}
@media (max-width: 440px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.properties-view-toggle-wrap {
  padding-top: 2rem;
  background: var(--bs-cream);
  visibility: hidden;
  height: 0 !important;
  padding: 0 !important;
}
.properties-view-toggle-wrap .properties-view-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.properties-view-toggle-wrap .toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 6px 12px;
  border: 2px solid #333;
  background: #fff;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.properties-view-toggle-wrap .toggle-btn:hover {
  border-color: var(--wp--preset--color--teal-lt);
  color: var(--wp--preset--color--teal-lt);
}
.properties-view-toggle-wrap .toggle-btn.active {
  background: var(--wp--preset--color--teal-lt);
  border-color: var(--wp--preset--color--teal-lt);
  color: white;
}
.properties-view-toggle-wrap .toggle-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   FILTERS
   Filter bar and pills for property listings
   ============================================================ */
.filter-pill {
  display: inline-block;
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 15, 14, 0.48);
  border: 1px solid var(--wp--preset--color--sand);
  padding: 4px 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-pill:hover {
  border-color: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--teal);
}
.filter-pill.is-active {
  background: var(--wp--preset--color--teal);
  border-color: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
}

.filter-bar {
  background: var(--bs-white);
  border-bottom: 1px solid var(--bs-sand);
  top: calc(var(--bs-nav-h-sc) + 66px);
  z-index: 190;
}

.fi {
  display: flex;
  align-items: center;
  height: 48px;
  gap: 16px;
}

.fi-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  overflow-x: visible;
  scrollbar-width: none;
}
.fi-left::-webkit-scrollbar {
  display: none;
}

.fi-multi {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.fi-multi label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 15, 14, 0.32);
  white-space: nowrap;
}
.fi-multi select {
  background: none;
  border: 1px solid var(--bs-sand);
  font-family: var(--wp--preset--font-family--sans);
  font-size: 10px;
  color: var(--bs-charcoal);
  padding: 4px 8px;
  cursor: pointer;
  outline: none;
  min-width: 120px;
  max-width: 180px;
}
.fi-multi select:hover, .fi-multi select:focus {
  border-color: var(--bs-teal);
}

.fi-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 15, 14, 0.32);
  margin-right: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pills {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pills::-webkit-scrollbar {
  display: none;
}

.fi-clear-filters {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-teal);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.fi-clear-filters:hover {
  text-decoration: underline;
}
.fi-clear-filters.show {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 768px) {
  .wrap.fi {
    flex-wrap: wrap;
    height: auto;
    padding: 8px;
    justify-content: space-between;
  }
  .fi-left {
    display: none;
  }
  .fi-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--bs-charcoal);
    flex: 0;
  }
  .fi-mobile-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
  }
  .fi-mobile-toggle:hover {
    color: var(--bs-teal);
  }
}
.fi-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: fadeIn 0.2s ease-in-out;
}
.fi-modal.open {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .fi-modal {
    display: none !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.fi-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--bs-white);
  border-bottom: 1px solid var(--bs-sand);
}
.fi-modal-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-charcoal);
}

.fi-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--bs-charcoal);
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fi-modal-close:hover {
  color: var(--bs-teal);
}

.fi-modal-content {
  flex: 1;
  overflow-y: auto;
  background: var(--bs-white);
  animation: slideUp 0.3s ease-out;
}
.fi-modal-content .ms-wrap {
  padding: 0;
  border: none;
  margin: 0;
  width: 100%;
}
.fi-modal-content .ms-wrap .ms-trigger {
  padding: 16px;
  border-bottom: 1px solid var(--bs-sand);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bs-white);
}
.fi-modal-content .ms-wrap .ms-trigger:hover {
  background: #f9f7f2;
}
.fi-modal-content .ms-wrap .ms-trigger-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bs-charcoal);
}
.fi-modal-content .ms-wrap .ms-caret {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--bs-charcoal);
  border-bottom: 2px solid var(--bs-charcoal);
  transform: rotate(-45deg);
  transition: transform 0.2s;
  margin-left: 8px;
}
.fi-modal-content .ms-wrap .ms-panel {
  max-height: 300px;
  overflow-y: auto;
  background: #faf8f5;
  border-bottom: 1px solid var(--bs-sand);
}
.fi-modal-content .ms-wrap .ms-panel .ms-option {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--bs-charcoal);
  border-bottom: 1px solid var(--bs-color-border);
  transition: background 0.2s;
}
.fi-modal-content .ms-wrap .ms-panel .ms-option:hover {
  background: var(--bs-white);
}
.fi-modal-content .ms-wrap .ms-panel .ms-option.selected {
  background: #f0f0f0;
  font-weight: 500;
}
.fi-modal-content .ms-wrap .ms-panel .ms-option .ms-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--bs-charcoal);
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 2px;
}
.fi-modal-content .ms-wrap .ms-panel .ms-option .ms-checkbox .ms-check {
  display: none;
  width: 3px;
  height: 7px;
  border: solid var(--bs-charcoal);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
.fi-modal-content .ms-wrap .ms-panel .ms-option.selected .ms-checkbox {
  background: var(--bs-charcoal);
  border-color: var(--bs-charcoal);
}
.fi-modal-content .ms-wrap .ms-panel .ms-option.selected .ms-checkbox .ms-check {
  display: block;
}

.fi-modal-section {
  padding: 16px;
  border-bottom: 1px solid var(--bs-sand);
}
.fi-modal-section h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bs-charcoal);
}

.fi-modal-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.fi-modal-section-title:hover {
  color: var(--bs-teal);
}
.fi-modal-section-title h3 {
  margin: 0;
  flex: 1;
}

.fi-modal-chevron {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}

.fi-modal-section-title[aria-expanded=false] .fi-modal-chevron {
  transform: rotate(-90deg);
}

.fi-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  overflow: visible;
  transition: all 0.3s ease;
}
.fi-modal-options[style*="display: none"] {
  display: none !important;
  margin-top: 0;
}

.fi-modal-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.fi-modal-option:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.fi-modal-option input[type=checkbox],
.fi-modal-option input[type=radio] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--bs-teal);
}
.fi-modal-option span {
  font-size: 14px;
  color: var(--bs-charcoal);
  flex: 1;
}

.fi-modal-footer {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--bs-white);
  border-top: 1px solid var(--bs-sand);
}

.fi-modal-apply,
.fi-modal-clear,
.fi-modal-close-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bs-teal);
  color: white;
}
.fi-modal-apply:hover,
.fi-modal-clear:hover,
.fi-modal-close-btn:hover {
  background: var(--bs-teal-lt);
}
.fi-modal-apply:active,
.fi-modal-clear:active,
.fi-modal-close-btn:active {
  transform: scale(0.98);
}

@media (min-width: 769px) {
  .fi-mobile-toggle {
    display: none;
  }
  .fi-left {
    display: flex;
  }
}
.fi-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 14px;
  flex-shrink: 0;
}

.fi-count {
  font-size: 12px;
  color: rgba(15, 15, 14, 0.36);
  white-space: nowrap;
}

.fi-count b {
  color: var(--bs-charcoal);
}

.fi-sort {
  background: none;
  border: 1px solid var(--bs-sand);
  font-family: var(--wp--preset--font-family--sans);
  font-size: 12px;
  color: var(--bs-charcoal);
  padding: 8px 12px;
  cursor: pointer;
  outline: none;
}

.fi-sort:hover {
  border-color: var(--bs-teal);
}

.fi-clear,
.fi-clear-filters {
  font-size: 10px;
  font-weight: 400;
  text-decoration: underline;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-sage-lt);
  cursor: pointer;
  background: none;
  border: none;
  border-right: solid 1px var(--bs-charcoal);
  padding-right: 8px;
  opacity: 1;
  display: none;
}

.fi-clear:hover,
.fi-clear-filters:hover {
  color: var(--bs-teal);
}

.fi-clear.show,
.fi-clear-filters.show {
  display: block;
}

/* ============================================================
   GALLERY
   Photo gallery grid and thumbnails
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gal-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gal-item img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s var(--bs-expo);
}
.gal-item:hover img {
  transform: scale(1.06);
}

.gal-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-more-overlay span {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-white);
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ============================================================
   TRUST BAR
   Social proof and trust badges
   ============================================================ */
.trust-bar,
.tbar {
  background: var(--wp--preset--color--dk);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item svg,
.ti svg {
  color: var(--wp--preset--color--teal);
  flex-shrink: 0;
}

.trust-bar .trust-bar-divider {
  width: 1px !important;
  height: 22px;
  align-self: center;
  margin: 0;
  border: none;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .trust-bar .trust-bar-divider {
    display: none;
  }
}
.trust-bar .wp-block-outermost-icon-block {
  margin: 0;
  line-height: 0;
  flex-shrink: 0;
}
.trust-bar .wp-block-outermost-icon-block svg {
  color: var(--wp--preset--color--gold-lt);
  stroke: currentColor;
}

/* ============================================================
   SEARCH
   Search band with filters and booking form
   ============================================================ */
.search-band {
  background: var(--bs-dk);
  top: var(--bs-nav-h-sc);
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.search-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bs-teal-rule);
}

.search-form {
  display: flex;
  align-items: stretch;
  height: 66px;
}

.sf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s;
  cursor: pointer;
}
.sf:hover {
  background: rgba(255, 255, 255, 0.04);
}
.sf-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sf-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bs-white);
}

.sf input,
.sf select {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--wp--preset--font-family--sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  z-index: 2;
}

.sf-selected-date {
  font-size: 13px;
  color: var(--bs-white);
  display: block;
  position: absolute;
  z-index: 1;
}

/* Hide browser's native datetime text on empty input */
.sf input[type=date]::-webkit-datetime-edit,
.sf input[type=date]::-webkit-datetime-edit-fields-wrapper {
  font-size: 0;
  color: transparent;
}

/* Show datetime text only when input has a value */
.sf input[type=date].has-value::-webkit-datetime-edit,
.sf input[type=date].has-value::-webkit-datetime-edit-fields-wrapper {
  font-size: 13px;
  color: var(--bs-white);
}

/* Hide input's native placeholder on all devices */
.sf input[type=date]::-moz-placeholder {
  color: transparent;
  opacity: 0;
}
.sf input[type=date]::placeholder {
  color: transparent;
  opacity: 0;
}

.sf input[type=date]::-webkit-input-placeholder {
  color: transparent;
  opacity: 0;
}

/* Input styling */
.sf input[type=date] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.86);
}

.sf input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(0.4) sepia(1) hue-rotate(145deg);
  cursor: pointer;
  opacity: 0.6;
}

.sf select option {
  background: var(--bs-dk);
  color: var(--bs-white);
}

.occ-row {
  display: flex;
  gap: 11px;
}

.occ-btn {
  width: 23px;
  height: 23px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: none;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.occ-btn:hover {
  border-color: var(--bs-teal-lt);
  color: var(--bs-white);
  background: rgba(28, 92, 105, 0.28);
}

.occ-n {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  min-width: 14px;
  text-align: center;
}

.sf-go {
  padding: 0 28px;
  background: var(--bs-teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--wp--preset--font-family--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-white);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s;
}
.sf-go:hover {
  background: var(--bs-teal-lt);
}
.sf-go svg {
  width: 13px;
  height: 13px;
}

/* LOADING OVERLAY */
.search-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-loading-overlay.active {
  opacity: 1;
}

.search-loading-content {
  text-align: center;
  color: var(--bs-white);
}

.search-loading-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--bs-teal-lt);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.search-loading-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bs-white);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .search-band {
    top: var(--bs-nav-h-sc);
  }
  .search-band .wrap {
    padding: 0;
  }
  .search-form {
    flex-wrap: wrap;
    height: auto;
    padding: 0;
  }
  .sf {
    flex: 0 0 50%;
    min-height: 56px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
  }
  .sf:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sf-go {
    flex: 0 0 100%;
    height: 48px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .sf {
    flex: 0 0 100%;
    border-right: none;
    gap: 4px;
  }
  .sf:nth-child(odd) {
    border-right: none;
  }
}
/* ============================================================
   APPLICATION FORM STYLES
   Simple form styling for the application form shortcode
   ============================================================ */
.bsg-application-form {
  max-width: 600px;
  margin: 0 auto;
}

.bsg-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 14px;
  font-weight: 500;
  color: var(--wp--preset--color--charcoal);
}

.form-group textarea {
  width: 100%;
}

.required {
  color: #c1623f;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--teal);
  box-shadow: 0 0 0 3px rgba(0, 88, 112, 0.1);
}
.form-group input:required:invalid,
.form-group select:required:invalid,
.form-group textarea:required:invalid {
  border-color: #c1623f;
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.bsg-submit {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}
.bsg-submit:hover {
  background-color: #004560;
  transform: translateY(-2px);
}
.bsg-submit:active {
  transform: translateY(0);
}

.form-message {
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}
.form-message.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.form-message.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bsg-form {
    gap: 18px;
  }
  .form-group {
    gap: 6px;
  }
  .form-group label {
    font-size: 13px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 13px;
  }
}
/* ============================================================
   PAGINATION
   Property listing pagination
   ============================================================ */
.wp-block-query-pagination {
  font-family: var(--wp--preset--font-family--jost);
  font-weight: 500;
}
.wp-block-query-pagination a {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--wp--preset--color--sand);
  border-radius: 6px;
  transition: all 0.2s ease;
}
.wp-block-query-pagination a:hover {
  background: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--teal);
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
  padding: 10px 16px;
  background: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
  border-radius: 6px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--wp--preset--font-family--jost);
}
.pagination .page-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--wp--preset--color--sand);
  border-radius: 6px;
  color: var(--wp--preset--color--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.pagination .page-link:hover {
  background: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.pagination .page-link svg {
  fill: currentColor;
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.pagination .page-link.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination .page-prev:hover svg {
  transform: translateX(-3px);
}
.pagination .page-next:hover svg {
  transform: translateX(3px);
}
.pagination .page-text {
  margin: 0;
  padding: 0 10px;
  color: var(--wp--preset--color--charcoal);
  font-size: 0.95rem;
  font-weight: 400;
}
.pagination .page-text .current {
  font-weight: 600;
  color: var(--wp--preset--color--teal);
}
.pagination .page-text .total {
  font-weight: 500;
}

@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    gap: 12px;
  }
  .pagination .page-link {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .pagination .page-text {
    width: 100%;
    text-align: center;
  }
}
/* ============================================================
   LOCATIONS
   Locations map and list
   ============================================================ */
.locations-section,
.locs {
  padding: var(--wp--preset--spacing--3-xl) 0;
}

.locations-inner,
.loc-in {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.loc-map {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--wp--preset--color--sand);
  overflow: hidden;
}
.loc-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.54;
  mix-blend-mode: multiply;
}

.pin {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--wp--preset--color--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.pin::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1.5px solid var(--wp--preset--color--teal);
  border-radius: 50%;
  animation: pinPulse 2.4s ease-in-out infinite;
}
.pin .tip {
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--wp--preset--color--charcoal);
  color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.pin:hover .tip {
  opacity: 1;
}

@keyframes pinPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(2.2);
  }
}
/* ============================================================
   SERVICES
   Services grid section
   ============================================================ */
.svcs-watermark,
.svc-wm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: clamp(5rem, 12vw, 13rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.sv-icon,
.sv-ico {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  color: var(--wp--preset--color--teal);
  transition: border-color 0.3s, background 0.3s;
}

.service-item:hover .sv-icon,
.sv:hover .sv-ico {
  border-color: var(--wp--preset--color--teal);
  background: rgba(28, 92, 105, 0.12);
}

.sv-title,
.sv-t {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--wp--preset--color--white);
  margin-bottom: 11px;
  line-height: 1.25;
}

.sv-desc,
.sv-d {
  font-size: 13px;
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.47);
}

.sv-link,
.sv-l {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--teal-lt);
  transition: gap 0.3s;
}
.sv-link svg,
.sv-l svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.service-item:hover .sv-link,
.sv:hover .sv-l {
  gap: 11px;
  color: var(--bs-cream);
}

.wp-block-column.is-style-service-item {
  background: var(--wp--preset--color--dk);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.wp-block-column.is-style-service-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.wp-block-column.is-style-service-item:hover::after {
  width: calc(100% - 60px);
}
.wp-block-column.is-style-service-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 0;
  height: 2px;
  background: var(--bs-white);
  transition: width 0.4s var(--bs-expo);
}

@media (max-width: 768px) {
  .services-grid,
  .sv-grid {
    grid-template-columns: 1fr;
  }
}
.services-section > .wp-block-group {
  display: flex;
  flex-direction: column;
}

.services-section > .wp-block-group .wp-block-buttons {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* ============================================================
   INTRO SECTION
   Two-column text + images layout
   ============================================================ */
.section-intro {
  padding: var(--wp--preset--spacing--4xl) 0 var(--wp--preset--spacing--3-xl);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-txt p {
  font-size: 15.5px;
  line-height: 1.82;
  color: #5E5E58;
  margin-top: 20px;
}
.intro-txt .cta-row {
  margin-top: 36px;
}

.intro-imgs {
  position: relative;
  height: 520px;
}

.img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  height: 86%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-acc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 6px solid var(--wp--preset--color--white);
}

.img-stat {
  position: absolute;
  bottom: 34px;
  right: -14px;
  background: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
  padding: 18px 22px;
  text-align: center;
}
.img-stat .stat-number {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.img-stat .stat-label {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .intro-grid,
  .intro-in {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .intro-imgs {
    height: 300px;
  }
  .img-stat {
    display: none;
  }
}
/* ============================================================
   LIGHTBOX
   Image lightbox overlay and controls
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}

.lb-inner {
  position: relative;
  max-width: 960px;
  width: 100%;
}
.lb-inner img {
  width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.lb-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover {
  color: var(--bs-white);
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bs-white);
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-prev:hover,
.lb-next:hover {
  background: rgba(28, 92, 105, 0.6);
}

.lb-prev {
  left: -54px;
}

.lb-next {
  right: -54px;
}

.lb-count {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .lb-prev {
    left: -14px;
  }
  .lb-next {
    right: -14px;
  }
}
@media (max-width: 768px) {
  .lightbox {
    padding: 10px;
  }
  .lb-close {
    top: -30px;
    font-size: 24px;
  }
  .lb-prev,
  .lb-next {
    width: 36px;
    height: 36px;
    left: 5px;
  }
  .lb-next {
    right: 5px;
    left: auto;
  }
  .lb-count {
    bottom: -25px;
    font-size: 10px;
  }
}
/* ============================================================
   PROPERTY LISTING MAP VIEW
   ============================================================ */
.properties-grid-view[style*="display: none"] {
  display: none !important;
}

.properties-map-view[style*="display: block"] {
  display: block !important;
}
.properties-map-view[style*="display: none"] {
  display: none !important;
}

.props.props--map {
  padding: 32px 64px 64px;
}

.map-with-list {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
  align-items: start;
}

.properties-map-aside {
  height: 70vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.properties-map-aside::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.properties-map-aside .grid {
  grid-template-columns: 1fr 1fr;
  padding: 0;
}
.properties-map-aside .c-img {
  height: auto;
}

.properties-map-aside .property-list-item.selected > a {
  border-left: 4px solid var(--wp--preset--color--teal-lt);
}

.properties-map-container {
  height: 100%;
  overflow: hidden;
}

/* ============================================================
   BLOCK OVERRIDES
   WordPress core blocks styled to match design system
   ============================================================ */
.wp-block-separator {
  border: none;
  height: 2px;
  background: var(--bs-teal-rule);
  margin: var(--wp--preset--spacing--xl) auto;
}
.wp-block-separator.is-style-dots {
  background: transparent;
  border-top: 1px solid var(--wp--preset--color--sand);
}
.wp-block-separator.is-style-wide {
  background: transparent;
  border-top: 1px solid var(--bs-color-border);
  margin: var(--wp--preset--spacing--xl) auto;
}

.wp-block-pullquote {
  border-top: 1px solid var(--wp--preset--color--sand);
  border-bottom: 1px solid var(--wp--preset--color--sand);
}
.wp-block-pullquote blockquote p {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-weight: 300;
  font-style: italic;
}

.wp-block-quote {
  border-left: 2px solid var(--wp--preset--color--teal);
  padding-left: var(--wp--preset--spacing--lg);
}

.wp-block-image figcaption {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 11px;
  color: #8A8A84;
  letter-spacing: 0.06em;
}

.wp-block-table td,
.wp-block-table th {
  border-color: var(--wp--preset--color--sand);
  font-size: 13.5px;
}
.wp-block-table th {
  font-family: var(--wp--preset--font-family--jost);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wp--preset--color--teal);
  background: var(--wp--preset--color--cream);
}

.property-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--bs-expo);
  background: var(--wp--preset--color--white);
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.property-card:hover .wp-block-cover img,
.property-card:hover .wp-block-post-featured-image img {
  transform: scale(1.05);
}
.property-card .wp-block-cover,
.property-card .wp-block-post-featured-image {
  overflow: hidden;
}
.property-card .wp-block-cover img,
.property-card .wp-block-post-featured-image img {
  transition: transform 0.4s var(--bs-expo);
}

.wp-block-post-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wp-block-post-terms a {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--teal);
  background: var(--wp--preset--color--cream);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.wp-block-post-terms a:hover {
  background: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--white);
}

.property-details-wrapper {
  padding: var(--wp--preset--spacing--50) 0;
}

.property-hero-info {
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--50);
}

.property-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--wp--preset--spacing--30);
  font-size: 1.5rem;
}
.property-rating .star {
  color: var(--bs-sand);
}
.property-rating .star.filled {
  color: var(--bs-warm-rust);
}

.property-location-marker {
  margin-bottom: var(--wp--preset--spacing--30);
}
.property-location-marker .location-link,
.property-location-marker .location-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bs-teal);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.property-location-marker .location-link:hover {
  color: var(--bs-teal-lt);
}
.property-location-marker svg {
  width: 16px;
  height: 16px;
}

.property-name {
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--wp--preset--spacing--30);
}

.property-short-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--bs-charcoal);
  max-width: 700px;
  margin: 0 auto var(--wp--preset--spacing--40);
}

.property-price-display {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bs-cream);
  border-radius: 8px;
  font-family: var(--wp--preset--font-family--jost);
}
.property-price-display .price-label {
  font-size: 0.875rem;
  color: var(--bs-charcoal);
}
.property-price-display .price-amount {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--bs-teal);
}
.property-price-display .price-period {
  font-size: 0.875rem;
  color: var(--bs-charcoal);
}

.property-additional-info {
  margin-top: var(--wp--preset--spacing--50);
  padding: var(--wp--preset--spacing--40);
  background: var(--bs-cream);
  border-radius: 8px;
}

.property-check-times,
.property-address {
  margin-bottom: var(--wp--preset--spacing--30);
}
.property-check-times p,
.property-address p {
  margin: 0 0 var(--wp--preset--spacing--20);
  line-height: 1.6;
}
.property-check-times strong,
.property-address strong {
  color: var(--bs-teal);
  font-weight: 600;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--50);
}

.press-bar,
.press {
  padding: 54px 0;
  border-top: 1px solid var(--wp--preset--color--sand);
}

.press-inner,
.press-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.press-label,
.p-lbl {
  font-family: var(--wp--preset--font-family--jost);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ADACA6;
}

.press-name,
.p-nm {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: 1.04rem;
  color: #ADACA6;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  white-space: nowrap;
}

.press-name:hover,
.p-nm:hover {
  color: var(--wp--preset--color--charcoal);
}

@media (max-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .property-name {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .properties-grid {
    grid-template-columns: 1fr;
  }
  .property-name {
    font-size: 2rem;
  }
  .property-price-display {
    padding: 10px 18px;
  }
  .property-price-display .price-amount {
    font-size: 1.5rem;
  }
  .wp-block-cover, .wp-block-cover-image {
    padding: 24px !important;
  }
}
/* ============================================================
   Properties Listing Shortcode
   Remove padding from parent containers
   ============================================================ */
.entry-content:has(.shortcode-properties-listing),
.wp-block-post-content:has(.shortcode-properties-listing) {
  padding: 0;
}

.shortcode-properties-listing {
  max-width: 100%;
}

/* ============================================================
   BLOCK STYLES
   Custom block styles registered in functions.php
   ============================================================ */
.wp-block-column.is-style-service-item {
  background: var(--wp--preset--color--dk);
  padding: 40px 30px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.wp-block-column.is-style-service-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.wp-block-column.is-style-service-item:hover::after {
  width: calc(100% - 60px);
}
.wp-block-column.is-style-service-item::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 0;
  height: 1px;
  background: var(--wp--preset--color--teal);
  transition: width 0.4s var(--bs-expo);
}

.wp-block-list.is-style-locations {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wp-block-list.is-style-locations li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--wp--preset--color--sand);
  color: var(--wp--preset--color--charcoal);
  cursor: pointer;
  transition: color 0.25s;
}
.wp-block-list.is-style-locations li:last-child {
  border-bottom: none;
}
.wp-block-list.is-style-locations li:hover {
  color: var(--wp--preset--color--teal);
}
.wp-block-list.is-style-locations li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--wp--preset--color--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.is-style-dark .bs-tag,
.is-style-dark .tag {
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   TABLET STYLES (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid,
  .sv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid,
  .ft-g {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
  .locations-inner,
  .loc-in {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-bar {
    top: auto;
    position: relative;
  }
  .search-band {
    top: var(--bs-nav-h-sc);
  }
  .search-form {
    flex-wrap: wrap;
    height: auto;
  }
  .sf {
    flex: 0 0 50%;
    min-height: 56px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sf:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sf-go {
    flex: 0 0 100%;
    height: 48px;
    justify-content: center;
  }
  .pg-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .book-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
    z-index: 99;
    height: 64px;
    padding: 0;
    overflow: hidden;
    background: var(--bs-cream);
    border-top: 1px solid var(--bs-sand);
    transition: height padding 0.3s ease, 0.3s padding 0.3s ease, ease padding 0.3s ease;
  }
  .book-widget .bw-title {
    margin: 0;
    padding: 18px 24px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }
  .book-widget .bw-title::after {
    content: "›";
    font-size: 18px;
    color: var(--bs-charcoal);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.3s, 0.3s 0.3s, ease 0.3s;
    display: flex;
    align-items: center;
    transform: rotate(-90deg);
  }
  .book-widget.bw-expanded {
    height: auto;
    padding: 24px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .book-widget.bw-expanded .bw-title {
    padding: 0 0 18px 0;
    border-bottom: 1px solid var(--bs-sand);
    margin-bottom: 18px;
  }
  .book-widget.bw-expanded .bw-title::after {
    transform: rotate(90deg);
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .book-widget .bw-row {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .pg-wrap {
    padding-bottom: 56px;
  }
  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ============================================================
   MOBILE STYLES (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .wp-block-navigation,
  nav#mainNav {
    padding: 0 20px;
  }
  .custom-site-header {
    flex-wrap: wrap;
  }
  .custom-site-header .wp-block-buttons {
    flex: 0 0 100%;
  }
  .custom-site-header .wp-block-buttons .wp-block-button {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  .intro-grid,
  .intro-in {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .intro-imgs {
    height: 300px;
  }
  .img-stat {
    display: none;
  }
  .property-grid,
  .s-grid {
    grid-template-columns: 1fr;
  }
  .property-card.is-featured,
  .card.ft {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .property-card.is-featured .card-image,
  .card.ft .c-img {
    min-height: 220px;
  }
  .services-grid,
  .sv-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card,
  .t-card {
    flex: 0 0 88%;
  }
  .footer-grid,
  .ft-g {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .trust-bar,
  .tbar {
    gap: 18px;
    padding: 16px 20px;
  }
  .trust-divider,
  .td {
    display: none;
  }
  .properties-grid {
    grid-template-columns: 1fr;
  }
  .single-property .wp-block-columns {
    flex-direction: column;
  }
  .pagination {
    gap: 12px;
    margin-top: 40px;
    padding: 20px 0;
  }
  .pagination .page-link {
    padding: 8px 14px;
    font-size: 0.85rem;
    gap: 6px;
  }
  .pagination .page-text {
    font-size: 0.85rem;
    padding: 0 5px;
  }
  .wrap {
    padding: 0 20px;
  }
  .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .fi-right .fi-sort {
    display: none;
  }
  .sf {
    flex: 0 0 100%;
    border-right: none;
  }
  .mid .wrap {
    padding: 18px 20px;
  }
  .pg-wrap {
    padding: 0 20px;
  }
  .hero {
    height: 52vw;
    min-height: 260px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hg-thumb,
  .hg-more {
    width: 52px;
    height: 38px;
  }
  .fac-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lb-prev {
    left: -14px;
  }
  .lb-next {
    right: -14px;
  }
}
/* ============================================================
   SMALL MOBILE STYLES (max-width: 600px, 480px, 440px)
   ============================================================ */
@media (max-width: 600px) {
  .trust-bar .trust-bar-divider {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero-word {
    font-size: clamp(4rem, 22vw, 8rem);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 440px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=style.css.map */
