
      :root {
        --ink: #0c1b33;
        --ink-mid: #0f2340;
        --ink-deep: #091527;
        --ink-lt: #132d52;
        --gold: #cba865;
        --gold-lt: #e0c98a;
        --gold-dk: #8a6f30;
        --cream: #f7f2e8;
        --cream-lt: #fdfaf3;
        --wh: #fff;
        --tm: #4a4840;
        --tl: #8a8578;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
        overflow-x: hidden;
      }
      body {
        font-family: "Montserrat", sans-serif;
        font-weight: 300;
        color: var(--ink);
        background: var(--cream-lt);
        overflow-x: hidden;
      }

      /* NAV */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 16px 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.4s;
      }
      nav.sc {
        background: rgba(9, 21, 39, 0.96);
        backdrop-filter: blur(18px);
        padding: 12px 52px;
        border-bottom: 1px solid rgba(203, 168, 101, 0.14);
      }
      .nb {
        display: flex;
        flex-direction: column;
        text-decoration: none;
      }
      .nb-t {
        font-family: "Playfair Display", serif;
        font-size: 17px;
        font-weight: 700;
        color: var(--wh);
        letter-spacing: 4px;
        text-transform: uppercase;
        line-height: 1;
      }
      .nb-s {
        font-size: 7px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(203, 168, 101, 0.7);
        margin-top: 3px;
      }
      .nl {
        display: flex;
        gap: 24px;
        list-style: none;
      }
      .nl a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: color 0.3s;
        position: relative;
      }
      .nl a::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s;
      }
      .nl a:hover {
        color: var(--gold);
      }
      .nl a:hover::after {
        width: 100%;
      }
      .na {
        display: flex;
        gap: 8px;
      }
      .nph {
        display: flex;
        align-items: center;
        gap: 7px;
        border: 1px solid rgba(203, 168, 101, 0.45);
        color: var(--gold);
        padding: 7px 16px;
        font-family: "Montserrat";
        font-size: 10px;
        letter-spacing: 1.5px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s;
        white-space: nowrap;
      }
      .nph:hover {
        background: rgba(203, 168, 101, 0.1);
      }
      .nwa {
        display: flex;
        align-items: center;
        gap: 7px;
        background: #25d366;
        color: var(--wh);
        padding: 7px 16px;
        font-family: "Montserrat";
        font-size: 10px;
        letter-spacing: 1.5px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.3s;
        white-space: nowrap;
        border: 1px solid #25d366;
      }
      .nwa:hover {
        background: #1cb85c;
      }
      .hbg {
        display: none;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
      }
      .hbg span {
        width: 22px;
        height: 1px;
        background: var(--gold);
      }
      .mm {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 280px;
        background: var(--ink-deep);
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.38s;
        padding: 64px 28px 28px;
        border-left: 1px solid rgba(203, 168, 101, 0.12);
      }
      .mm.op {
        transform: translateX(0);
      }
      .mm ul {
        list-style: none;
      }
      .mm a {
        display: block;
        padding: 14px 0;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(203, 168, 101, 0.07);
        transition: color 0.3s;
      }
      .mm a:hover {
        color: var(--gold);
      }
      .mm-x {
        position: absolute;
        top: 16px;
        right: 16px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.4);
        font-size: 22px;
        cursor: pointer;
      }
      .mm-ovl {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1999;
        display: none;
      }
      .mm-ovl.op {
        display: block;
      }

      /* HERO SLIDER */
      #hero {
        position: relative;
        height: 100vh;
        height: 100svh;
        min-height: 580px;
        overflow: hidden;
      }
      .hs-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hs {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .hs.on {
        opacity: 1;
      }
      .hs::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          108deg,
          rgba(9, 21, 39, 0.86) 0%,
          rgba(9, 21, 39, 0.5) 55%,
          rgba(9, 21, 39, 0.18) 100%
        );
      }
      .hs-bg {
        position: absolute;
        inset: -5%;
        width: 110%;
        height: 110%;
        background-size: cover;
        background-position: center;
        transition: transform 8s ease-out;
      }
      .hs.on .hs-bg {
        transform: scale(1.06) translateX(-0.8%);
      }
      canvas#ptc {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
      }
      .hc {
        position: absolute;
        top: 50%;
        left: 52px;
        transform: translateY(-50%);
        z-index: 2;
        width: calc(100% - 104px);
        max-width: 560px;
        box-sizing: border-box;
      }
      .hc-verom {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        background: rgba(203, 168, 101, 0.12);
        border: 1px solid rgba(203, 168, 101, 0.32);
        display: inline-block;
        padding: 5px 12px;
        margin-bottom: 12px;
        font-weight: 600;
      }
      .hc-pre {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 14px;
        background: rgba(255,255,255,0.06);
        padding: 5px 12px 5px 0;
        border-left: 2px solid var(--gold);
        padding-left: 12px;
      }
      .hc-pre::before {
        display: none;
      }
      h1.hc-t {
        font-family: "Playfair Display", serif;
        font-size: clamp(42px, 6.5vw, 82px);
        font-weight: 400;
        line-height: 0.92;
        color: var(--wh);
        letter-spacing: -0.5px;
      }
      .hc-sub {
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.48);
        margin: 14px 0 26px;
      }
      .hc-btns {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
      .btn-g {
        background: var(--gold);
        color: var(--ink-deep);
        padding: 12px 32px;
        font-family: "Montserrat";
        font-size: 10px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
        position: relative;
        overflow: hidden;
      }
      .btn-g::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.18);
        transition: left 0.38s;
      }
      .btn-g:hover::before {
        left: 100%;
      }
      .btn-g:hover {
        background: var(--gold-lt);
        transform: translateY(-1px);
      }
      .btn-ow {
        border: 1px solid rgba(255, 255, 255, 0.38);
        color: var(--wh);
        padding: 12px 32px;
        font-family: "Montserrat";
        font-size: 10px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 400;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
      }
      .btn-ow:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-1px);
      }
      .h-arrows {
        position: absolute;
        bottom: 48px;
        left: 52px;
        z-index: 3;
        display: flex;
        gap: 7px;
      }
      .harr {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(203, 168, 101, 0.35);
        background: rgba(9, 21, 39, 0.35);
        backdrop-filter: blur(6px);
        color: var(--gold);
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
      }
      .harr:hover {
        background: var(--gold);
        color: var(--ink-deep);
      }
      .h-dots {
        position: absolute;
        bottom: 58px;
        right: 52px;
        z-index: 3;
        display: flex;
        gap: 6px;
        align-items: center;
      }
      .hdot {
        width: 5px;
        height: 5px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.25);
        cursor: pointer;
        transition: all 0.4s;
      }
      .hdot.on {
        background: var(--gold);
        width: 20px;
      }
      .h-cnt {
        position: absolute;
        top: 50%;
        right: 32px;
        transform: translateY(-50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
      }
      .h-cn {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1;
      }
      .h-cl {
        width: 1px;
        height: 28px;
        background: rgba(255, 255, 255, 0.14);
      }
      .h-ct {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.25);
        letter-spacing: 2px;
      }
      .h-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 4;
        height: 2px;
        background: rgba(255, 255, 255, 0.07);
      }
      .h-barp {
        height: 100%;
        background: var(--gold);
        width: 0;
      }
      .h-scroll {
        position: absolute;
        bottom: 62px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7px;
      }
      .h-scroll span {
        font-size: 8px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.26);
      }
      .scl {
        width: 1px;
        height: 34px;
        background: rgba(203, 168, 101, 0.18);
        position: relative;
        overflow: hidden;
      }
      .scl::after {
        content: "";
        position: absolute;
        top: -100%;
        width: 100%;
        height: 100%;
        background: var(--gold);
        animation: sd 1.5s ease-in-out infinite;
      }
      @keyframes sd {
        0% {
          top: -100%;
        }
        100% {
          top: 100%;
        }
      }

      /* HERO QUERY FORM */
      .hf-wrap {
        position: absolute;
        top: 76px;
        bottom: 20px;
        right: 52px;
        z-index: 3;
        width: 380px;
        background: rgba(7, 17, 33, 0.92);
        backdrop-filter: blur(22px);
        border: 1px solid rgba(203, 168, 101, 0.3);
        padding: 30px 28px 28px;
        box-shadow: 0 24px 64px rgba(0,0,0,0.45);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(203,168,101,0.3) transparent;
      }
      .hf-logo {
        display: block;
        height: 38px;
        margin-bottom: 14px;
        object-fit: contain;
        object-position: left;
      }
      .hf-collection {
        font-size: 9px;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        color: var(--gold);
        background: rgba(203, 168, 101, 0.1);
        border: 1px solid rgba(203, 168, 101, 0.28);
        padding: 7px 12px;
        margin-bottom: 14px;
        line-height: 1.55;
        font-weight: 500;
      }
      .hf-title {
        font-family: "Playfair Display", serif;
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 3px;
      }
      .hf-sub {
        font-size: 8px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: rgba(203, 168, 101, 0.75);
        margin-bottom: 18px;
        border-bottom: 1px solid rgba(203,168,101,0.15);
        padding-bottom: 14px;
      }
      .hfg {
        margin-bottom: 13px;
      }
      .hfg label {
        display: block;
        font-size: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 5px;
      }
      .hfg input,
      .hfg select {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(203, 168, 101, 0.25);
        color: #fff;
        padding: 9px 0;
        font-family: "Montserrat";
        font-size: 12px;
        font-weight: 300;
        outline: none;
        transition: border-color 0.3s;
      }
      .hfg input:focus,
      .hfg select:focus {
        border-bottom-color: #cba865;
      }
      .hfg input::placeholder {
        color: rgba(255, 255, 255, 0.2);
      }
      .hfg select option {
        background: #091527;
        color: #fff;
      }
      .hf-btn {
        width: 100%;
        background: #cba865;
        color: #091527;
        border: none;
        padding: 13px;
        font-family: "Montserrat";
        font-size: 9px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 6px;
      }
      .hf-btn:hover {
        background: #e0c98a;
        letter-spacing: 3px;
      }
      .hf-footer-tag {
        margin-top: 12px;
        text-align: center;
        font-size: 7.5px;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        color: rgba(203, 168, 101, 0.55);
        line-height: 1.6;
      }
      .hf-footer-tag strong {
        color: rgba(203, 168, 101, 0.85);
        font-weight: 600;
      }
      @media (max-width: 1100px) {
        .hf-wrap {
          width: 340px;
        }
      }
      @media (max-width: 900px) {
        .hf-wrap {
          display: none;
        }
      }

      /* DIVIDER BETWEEN SECTIONS */
      .sec-divider {
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(203, 168, 101, 0.25) 30%,
          rgba(203, 168, 101, 0.5) 50%,
          rgba(203, 168, 101, 0.25) 70%,
          transparent 100%
        );
      }
      .sec-divider-dark {
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(203, 168, 101, 0.15) 30%,
          rgba(203, 168, 101, 0.3) 50%,
          rgba(203, 168, 101, 0.15) 70%,
          transparent 100%
        );
      }

      /* ABOUT */
      #about {
        background: var(--ink);
      }
      .ab-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
      .ab-img {
        position: relative;
        overflow: hidden;
        min-height: 480px;
      }
      .ab-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.9s;
      }
      .ab-img:hover img {
        transform: scale(1.04);
      }
      .ab-badge {
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--gold);
        padding: 16px 24px;
        text-align: center;
      }
      .ab-bnum {
        font-family: "Playfair Display", serif;
        font-size: 36px;
        font-weight: 700;
        color: var(--ink-deep);
        line-height: 1;
      }
      .ab-blbl {
        font-size: 8px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--ink-deep);
        margin-top: 3px;
        font-weight: 500;
      }
      .ab-txt {
        padding: 52px 52px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .ab-ey {
        font-size: 9px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .ab-ey::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .ab-h {
        font-family: "Playfair Display", serif;
        font-size: clamp(26px, 3vw, 42px);
        font-weight: 300;
        color: var(--wh);
        line-height: 1.1;
        margin-bottom: 16px;
      }
      .ab-p {
        font-size: 14px;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 28px;
      }
      .ab-feats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .af {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(203, 168, 101, 0.1);
        padding: 12px;
        transition: all 0.3s;
      }
      .af:hover {
        background: rgba(203, 168, 101, 0.06);
        border-color: rgba(203, 168, 101, 0.25);
      }
      .af-ic {
        font-size: 17px;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .af-t {
        font-size: 11.5px;
        font-weight: 500;
        color: var(--wh);
        margin-bottom: 2px;
      }
      .af-s {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.42);
        line-height: 1.5;
      }

      /* GEOGRAPHY */
      #geo {
        padding: 40px 0;
        background: var(--cream);
      }
      .si {
        max-width: 1240px;
        margin: 0 auto;
        /* padding: 0 52px; */
      }
      .geo-g {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .geo-img {
        position: relative;
        height: 440px;
        overflow: hidden;
      }
      .geo-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .geo-img::before {
        content: "";
        position: absolute;
        inset: 12px;
        border: 1px solid rgba(203, 168, 101, 0.35);
        z-index: 1;
        pointer-events: none;
      }
      .ey {
        font-size: 10px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight:700;
      }
      .ey::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .st {
        font-family: "Playfair Display", serif;
        font-size: clamp(26px, 3.2vw, 44px);
        font-weight: 300;
        color: var(--ink);
        line-height: 1.05;
      }
      .geo-pts {
        display: flex;
        flex-direction: column;
        margin: 28px 0;
      }
      .gpt {
        padding: 14px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }
      .gpt-ic {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(203, 168, 101, 0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
        color: var(--gold);
      }
      .gpt-t {
        font-family: "Playfair Display", serif;
        font-size: 16px;
        font-weight: 500;
        color: var(--ink);
        margin-bottom: 3px;
      }
      .gpt-s {
        font-size: 12px;
        color: var(--tm);
        line-height: 1.6;
      }

      /* AMENITIES */
      #amenities {
        padding: 72px 0;
        background: var(--ink-deep);
      }
      .am-hdr {
        text-align: center;
        margin-bottom: 48px;
      }
      .am-hdr .ey {
        justify-content: center;
      }
      .am-hdr .ey::before {
        display: none;
      }
      .am-hdr .st {
        color: var(--wh);
      }
      .excl-g {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
      }
      .ec {
        position: relative;
        height: 320px;
        overflow: hidden;
        cursor: pointer;
      }
      .ec img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition:
          transform 0.8s,
          filter 0.4s;
        filter: brightness(0.82);
      }
      .ec:hover img {
        transform: scale(1.08);
        filter: brightness(0.55);
      }
      .ec-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(9, 21, 39, 0.9) 0%,
          transparent 55%
        );
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
      }
      .ec-tag {
        font-size: 8px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 6px;
      }
      .ec-name {
        font-family: "Playfair Display", serif;
        font-size: 17px;
        font-weight: 400;
        color: var(--wh);
        line-height: 1.2;
        margin-bottom: 5px;
      }
      .ec-desc {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.6;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s;
      }
      .ec:hover .ec-desc {
        max-height: 60px;
      }
      .comm-g {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        margin-top: 2px;
      }
      .cc {
        position: relative;
        height: 220px;
        overflow: hidden;
        cursor: pointer;
      }
      .cc img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition:
          transform 0.7s,
          filter 0.4s;
        filter: brightness(0.75);
      }
      .cc:hover img {
        transform: scale(1.07);
        filter: brightness(0.5);
      }
      .cc-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(9, 21, 39, 0.88) 0%,
          transparent 50%
        );
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 18px;
      }
      .cc-ic {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(203, 168, 101, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin-bottom: 7px;
      }
      .cc-nm {
        font-family: "Playfair Display", serif;
        font-size: 15px;
        color: var(--wh);
        margin-bottom: 3px;
      }
      .cc-tx {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.5;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s;
      }
      .cc:hover .cc-tx {
        max-height: 50px;
      }

      /* GALLERY */
      #gallery {
        padding: 72px 0;
        background: var(--cream);
      }
      .gal-hdr {
        text-align: center;
        margin-bottom: 40px;
      }
      .gal-hdr .ey {
        justify-content: center;
      }
      .gal-hdr .ey::before {
        display: none;
      }
      .gal-tabs {
        display: flex;
        gap: 4px;
        justify-content: center;
        margin-bottom: 32px;
        flex-wrap: wrap;
      }
      .gtab {
        padding: 8px 22px;
        font-size: 9px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 500;
        border: 1px solid rgba(12, 27, 51, 0.18);
        color: var(--tm);
        background: transparent;
        cursor: pointer;
        transition: all 0.3s;
      }
      .gtab.act {
        background: var(--ink);
        color: var(--gold);
        border-color: var(--ink);
      }
      .gal-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        transition: opacity 0.3s;
      }
      .gal-grid.lg {
        grid-template-columns: repeat(3, 1fr);
      }
      .gi {
        position: relative;
        overflow: hidden;
        cursor: zoom-in;
      }
      .gi img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition:
          transform 0.7s,
          filter 0.4s;
      }
      .gi:hover img {
        transform: scale(1.06);
        filter: brightness(0.85);
      }
      .gi-cap {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 14px 16px;
        background: linear-gradient(to top, rgba(9, 21, 39, 0.85), transparent);
        font-size: 11px;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 1px;
        opacity: 0;
        transition: opacity 0.3s;
        font-family: "Playfair Display", serif;
        font-size: 14px;
      }
      .gi:hover .gi-cap {
        opacity: 1;
      }
      .gi.tall {
        grid-row: span 2;
      }
      .gi.wide {
        grid-column: span 2;
      }
      /* heights */
      .gal-grid .gi {
        height: 180px;
      }
      .gal-grid.lg .gi {
        height: 210px;
      }
      .gal-grid .gi.tall {
        height: 444px;
      }
      .gal-grid.lg .gi.tall {
        height: 524px;
      }
      /* Lightbox */
      .lb {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(6px);
      }
      .lb.op {
        display: flex;
      }
      .lb img {
        max-width: 90vw;
        max-height: 88vh;
        object-fit: contain;
      }
      .lb-x {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.5);
        font-size: 28px;
        cursor: pointer;
        transition: color 0.3s;
      }
      .lb-x:hover {
        color: var(--gold);
      }
      .lb-prev,
      .lb-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(203, 168, 101, 0.3);
        color: var(--gold);
        font-size: 20px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
      }
      .lb-prev {
        left: 20px;
      }
      .lb-next {
        right: 20px;
      }
      .lb-prev:hover,
      .lb-next:hover {
        background: var(--gold);
        color: var(--ink-deep);
      }
      .lb-cap {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-family: "Playfair Display", serif;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 1px;
        white-space: nowrap;
      }

      /* INTERIORS */
      #int {
        background: var(--cream-lt);
      }
      .int-lay {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
      }
      .int-l {
        padding: 52px 52px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: var(--ink);
      }
      .int-l .st {
        color: var(--wh);
      }
      .int-l p {
        font-size: 13px;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.55);
        margin: 16px 0 24px;
      }
      .int-mos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 170px;
        gap: 2px;
      }
      .im {
        overflow: hidden;
      }
      .im img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s;
      }
      .im:hover img {
        transform: scale(1.06);
      }
      .im.tall {
        grid-row: span 2;
      }

      /* WHY GOA */
      #whygoa {
        padding: 72px 0;
        background: var(--ink);
      }
      .wg-head {
        text-align: center;
        margin-bottom: 48px;
      }
      .wg-head .ey {
        justify-content: center;
      }
      .wg-head .ey::before {
        display: none;
      }
      .wg-head .st {
        color: var(--wh);
      }
      .wg-head p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        max-width: 500px;
        margin: 10px auto 0;
        line-height: 1.8;
      }
      .wg-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
      }
      .wg-card {
        position: relative;
        overflow: hidden;
        min-height: 300px;
        cursor: pointer;
      }
      .wg-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.9s;
        filter: brightness(0.55);
      }
      .wg-card:hover img {
        transform: scale(1.06);
        filter: brightness(0.4);
      }
      .wg-inner {
        position: relative;
        z-index: 1;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 28px;
      }
      .wg-num {
        font-family: "Playfair Display", serif;
        font-size: 52px;
        font-weight: 300;
        color: rgba(255, 255, 255, 1);
        line-height: 1;
        margin-bottom: 6px;
      }
      .wg-h {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        font-weight: 400;
        color: var(--wh);
        margin-bottom: 8px;
        line-height: 1.2;
      }
      .wg-p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
        max-width: 100%;
      }
      .wg-tag {
        display: inline-block;
        align-self: flex-start;
        font-size: 8px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        border: 1px solid rgba(203, 168, 101, 0.35);
        padding: 5px 12px;
        margin-top: 10px;
      }
      .wg-grid-b {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        margin-top: 2px;
      }
      .wg-card-b {
        background: rgba(9, 21, 39, 0.9);
        border: 1px solid rgba(203, 168, 101, 0.1);
        padding: 28px;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: all 0.35s;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
      }
      .wg-card-b::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(9,21,39,0.9) 0%, rgba(9,21,39,0.5) 60%, rgba(9,21,39,0.3) 100%);
        z-index: 0;
        transition: background 0.35s;
      }
      .wg-card-b > * {
        position: relative;
        z-index: 1;
      }
      .wg-card-b:hover {
        border-color: rgba(203, 168, 101, 0.25);
      }
      .wg-card-b:hover::before {
        background: linear-gradient(to top, rgba(9,21,39,0.95) 0%, rgba(9,21,39,0.65) 60%, rgba(9,21,39,0.4) 100%);
      }
      .wg-card-b .wg-num {
        font-size: 40px;
        color: rgba(255, 255, 255, 1);
      }
      .wg-card-b .wg-tag {
        align-self: flex-start;
      }
      .wg-card-b .wg-h {
        font-size: 18px;
      }

      /* INVESTMENT */
      #inv {
        background: var(--ink-deep);
      }
      .inv-lay {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
      }
      .inv-img {
        position: relative;
        overflow: hidden;
        min-height: 460px;
      }
      .inv-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.68);
      }
      .inv-lbl {
        position: absolute;
        top: 28px;
        left: 28px;
      }
      .inv-lbl h3 {
        font-family: "Playfair Display", serif;
        font-size: clamp(26px, 3vw, 42px);
        font-weight: 300;
        color: var(--wh);
        line-height: 1.1;
      }
      .inv-r {
        padding: 52px 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .inv-pts {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 20px;
      }
      .ipt {
        display: flex;
        gap: 14px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(203, 168, 101, 0.1);
      }
      .ipt:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .ipt-n {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1;
        flex-shrink: 0;
        width: 36px;
      }
      .ipt-t {
        font-family: "Playfair Display", serif;
        font-size: 17px;
        font-weight: 500;
        color: var(--gold);
        margin-bottom: 4px;
      }
      .ipt-s {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.75;
      }

      /* SEEKING */
      #seek {
        padding: 72px 0;
        background: var(--cream);
      }
      .sk-hdr {
        text-align: center;
        margin-bottom: 40px;
      }
      .sk-hdr .ey {
        justify-content: center;
      }
      .sk-hdr .ey::before {
        display: none;
      }
      .sk-g {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        background: rgba(0, 0, 0, 0.04);
      }
      .sk-c {
        background: var(--cream-lt);
        padding: 36px 24px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.38s;
      }
      .sk-c::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.45s;
      }
      .sk-c:hover {
        background: var(--ink);
      }
      .sk-c:hover .sk-q,
      .sk-c:hover .sk-tx {
        color: rgba(255, 255, 255, 0.7);
      }
      .sk-c:hover .sk-q {
        color: var(--gold);
      }
      .sk-c:hover::before {
        width: 100%;
      }
      .sk-mk {
        font-family: "Playfair Display", serif;
        font-size: 56px;
        color: rgba(203, 168, 101, 0.12);
        line-height: 1;
        margin-bottom: 12px;
        transition: color 0.38s;
      }
      .sk-q {
        font-family: "Playfair Display", serif;
        font-size: 18px;
        font-weight: 500;
        color: var(--ink);
        margin-bottom: 10px;
        line-height: 1.3;
        transition: color 0.38s;
      }
      .sk-tx {
        font-size: 12px;
        color: var(--tm);
        line-height: 1.75;
        transition: color 0.38s;
      }

      /* VILLAS TABLE */
      #villas {
        padding: 72px 0;
        background: var(--cream-lt);
      }
      .vt-intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 36px;
      }
      .vt-intro p {
        font-size: 13px;
        line-height: 1.85;
        color: var(--tm);
      }
      .vt-wrap {
        overflow-x: auto;
      }
      .vt {
        width: 100%;
        border-collapse: collapse;
        font-size: 12px;
      }
      .vt thead tr {
        background: var(--ink);
        color: var(--wh);
      }
      .vt th {
        padding: 11px 14px;
        font-size: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        text-align: left;
      }
      .vt th:first-child {
        color: var(--gold);
      }
      .vt tbody tr {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background 0.3s;
      }
      .vt tbody tr:hover {
        background: rgba(203, 168, 101, 0.05);
      }
      .vt td {
        padding: 11px 14px;
        color: var(--ink);
      }
      .vt td:first-child {
        font-family: "Playfair Display", serif;
        font-size: 15px;
        font-weight: 500;
      }
      .vt td:nth-child(2) {
        color: var(--gold-dk);
        font-weight: 500;
      }
      .vt tfoot tr {
        background: var(--ink);
      }
      .vt tfoot td {
        padding: 11px 14px;
        font-size: 10px;
        letter-spacing: 1px;
        font-weight: 500;
        color: var(--wh);
      }
      .vt tfoot td:first-child {
        color: var(--gold);
      }
      .vt-note {
        font-size: 10px;
        color: var(--tl);
        margin-top: 12px;
      }

      /* VILLA SLIDER */
      .vs-wrap {
        position: relative;
        overflow: hidden;
        margin-top: 40px;
      }
      .vs-track {
        display: flex;
        gap: 4px;
        transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .vs-card {
        flex: 0 0 calc(25% - 3px);
        flex-shrink: 0;
        background: var(--ink);
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.35s;
      }
      .vs-card:hover .vs-img img {
        transform: scale(1.05);
        filter: brightness(0.5);
      }
      .vs-img {
        position: relative;
        height: 260px;
        overflow: hidden;
        background: linear-gradient(135deg, var(--ink-lt) 0%, var(--ink-deep) 100%);
      }
      .vs-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s, filter 0.4s;
        filter: brightness(0.7);
        display: block;
      }
      .vs-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(9,21,39,0.92) 0%, rgba(9,21,39,0.18) 55%, transparent 100%);
        pointer-events: none;
      }
      .vs-num-big {
        position: absolute;
        bottom: 10px;
        left: 16px;
        font-family: "Playfair Display", serif;
        font-size: 60px;
        font-weight: 300;
        color: rgba(255,255,255,0.1);
        line-height: 1;
        z-index: 1;
        user-select: none;
      }
      .vs-type-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        font-size: 8px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        border: 1px solid rgba(203,168,101,0.45);
        padding: 4px 10px;
        background: rgba(9,21,39,0.65);
        backdrop-filter: blur(4px);
        z-index: 1;
      }
      .vs-info {
        padding: 18px 20px 22px;
        background: var(--ink);
        border-top: 1px solid rgba(203,168,101,0.1);
      }
      .vs-name {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        font-weight: 400;
        color: var(--wh);
        margin-bottom: 14px;
        line-height: 1.15;
      }
      .vs-specs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px 4px;
      }
      .vs-sv {
        display: block;
        font-family: "Playfair Display", serif;
        font-size: 15px;
        color: var(--gold-lt);
        line-height: 1.1;
      }
      .vs-sl {
        display: block;
        font-size: 7.5px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.35);
        margin-top: 3px;
      }
      .vs-arr {
        position: absolute;
        top: calc(260px / 2);
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(9,21,39,0.85);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(203,168,101,0.38);
        color: var(--gold);
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        z-index: 5;
        line-height: 1;
      }
      .vs-arr:hover {
        background: var(--gold);
        color: var(--ink-deep);
      }
      .vs-prev { left: 12px; }
      .vs-next { right: 12px; }
      .vs-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 28px;
        gap: 16px;
        flex-wrap: wrap;
      }
      .vs-dots {
        display: flex;
        gap: 5px;
        align-items: center;
      }
      .vs-dot {
        width: 5px;
        height: 5px;
        border-radius: 3px;
        background: rgba(12,27,51,0.2);
        cursor: pointer;
        transition: all 0.4s;
        border: none;
        padding: 0;
      }
      .vs-dot.on {
        background: var(--gold);
        width: 16px;
      }
      .vs-btns {
        display: flex;
        gap: 6px;
        margin-top: 14px;
      }
      .vs-btn-bro {
        flex: 1;
        background: var(--gold);
        color: var(--ink-deep);
        border: none;
        padding: 9px 6px;
        font-family: "Montserrat";
        font-size: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
        white-space: nowrap;
      }
      .vs-btn-bro:hover { background: var(--gold-lt); }
      .vs-btn-fp {
        flex: 1;
        background: transparent;
        color: var(--gold);
        border: 1px solid rgba(203,168,101,0.38);
        padding: 9px 6px;
        font-family: "Montserrat";
        font-size: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        white-space: nowrap;
      }
      .vs-btn-fp:hover {
        border-color: var(--gold);
        background: rgba(203,168,101,0.08);
      }
      @media (max-width: 899px) {
        .vs-card { flex: 0 0 calc(50% - 2px); }
      }
      @media (max-width: 559px) {
        .vs-card { flex: 0 0 100%; }
        .vs-arr { display: none; }
      }

      /* LOCATION */
      #loc {
        padding: 72px 0;
        background: var(--ink-deep);
      }
      .loc-g {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 52px;
        align-items: start;
      }
      .loc-pills {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 20px;
      }
      .lpill {
        font-size: 9px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--ink-deep);
        background: var(--gold);
        padding: 5px 13px;
        font-weight: 500;
      }
      .dl {
        display: flex;
        flex-direction: column;
      }
      .dr {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(203, 168, 101, 0.09);
      }
      .dr:last-child {
        border-bottom: none;
      }
      .d-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(203, 168, 101, 0.45);
        flex-shrink: 0;
      }
      .d-nm {
        flex: 1;
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.65);
      }
      .d-tm {
        font-family: "Playfair Display", serif;
        font-size: 15px;
        color: var(--gold);
      }
      .map-wrap {
        position: relative;
      }
      .map-hdr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 11px 16px;
        background: rgba(203, 168, 101, 0.09);
        border: 1px solid rgba(203, 168, 101, 0.18);
        border-bottom: none;
      }
      .map-lbl {
        font-size: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
      }
      .map-lnk {
        font-size: 9px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.3s;
      }
      .map-lnk:hover {
        color: var(--gold);
      }
      .map-emb {
        height: 520px;
        border: 1px solid rgba(203, 168, 101, 0.18);
        border-bottom: none;
        overflow: hidden;
      }
      .map-emb iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
      }
      .map-btn {
        display: block;
        text-align: center;
        padding: 13px;
        background: var(--gold);
        color: var(--ink-deep);
        font-family: "Montserrat";
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.3s;
      }
      .map-btn:hover {
        background: var(--gold-lt);
      }

      /* DEVELOPER */
      #dev {
        padding: 72px 0;
        background: var(--cream-lt);
      }
      .dev-g {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .dev-img {
        position: relative;
        height: 420px;
        overflow: hidden;
      }
      .dev-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s;
      }
      .dev-img:hover img {
        transform: scale(1.04);
      }
      .dev-img-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(9, 21, 39, 0.68) 0%,
          transparent 40%
        );
      }
      .dev-txt {
        position: absolute;
        bottom: 24px;
        left: 24px;
      }
      .dev-txt h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 300;
        color: var(--wh);
        line-height: 1.1;
      }
      .dev-pts {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .dpt {
        padding: 18px;
        border-left: 2px solid var(--gold);
        background: rgba(203, 168, 101, 0.04);
        transition: background 0.3s;
      }
      .dpt:hover {
        background: rgba(203, 168, 101, 0.08);
      }
      .dpt-t {
        font-family: "Playfair Display", serif;
        font-size: 17px;
        font-weight: 500;
        color: var(--ink);
        margin-bottom: 6px;
      }
      .dpt-s {
        font-size: 12px;
        color: var(--tm);
        line-height: 1.75;
      }

      /* INQUIRY &mdash; merged into footer, standalone page form removed */

      /* CTA BANNER */
      #cta-bar {
        background: var(--gold);
        padding: 0;
      }
      .cta-s {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
      }
      .cta-sb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 18px 14px;
        font-family: "Montserrat";
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s;
        border-right: 1px solid rgba(9, 21, 39, 0.1);
      }
      .cta-sb:last-child {
        border-right: none;
      }
      .cta-cn {
        background: rgba(9, 21, 39, 0.08);
        color: var(--ink-deep);
        border: none;
      }
      .cta-cn:hover {
        background: rgba(9, 21, 39, 0.18);
      }
      .cta-wa {
        background: #25d366;
        color: var(--wh);
      }
      .cta-wa:hover {
        background: #1cb85c;
      }
      .cta-cl {
        background: rgba(9, 21, 39, 0.08);
        color: var(--ink-deep);
        border: none;
      }
      .cta-cl:hover {
        background: rgba(9, 21, 39, 0.18);
      }

      /* ONLY ELEVEN */
      #eleven {
        position: relative;
        overflow: hidden;
        min-height: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      #eleven .e-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: brightness(0.28);
      }
      #eleven .e-inner {
        position: relative;
        z-index: 1;
        padding: 56px 24px;
      }
      .e-tag {
        font-size: 8px;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: var(--gold);
        border: 1px solid rgba(203, 168, 101, 0.28);
        padding: 6px 20px;
        display: inline-block;
        margin-bottom: 18px;
      }
      #eleven h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(26px, 5vw, 56px);
        font-weight: 300;
        color: var(--wh);
        line-height: 1.1;
        margin-bottom: 10px;
      }
      #eleven h2 span {
        color: var(--gold);
      }
      .e-verom {
        font-family: "Playfair Display", serif;
        font-size: 14px;
        letter-spacing: 6px;
        color: rgba(255, 255, 255, 0.85);
        text-transform: uppercase;
        margin-bottom: 24px;
      }

      /* FOOTER with inline form */
      footer {
        background: var(--ink-deep);
        border-top: 1px solid rgba(203, 168, 101, 0.1);
      }
      .ft-main {
        max-width: 1240px;
        margin: 0 auto;
        padding: 52px 52px 40px;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
        gap: 44px;
        position: relative;
        z-index: 2;
      }
      .ft-logo {
        font-family: "Playfair Display", serif;
        font-size: 19px;
        font-weight: 700;
        color: var(--wh);
        letter-spacing: 4px;
        text-transform: uppercase;
      }
      .ft-sub {
        font-size: 7px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 4px;
      }
      .ft-div {
        width: 28px;
        height: 1px;
        background: var(--gold);
        margin: 12px 0;
      }
      .ft-abt {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.4);
        line-height: 1.8;
        max-width: 260px;
        margin-bottom: 14px;
      }
      .ft-ci {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.42);
        line-height: 2;
      }
      .ft-ci a {
        color: var(--gold);
        text-decoration: none;
      }
      .ft-col h4 {
        font-size: 8px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
      }
      .ft-addr {
        font-style: normal;
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.95;
      }
      .ft-crows {
        display: flex;
        flex-direction: column;
      }
      .ft-cr {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 7px 0;
        border-bottom: 1px solid rgba(203, 168, 101, 0.06);
        text-decoration: none;
        color: rgba(255, 255, 255, 0.48);
        font-size: 11.5px;
        transition: color 0.3s;
      }
      .ft-cr:last-child {
        border-bottom: none;
      }
      .ft-cr:hover {
        color: var(--gold);
      }
      .ft-cric {
        font-size: 12px;
        flex-shrink: 0;
        width: 16px;
        text-align: center;
      }
      /* Footer inline form */
      .ft-form h4 {
        font-size: 8px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
      }
      .ffg {
        margin-bottom: 11px;
      }
      .ffg label {
        display: block;
        font-size: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.28);
        margin-bottom: 5px;
      }
      .ffg input,
      .ffg select {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(203, 168, 101, 0.2);
        color: var(--wh);
        padding: 8px 0;
        font-family: "Montserrat";
        font-size: 12px;
        font-weight: 300;
        outline: none;
        transition: border-color 0.3s;
      }
      .ffg input:focus,
      .ffg select:focus {
        border-bottom-color: var(--gold);
      }
      .ffg select option {
        background: var(--ink-deep);
      }
      .ffg input::placeholder {
        color: rgba(255, 255, 255, 0.18);
      }
      .ff-btn {
        width: 100%;
        background: var(--gold);
        color: var(--ink-deep);
        border: none;
        padding: 11px;
        font-family: "Montserrat";
        font-size: 9px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 6px;
      }
      .ff-btn:hover {
        background: var(--gold-lt);
      }
      .ff-suc {
        display: none;
        text-align: center;
        padding: 16px;
        font-family: "Playfair Display", serif;
        font-size: 16px;
        color: var(--gold);
      }
      .ft-tree {
        position: relative;
        overflow: hidden;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .ft-tree-t {
        font-family: "Playfair Display", serif;
        font-size: clamp(44px, 9vw, 110px);
        font-weight: 700;
        letter-spacing: 8px;
        text-transform: uppercase;
        color: rgba(203, 168, 101, 0.04);
        user-select: none;
        white-space: nowrap;
      }
      .ft-bot {
        max-width: 1240px;
        margin: 0 auto;
        padding: 12px 52px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(203, 168, 101, 0.07);
      }
      .ft-bot span {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.75);
        letter-spacing: 0.4px;
      }

      /* FLOAT BUTTONS */
      .fl-wrap {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 900;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
      }
      .fbtn {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 10px 16px;
        cursor: pointer;
        font-family: "Montserrat";
        font-size: 10px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.4s;
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
        white-space: nowrap;
        transform: translateX(110px);
        opacity: 0;
        border: none;
      }
      .fbtn.sh {
        transform: translateX(0);
        opacity: 1;
      }
      .fb-g {
        background: var(--gold);
        color: var(--ink-deep);
        transition-delay: 0.06s;
      }
      .fb-g:hover {
        background: var(--gold-lt);
        transform: translateY(-2px);
      }
      .fb-wa {
        background: #25d366;
        color: var(--wh);
      }
      .fb-wa:hover {
        background: #1cb85c;
        transform: translateY(-2px);
      }
      .fb-bro {
        background: var(--ink-deep);
        color: var(--gold);
        border: 1px solid rgba(203, 168, 101, 0.3) !important;
        transition-delay: 0.12s;
      }
      .fb-bro:hover {
        background: var(--ink-lt);
        transform: translateY(-2px);
      }

      /* MODAL */
      .mod-bd {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        z-index: 10000;
        display: none;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(7px);
        padding: 16px;
      }
      .mod-bd.op {
        display: flex;
      }
      .mod {
        background: var(--ink-deep);
        max-width: 500px;
        width: 100%;
        padding: 36px 32px;
        position: relative;
        border: 1px solid rgba(203, 168, 101, 0.18);
        animation: mIn 0.38s ease;
      }
      @keyframes mIn {
        from {
          opacity: 0;
          transform: translateY(22px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .mod-x {
        position: absolute;
        top: 14px;
        right: 14px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.3);
        font-size: 20px;
        cursor: pointer;
        transition: color 0.3s;
      }
      .mod-x:hover {
        color: var(--gold);
      }
      .mod-ey {
        font-size: 8px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 6px;
      }
      .mod h3 {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        font-weight: 300;
        color: var(--wh);
        margin-bottom: 20px;
      }
      .fg {
        margin-bottom: 13px;
      }
      .fg label {
        display: block;
        font-size: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.28);
        margin-bottom: 6px;
      }
      .fg input,
      .fg select {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(203, 168, 101, 0.2);
        color: var(--wh);
        padding: 9px 0;
        font-family: "Montserrat";
        font-size: 13px;
        font-weight: 300;
        outline: none;
        transition: border-color 0.3s;
      }
      .fg input:focus,
      .fg select:focus {
        border-bottom-color: var(--gold);
      }
      .fg select option {
        background: var(--ink-deep);
      }
      .fg input::placeholder {
        color: rgba(255, 255, 255, 0.18);
      }

      /* FORM VALIDATION STATES */
      .hfg input.fld-err,
      .hfg select.fld-err,
      .fg input.fld-err,
      .fg select.fld-err,
      .ffg input.fld-err,
      .ffg select.fld-err {
        border-bottom-color: #e0615c !important;
      }
      .frm-err {
        display: none;
        color: #ff8b86;
        font-size: 10px;
        letter-spacing: 0.4px;
        line-height: 1.6;
        margin: -4px 0 12px;
        font-family: "Montserrat";
      }
      .frm-err.show {
        display: block;
      }
      .villa-hint {
        display: block;
        font-size: 8px;
        letter-spacing: 0.3px;
        text-transform: none;
        font-weight: 400;
        color: rgba(203, 168, 101, 0.6);
        margin-top: 4px;
      }
      .fr2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .f-btn {
        width: 100%;
        background: var(--gold);
        color: var(--ink-deep);
        border: none;
        padding: 13px;
        font-family: "Montserrat";
        font-size: 9px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 4px;
        position: relative;
        overflow: hidden;
      }
      .f-btn:hover {
        background: var(--gold-lt);
      }
      .f-suc {
        display: none;
        text-align: center;
        padding: 28px 16px;
      }
      .f-suc-sym {
        font-size: 32px;
        color: var(--gold);
      }
      .f-suc p {
        font-family: "Playfair Display", serif;
        font-size: 18px;
        color: var(--wh);
        margin-top: 10px;
      }

      /* BROCHURE MODAL */
      .bro-mod-bd {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.78);
        z-index: 10001;
        display: none;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(8px);
        padding: 16px;
      }
      .bro-mod-bd.op {
        display: flex;
      }
      .bro-mod {
        background: var(--ink-deep);
        max-width: 440px;
        width: 100%;
        padding: 36px 32px;
        position: relative;
        border: 1px solid rgba(203, 168, 101, 0.22);
        animation: mIn 0.38s ease;
      }
      .bro-mod-x {
        position: absolute;
        top: 14px;
        right: 14px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.3);
        font-size: 20px;
        cursor: pointer;
        transition: color 0.3s;
      }
      .bro-mod-x:hover {
        color: var(--gold);
      }
      .bro-mod-ey {
        font-size: 8px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 6px;
      }
      .bro-mod h3 {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        font-weight: 300;
        color: var(--wh);
        margin-bottom: 6px;
      }
      .bro-mod-note {
        font-size: 11px;
        color: rgba(255,255,255,0.45);
        margin-bottom: 20px;
        line-height: 1.55;
      }

      /* REVEAL */
      .rev {
        opacity: 0;
        transform: translateY(28px);
        transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }
      .rev.on {
        opacity: 1;
        transform: translateY(0);
      }
      .rev-l {
        opacity: 0;
        transform: translateX(-28px);
        transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }
      .rev-l.on {
        opacity: 1;
        transform: translateX(0);
      }
      .rev-r {
        opacity: 0;
        transform: translateX(28px);
        transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }
      .rev-r.on {
        opacity: 1;
        transform: translateX(0);
      }

      /* VIDEO */
      #video {
        padding: 72px 0;
        background: #f7f2e8;
      }
      .vid-hdr {
        text-align: center;
        margin-bottom: 40px;
      }
      .vid-hdr .ey {
        justify-content: center;
      }
      .vid-hdr .ey::before {
        display: none;
      }
      .vid-hdr .st {
        color: var(--ink);
      }
      .vid-hdr p {
        font-size: 13px;
        color: var(--tm);
        max-width: 520px;
        margin: 10px auto 0;
        line-height: 1.8;
      }
      .vid-frame {
        max-width: 880px;
        margin: 0 auto;
        position: relative;
        padding-bottom: 49.5%;
        height: 0;
        overflow: hidden;
        border: 1px solid rgba(203, 168, 101, 0.3);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
      }
      .vid-frame::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid rgba(203, 168, 101, 0.18);
        margin: 10px;
        pointer-events: none;
        z-index: 2;
      }
      .vid-frame iframe,
      .vid-frame video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
        object-fit: cover;
        background: var(--ink-deep);
      }

      /* RESPONSIVE */
      @media (max-width: 1100px) {
        .si {
          padding: 0 36px;
        }
        nav,
        nav.sc {
          padding: 14px 36px;
        }
        .nl {
          display: none;
        }
        .na {
          display: none;
        }
        .hbg {
          display: flex;
        }
        .ft-main {
          padding: 44px 36px;
          grid-template-columns: 1fr 1fr;
        }
        .ft-bot {
          padding: 12px 36px;
        }
        .inv-lay,
        .dev-g,
        .geo-g,
        .ab-grid,
        .int-lay,
        .loc-g {
          grid-template-columns: 1fr;
        }
        .cta-s,
        .wg-grid,
        .wg-grid-b {
          grid-template-columns: 1fr 1fr;
        }
        .cta-sb {
          border-right: none;
          border-bottom: 1px solid rgba(9, 21, 39, 0.1);
        }
        .geo-img {
          height: 320px;
        }
        .dev-img {
          height: 320px;
        }
        .ab-img {
          min-height: 320px;
        }
        .inv-img {
          min-height: 320px;
        }
        .inv-r {
          padding: 40px 36px;
        }
        .vt-intro {
          grid-template-columns: 1fr;
          gap: 16px;
        }
        .map-emb {
          height: 380px;
        }
      }
      @media (max-width: 768px) {
        nav,
        nav.sc {
          padding: 12px 20px;
        }
        .si {
          padding: 0 20px;
        }
        .hc {
          left: 20px;
          width: calc(100% - 40px);
          max-width: calc(100vw - 40px);
        }
        h1.hc-t {
          font-size: clamp(32px, 9vw, 48px);
        }
        .hc-sub {
          font-size: 10px;
          letter-spacing: 2px;
          margin: 10px 0 20px;
        }
        .h-arrows {
          left: 20px;
          bottom: 36px;
        }
        .h-dots {
          right: 20px;
          bottom: 44px;
        }
        .h-cnt {
          display: none;
        }
        .h-scroll {
          display: none;
        }
        .hc-btns {
          flex-direction: column;
          gap: 8px;
        }
        .btn-g,
        .btn-ow {
          padding: 11px 22px;
          font-size: 9px;
          text-align: center;
        }
        .excl-g {
          grid-template-columns: 1fr 1fr;
        }
        .comm-g {
          grid-template-columns: 1fr;
        }
        .gal-grid {
          grid-template-columns: 1fr 1fr;
        }
        .gal-grid.lg {
          grid-template-columns: 1fr 1fr;
        }
        .gal-grid .gi,
        .gal-grid.lg .gi {
          height: 160px;
        }
        .gal-grid .gi.tall,
        .gal-grid.lg .gi.tall {
          height: 160px;
          grid-row: span 1;
        }
        .gal-grid .gi.wide,
        .gal-grid.lg .gi.wide {
          grid-column: span 1;
        }
        .sk-g {
          grid-template-columns: 1fr 1fr;
        }
        .wg-grid,
        .wg-grid-b {
          grid-template-columns: 1fr;
        }
        .int-mos {
          grid-template-columns: 1fr;
          grid-auto-rows: 150px;
        }
        .im.tall {
          grid-row: span 1;
        }
        .ft-main {
          grid-template-columns: 1fr;
          padding: 36px 20px;
          gap: 24px;
        }
        .ft-bot {
          flex-direction: column;
          gap: 8px;
          text-align: center;
          padding: 12px 20px;
        }
        .fl-wrap {
          bottom: 12px;
          right: 12px;
        }
        .fbtn {
          padding: 9px 13px;
          font-size: 9px;
        }
        .mod {
          padding: 26px 18px;
        }
        .fr2 {
          grid-template-columns: 1fr;
        }
        .ab-txt {
          padding: 36px 24px;
        }
        .int-l {
          padding: 40px 24px;
        }
        .ab-img {
          min-height: 240px;
        }
        .geo-img {
          height: 240px;
        }
        .dev-img {
          height: 240px;
        }
        .inv-img {
          min-height: 220px;
        }
        .inv-r {
          padding: 36px 24px;
        }
        .map-emb {
          height: 260px;
        }
        .vt-intro {
          grid-template-columns: 1fr;
          gap: 12px;
        }
        .loc-g {
          gap: 32px;
        }
        .ab-feats {
          grid-template-columns: 1fr;
        }
        .lb-cap {
          white-space: normal;
          text-align: center;
          width: 90vw;
          left: 5vw;
          transform: none;
        }
        #geo {
          padding: 28px 0;
        }
        #amenities,
        #villas,
        #inv,
        #seek,
        #loc,
        #dev,
        #gallery,
        #whygoa,
        #video {
          padding: 48px 0;
        }
        .wg-card {
          min-height: 220px;
        }
        .wg-card-b {
          padding: 22px;
          min-height: 220px;
        }
        .cta-s {
          grid-template-columns: 1fr;
        }
        .gal-tabs {
          gap: 3px;
        }
        .gtab {
          padding: 7px 14px;
          font-size: 8px;
        }
        .ec {
          height: 240px;
        }
        .cc {
          height: 180px;
        }
        .sk-c {
          padding: 28px 20px;
        }
      }
      @media (max-width: 480px) {
        .excl-g {
          grid-template-columns: 1fr;
        }
        .sk-g {
          grid-template-columns: 1fr;
        }
        .vt {
          font-size: 10px;
        }
        .vt th,
        .vt td {
          padding: 8px 10px;
        }
        h1.hc-t {
          font-size: clamp(28px, 10vw, 40px);
        }
        .hc-sub {
          /* display: none; */
        }
        .hc {
          left: 16px;
          width: calc(100% - 32px);
        }
        .hc-verom {
          font-size: 9px;
        }
        .btn-g,
        .btn-ow {
          padding: 10px 18px;
          font-size: 8.5px;
          width: 100%;
          text-align: center;
          display: block;
        }
        .hc-btns {
          width: 100%;
        }
        #geo {
          padding: 20px 0;
        }
        #amenities,
        #villas,
        #inv,
        #seek,
        #loc,
        #dev,
        #gallery,
        #whygoa,
        #video {
          padding: 36px 0;
        }
        .geo-img {
          height: 200px;
        }
        .dev-img {
          height: 200px;
        }
        .ab-img {
          min-height: 200px;
        }
        .inv-img {
          min-height: 180px;
        }
        .map-emb {
          height: 220px;
        }
        .gal-grid .gi,
        .gal-grid.lg .gi {
          height: 130px;
        }
        .wg-card,
        .wg-card-b {
          min-height: 180px;
        }
        .ec {
          height: 200px;
        }
        .fl-wrap {
          bottom: 8px;
          right: 8px;
        }
        .fbtn {
          padding: 8px 10px;
          font-size: 8px;
          gap: 5px;
        }
        .ft-main {
          padding: 28px 16px;
          gap: 20px;
        }
        .ft-bot {
          padding: 10px 16px;
          font-size: 10px;
        }
        .si {
          padding: 0 16px;
        }
        nav,
        nav.sc {
          padding: 10px 16px;
        }
        .nb-t {
          font-size: 14px;
          letter-spacing: 3px;
        }
        .mod {
          padding: 22px 14px;
          margin: 8px;
        }
        .wg-num {
          font-size: 38px;
        }
        .sk-c {
          padding: 24px 16px;
        }
        .sk-mk {
          font-size: 40px;
        }
        .sk-q {
          font-size: 16px;
        }
      }
