  :root {
    --bg: #0d0e10;
    --bg-soft: #15171a;
    --panel: #f5f0e8;
    --panel-strong: #fbf8f3;
    --paper: #efe8de;
    --ink: #171513;
    --ink-soft: #635b54;
    --muted: #8b8177;
    --line: rgba(31, 25, 21, 0.12);
    --line-strong: rgba(255, 255, 255, 0.14);
    --champagne: #c0535c;
    --champagne-soft: #c2666e;
    --champagne-deep: #bd404a;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(13, 14, 16, 0.18);
    --shadow-soft: 0 18px 44px rgba(13, 14, 16, 0.10);
    --radius: 28px;
    --radius-sm: 18px;
    --content: 1240px;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; font-size: 100%!important; }

  body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: #f4f4f4;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  .site-inner{
    padding: 0!important;
    margin: 0!important;
  }
  .wrap{
    padding: 0;
    margin: 0;
    max-width: none!important;
    width: 100%;
  }
  .entry{
    padding: 0!important;
    margin: 0!important;
    background-color: #f4f4f4!important;
  }
  .footer-widgets .wrap{
    max-width: 1280px!important;
    margin: 0 auto;
  }
  header > .wrap,
  .utility-bar > .wrap{
    max-width: 1280px!important;
    margin: 0 auto;
  }
.top-search {
display: none;
}
/*************************************************************************************************/
.visible-after-animation {
  opacity: 1 !important;
}
[class*="fade-"] {
  opacity: 0;
  will-change: opacity, transform;
  animation-play-state: paused;
  backface-visibility: hidden;
  perspective: 1000px;
  animation-fill-mode: forwards !important;
}
[class*="fade-"].fade-in,
[class*="fade-"][class$="-active"] {
  animation-play-state: running;
  animation-duration: var(--anim-duration, 0.8s);
  animation-delay: var(--anim-delay, 0s);
  animation-timing-function: var(
    --anim-easing,
    cubic-bezier(0.25, 0.1, 0.25, 1)
  );
  animation-fill-mode: forwards !important;
}
.fade-in {
  animation-name: fadeIn;
}
.fade-up,
.fade-up-active {
  animation-name: fadeUp;
}
.fade-down,
.fade-down-active {
  animation-name: fadeDown;
}
.fade-left,
.fade-left-active {
  animation-name: fadeLeft;
}
.fade-right,
.fade-right-active {
  animation-name: fadeRight;
}
.fade-scale,
.fade-scale-active {
  animation-name: fadeScale;
}
.fade-scale-up,
.fade-scale-up-active {
  animation-name: fadeScaleUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.delay-100 {
  --anim-delay: 0.1s;
}
.delay-200 {
  --anim-delay: 0.2s;
}
.delay-300 {
  --anim-delay: 0.3s;
}
.delay-400 {
  --anim-delay: 0.4s;
}
.delay-500 {
  --anim-delay: 0.5s;
}
.delay-800 {
  --anim-delay: 0.8s;
}
.delay-1000 {
  --anim-delay: 1s;
}
.duration-300 {
  --anim-duration: 0.3s;
}
.duration-500 {
  --anim-duration: 0.5s;
}
.duration-800 {
  --anim-duration: 0.8s;
}
.duration-1000 {
  --anim-duration: 1s;
}
.duration-1500 {
  --anim-duration: 1.5s;
}
.duration-2000 {
  --anim-duration: 2s;
}
.ease-linear {
  --anim-easing: linear;
}
.ease-in {
  --anim-easing: cubic-bezier(0.42, 0, 1, 1);
}
.ease-out {
  --anim-easing: cubic-bezier(0, 0, 0.58, 1);
}
.ease-in-out {
  --anim-easing: cubic-bezier(0.42, 0, 0.58, 1);
}
.ease-bounce {
  --anim-easing: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (prefers-reduced-motion: reduce) {
  [class*="fade-"] {
    transition: opacity 0.1s ease-in-out !important;
    animation: none !important;
    transform: none !important;
  }
  .fade-in,
  [class*="fade-"][class$="-active"] {
    opacity: 1;
  }
}
.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.lazy.fade-in {
  opacity: 1;
}
/************************************************************************************************************/




  .main-content{
      overflow: hidden;
    }

    .row{
      padding: 0!important;
    }

  .page-shell { overflow: clip; }

  .container {
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1400px;
  }

  .page-shell .serif,
  .page-shell h1,
  .page-shell h2,
  .page-shell h3,
  .page-shell h4 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }

  .page-shell p {
    text-wrap: pretty;
  }

.page-shell .section-panel a:not(.button):not(.button-ghost) {
  color: #4a769d;
  text-decoration: underline;
  text-decoration-color: rgba(140, 114, 74, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.page-shell .section-panel a:not(.button):not(.button-ghost):hover {
  color: #396186 ;
}

  .page-shell .hero {
    position: relative;
    min-height: 100svh;
    color: #fff;
    background: #f4f4f4;
    isolation: isolate;
    overflow: hidden;
  }

  .page-shell .hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
  }

  .page-shell .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
    transform: scale(1.04);
  }

  .page-shell .hero-inner {
    width: 95%;
    margin: 0 auto;
    padding: 110px 0 180px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 40px;
    align-items: center;
    min-height: 100svh;
  }

  .page-shell .hero-copy {
    max-width: 760px;
    padding: 10px 50px 30px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(2px);
  }

  .page-shell .hero h1 {
    color: #fff;
    margin: 10px 0;
    font-size: clamp(2.6rem, 3.5vw, 4rem);
    line-height: 1.1;
    font-weight: 600;
  }

  .page-shell .hero p {
    margin: 0;
    max-width: 660px;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.8;
    color: #fff;
  }

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

  .page-shell .button,
  .page-shell .button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    text-decoration: none;
  }

  .page-shell .button {
    color: #fff;
    background: #c0535c;
    box-shadow: 0 16px 28px rgba(117, 91, 53, 0.26);
    border-radius: 5px;
  }

  .page-shell .button:hover { transform: translateY(-2px); }

  .page-shell .button-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .page-shell .button-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
  }

  .page-shell .hero-card {
    justify-self: end;
    width: min(100%, 420px);
    padding: 28px;
    background: linear-gradient(180deg, rgba(0,0,0,0.44), rgba(0,0,0,0.06));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    box-shadow: var(--shadow);
  }

  .page-shell .hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 26px;
  }

  .page-shell .hero-card h2 {
    margin: 0;
    font-size: clamp(1.7rem, 2.1vw, 2.6rem);
    line-height: 0.95;
    font-weight: 600;
    color: #fff;
  }

  .page-shell .hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .page-shell .hero-metric {
    padding: 16px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 8, 10, 0.22);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    cursor: default;
    border-radius: 5px;
  }

  .page-shell .hero-metric:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.38);
    background: linear-gradient(180deg, rgba(34, 30, 26, 0.56), rgba(16, 17, 20, 0.34));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .page-shell .hero-metric:hover strong { color: #fff; }
  .page-shell .hero-metric:hover span { color: rgba(255, 255, 255, 0.92); }

  .page-shell .hero-metric strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.28rem;
    color: #fff;
  }

  .page-shell .hero-metric span {
    display: block;
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
  }

  .page-shell .content-flow {
    position: relative;
    padding: 60px 0 30px;
  }

  .page-shell .section-shell {
    position: relative;
    padding: 40px 0;
  }

  .page-shell .section-panel {
    position: relative;
    padding: 48px clamp(24px, 4vw, 48px);
    background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.48));
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
  }

  .page-shell .section-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(120deg, rgba(255,255,255,0.24), transparent 26%),
      radial-gradient(circle at top right, rgba(183, 154, 106, 0.12), transparent 22%);
  }

  .page-shell .section-panel.compact { padding: 34px 28px; }

  .page-shell .section-panel h2 {
    position: relative;
    margin: 0 0 20px;
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    line-height: 1.2;
    font-weight: 600;
  }

  .page-shell .section-panel p {
    position: relative;
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-soft);
  }

  .page-shell .section-panel p:last-child { margin-bottom: 0; }

  .page-shell .section-panel.full-width { width: 100%; max-width: none; }
  .page-shell .section-panel.full-width h2 { max-width: none; }

  .page-shell .info-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .page-shell .info-list li {
    padding-left: 18px;
    position: relative;
    color: var(--ink-soft);
    line-height: 1.72;
  }

  .page-shell .info-list li::before {
    content: ""!important;
    position: absolute!important;
    left: 0!important;
    top: 0.8em!important;
    width: 7px!important;
    height: 7px!important;
    border-radius: 50%;
    background: #000;
    transform: translateY(-100%);
  }

  .page-shell .split-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .page-shell .triple-pair {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .page-shell .quad-pair {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
  }

  /* Pull-quote */
  .page-shell .pull-quote {
    position: relative;
    margin: 28px 0 0;
    padding: 22px 28px;
    border-left: 3px solid var(--champagne);
    background: rgba(183, 154, 106, 0.07);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 600;
    line-height: 1.6;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-wrap: pretty;
  }

  /* Property type cards */
  .page-shell .prop-type-card {
    padding: 30px 26px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.56));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }

  .page-shell .prop-type-card:hover {
    transform: translateY(-6px);
    border-color: rgba(183, 154, 106, 0.38);
    box-shadow: 0 24px 52px rgba(13, 14, 16, 0.14);
  }

  .page-shell .prop-type-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(183, 154, 106, 0.14);
    border: 1px solid rgba(183, 154, 106, 0.3);
    color: var(--champagne-deep);
  }

  .page-shell .prop-type-card h3 {
    margin: 0 0 12px;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.1;
    font-weight: 600;
  }

  .page-shell .prop-type-card p {
    margin: 0 0 14px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ink-soft);
  }

  .page-shell .prop-type-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
  }

  .page-shell .prop-type-card ul li {
    padding-left: 16px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .page-shell .area-card ul li::before,
  .page-shell .pros-card ul li::before,
  .page-shell .cons-card ul li::before,
  .page-shell .prop-type-card ul li::before {
    content: ""!important;
    position: absolute!important;
    left: 0!important;
    top: 0.7em!important;
    width: 5px!important;
    height: 5px!important;
    border-radius: 50%;
    background: #000;
    transform: translateY(-50%);
  }

  /* Area cards */
  .page-shell .area-card {
    padding: 28px 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.56));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }

  .page-shell .area-card:hover {
    transform: translateY(-6px);
    border-color: rgba(183, 154, 106, 0.38);
    box-shadow: 0 24px 52px rgba(13, 14, 16, 0.14);
  }

  .page-shell .area-number {
    display: inline-block;
    margin-bottom: 12px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(183, 154, 106, 0.14);
    border: 1px solid rgba(183, 154, 106, 0.3);
    color: var(--champagne-deep);
  }

  .page-shell .area-card h3 {
    margin: 0 0 10px;
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    line-height: 1.15;
    font-weight: 600;
  }

  .page-shell .area-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
  }

  .page-shell .area-card ul li {
    padding-left: 16px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* Price band */
  .page-shell .price-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
  }

  .page-shell .price-card {
    padding: 24px 20px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.6);
    text-align: center;
  }

  .page-shell .price-card strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--ink);
  }

  .page-shell .price-card span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  /* Pros/cons grid */
  .page-shell .pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .page-shell .pros-card,
  .page-shell .cons-card {
    padding: 30px 26px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.56));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .page-shell .pros-card h3,
  .page-shell .cons-card h3 {
    margin: 0 0 18px;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .page-shell .pros-card ul,
  .page-shell .cons-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
  }

  .page-shell .pros-card ul li,
  .page-shell .cons-card ul li {
    padding-left: 20px;
    position: relative;
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--ink-soft);
  }

  /* Photo gallery */
  .page-shell .photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .page-shell .photo-slot {
    position: relative;
    overflow: hidden;
    background: rgba(183, 154, 106, 0.06);
    border: 1.5px dashed rgba(183, 154, 106, 0.4);
    aspect-ratio: 6/3;
    transition: border-color 0.25s ease;
  }

  .page-shell .photo-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0!important;
    transition: transform 0.5s ease;
  }

  .page-shell .photo-slot:hover img { transform: scale(1.04); }

  .page-shell .photo-slot-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    text-align: center;
  }

  .page-shell .photo-slot-placeholder svg { opacity: 0.3; color: var(--champagne-deep); }

  .page-shell .photo-slot-placeholder span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--champagne-deep);
    opacity: 0.6;
    line-height: 1.5;
  }

  .page-shell .photo-caption {
    margin-top: 20px!important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: right;
  }

  .page-shell .photo-slot[data-lightbox] { cursor: zoom-in; }
  .page-shell .photo-slot[data-lightbox]:hover img { transform: scale(1.06); }

  /* Lightbox */
  .mlp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 10, 12, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: zoom-out;
  }

  .mlp-lightbox.active { display: flex; animation: lbFadeIn 0.22s ease; }

  @keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

  .mlp-lightbox-img {
    max-width: min(92vw, 1200px);
    max-height: 88svh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    animation: lbImgIn 0.28s cubic-bezier(.22,1,.36,1);
    cursor: default;
  }

  @keyframes lbImgIn {
    from { transform: scale(0.94); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
  }

  .mlp-lightbox-close {
    position: fixed;
    top: 44px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10000;
    padding: 0;
  }

  .mlp-lightbox-close:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }

  .mlp-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10000;
    user-select: none;
    padding: 0;
  }

  .mlp-lightbox-nav:hover { background: rgba(255,255,255,0.16); }
  .mlp-lightbox-prev { left: 16px; }
  .mlp-lightbox-next { right: 16px; }

  .mlp-lightbox-counter {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    z-index: 10000;
  }

  /* FAQ */
  .page-shell .faq-section { padding-top: 26px; }

  .page-shell .faq-wrap {
    background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.5));
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    padding: 36px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .page-shell .faq-head { align-items: start; margin-bottom: 28px; }

  .page-shell .faq-head h2 {
    margin: 0;
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    line-height: 0.92;
  }

  .page-shell .faq-list { display: grid; gap: 14px; }

  .page-shell .faq-item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .page-shell .faq-item:hover,
  .page-shell .faq-item.open {
    transform: translateY(-2px);
    border-color: rgba(183, 154, 106, 0.36);
    box-shadow: 0 18px 36px rgba(13, 14, 16, 0.08);
  }

  .page-shell .faq-question {
    width: 100%;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    text-align: left;
    font: inherit;
  }

  .page-shell .faq-question-text {
    font-size: clamp(1rem, 1.65vw, 1.15rem);
    font-weight: 700;
    line-height: 1.5;
  }

  .page-shell .faq-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(183, 154, 106, 0.28);
    color: var(--champagne-deep);
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease;
    background: rgba(183, 154, 106, 0.08);
  }

  .page-shell .faq-answer {
    display: none;
    padding: 0 24px 24px;
    color: var(--ink-soft);
    line-height: 1.8;
    max-width: 92ch;
  }

  .page-shell .faq-item.open .faq-answer { display: block; }
  .page-shell .faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(183, 154, 106, 0.14); }

  /* CTA */
  .page-shell .cta-section { position: relative; padding: 28px 0 40px; }

  .page-shell .cta-card {
    position: relative;
    padding: 56px clamp(24px, 5vw, 64px);
    background: linear-gradient(135deg, rgba(17, 18, 21, 0.78), rgba(17, 18, 21, 0.54));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    overflow: hidden;
    isolation: isolate;
  }

  .page-shell .cta-card-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
    margin: 0!important;
  }

  .page-shell .cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:rgba(0, 0, 0, .25);
    z-index: -1;
  }

  .page-shell .cta-card::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: -1;
    pointer-events: none;
  }

  .page-shell .cta-card-inner { max-width: 720px; margin: 0 0 0 auto; text-align: center; }

  .page-shell .cta-card h2 {
    margin: 0 0 16px;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.94;
    color: #fff;
  }

  .page-shell .cta-card p {
    margin: 0 auto 26px;
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.9;
    color: #fff;
  }

  /* Related */
  .page-shell .lifestyle-section { padding-top: 18px; }

  .page-shell .lifestyle-wrap {
    padding: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.52));
    border: 1px solid rgba(255,255,255,0.84);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .page-shell .lifestyle-wrap h3 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.96;
  }

  .page-shell .related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .page-shell .related-link {
    position: relative;
    min-height: 178px;
    padding: 22px 20px;
    display: flex;
    align-items: end;
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
    text-decoration: none;
  }

  .page-shell .related-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
  }

  .page-shell .related-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    object-fit: cover;
    margin: 0!important;
    height: 100%;
    width: 100%;
    object-position: center;
  }

  .page-shell .related-link:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

  .page-shell .related-link span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
  }

  .page-shell .related-link span::after { content: "+"; font-size: 1.1rem; color: #fff; }

  .page-shell .idx-block:empty { display: none; }

  .container-fluid {
      width: 100%;
      padding: 0;
      margin: -32px 0 0;
    }

  .si-breadcrumb { position: absolute; top: 20px; left: 40px; z-index: 2; }
  .si-breadcrumb ul li,
  .si-breadcrumb ul li a,
  .si-breadcrumb ul li span,
  .si-breadcrumb>ul>li>a { color: #fff!important; }



.entry-header { display: none; }
.page-shell .prop-type-card ul li::marker,
.page-shell .area-card ul li::marker,
.page-shell .pros-card ul li::marker,
.page-shell .cons-card ul li::marker,
.page-shell .info-list li::marker {
  content: none;
}

  /* Responsive */
  @media (max-width: 1100px) {
    .page-shell .hero-inner { grid-template-columns: 1fr; }
    .page-shell .hero-card { justify-self: start; }
    .page-shell .split-pair,
    .page-shell .triple-pair,
    .page-shell .quad-pair,
    .page-shell .pros-cons-grid,
    .page-shell .related-grid,
    .page-shell .price-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  @media (max-width: 760px) {
    .page-shell .button { text-align: center; }
    .page-shell .hero-inner { padding: 86px 10px 60px; width: 100%; }
    .page-shell .hero-copy { background: rgba(0, 0, 0, 0.4);}
    .page-shell .split-pair,
    .page-shell .triple-pair,
    .page-shell .quad-pair,
    .page-shell .pros-cons-grid,
    .page-shell .related-grid,
    .page-shell .hero-card-grid,
    .page-shell .price-band { grid-template-columns: 1fr; }
    .page-shell .photo-gallery { grid-template-columns: 1fr 1fr; }
    .page-shell .section-panel,
    .page-shell .faq-wrap,
    .page-shell .lifestyle-wrap,
    .page-shell .cta-card { padding-left: 22px; padding-right: 22px; }
    .page-shell .faq-question { padding: 18px; }
    .page-shell .faq-answer { padding: 0 18px 18px; }
    .si-breadcrumb { width: 85%; }
    .si-breadcrumb ul{ display: flex; flex-wrap: wrap; }
  }



  /*temporal styles*/
  body > div.site-container > header.site-header { display: none; }
  .utility-bar {height: 10px; overflow: hidden;}
  body > div.site-container > div.site-inner > div > div > main > article > div > header > div > div.title-area > p,
  #text-30 > div > div {width: 100%;}
  #text-38 > div > div > p > a{color:#4a769d}
  .site-header .widget{padding-block: 0;}
  .entry-content ul{margin-bottom: 0; margin-left: 0;}
  .site-header .genesis-nav-menu li a{padding-block: 2px;}
  #simple-social-icons-3 ul li a{color:#c0535c!important;}
  @media (max-width:500px) {
    .utility-bar-right .simple-social-icons{width: 240px;}
    .page-shell .cta-card-bg{object-position: right;}
  }