:root {
      --olive-900: #12150a;
      --olive-850: #181c0d;
      --olive-800: #1f2410;
      --olive-700: #2c3217;
      --olive-600: #3a4220;
      --line-gold: rgba(201, 168, 74, .18);
      --gold: #c9a84a;
      --gold-bright: #ecd089;
      --gold-deep: #97772a;
      --cream: #f5f1e4;
      --cream-2: #ece6d4;
      --sand: #e8e1cd;
      --sage: #dfe2cc;
      --green-tag: #3a6b34;
      --ink: #23271a;
      --ink-soft: #4d5340;
      --shadow: 0 34px 80px -34px rgba(18, 21, 10, .5);
      --gold-grad: linear-gradient(135deg, #97772a 0%, #ecd089 36%, #c9a84a 58%, #7e6220 100%);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Jost', sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    h1,
    h2,
    h3,
    h4 {
      font-weight: 400;
      line-height: 1.08
    }

    .serif {
      font-family: 'Fraunces', serif
    }

    .marc {
      font-family: 'Marcellus', serif
    }

    img {
      display: block;
      max-width: 100%
    }

    a {
      color: inherit;
      text-decoration: none
    }

    .wrap {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px
    }

    .gold-text {
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent
    }

    .eyebrow {
      font-family: 'Jost';
      font-weight: 500;
      letter-spacing: .42em;
      text-transform: uppercase;
      font-size: .7rem;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--gold-deep)
    }

    .eyebrow::before {
      content: "";
      width: 40px;
      height: 1px;
      background: var(--gold)
    }

    .eyebrow.center {
      justify-content: center
    }

    .eyebrow.center::after {
      content: "";
      width: 40px;
      height: 1px;
      background: var(--gold)
    }

    .sec-title {
      font-size: clamp(2.1rem, 5.2vw, 2.7rem);
      letter-spacing: -.01em;
      margin: 18px 0
    }

    .sec-title em {
      font-style: italic;
      color: var(--gold-deep)
    }

    .bg-dark .sec-title em {
      color: var(--gold-bright)
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      border: none;
      font-family: 'Jost';
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-size: .73rem;
      padding: 16px 34px;
      border-radius: 2px;
      transition: .45s cubic-bezier(.2, .7, .2, 1)
    }

    .btn-gold {
      background: var(--gold-grad);
      color: var(--olive-900);
      box-shadow: 0 14px 32px -12px rgba(151, 119, 42, .75);
      background-size: 200% 100%;
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      background-position: 100% 0;
      box-shadow: 0 22px 46px -14px rgba(151, 119, 42, .9)
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .5)
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold-bright)
    }

    .pdd-4{
        padding: 4px !important;
    }

    /* progress + back to top */
    #bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0;
      background: var(--gold-grad);
      z-index: 80;
      transition: width .1s linear
    }

    #top {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--gold-grad);
      color: var(--olive-900);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 70;
      opacity: 0;
      transform: translateY(20px);
      transition: .4s;
      box-shadow: var(--shadow)
    }

    #top.show {
      opacity: 1;
      transform: none
    }

    #top svg {
      width: 20px
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 60;
      padding: 22px 0;
      transition: .5s
    }

    nav.scrolled {
      background: rgba(18, 21, 10, .94);
      backdrop-filter: blur(12px);
      padding: 11px 0;
      box-shadow: 0 12px 40px -22px #000
    }

    .nav-in {
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .brand {
      display: flex;
      flex-direction: column
    }

    .brand .mark {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.65rem;
      letter-spacing: .02em;
      color: var(--gold-bright)
    }

    .brand small {
      font-size: .54rem;
      letter-spacing: .4em;
      color: rgba(255, 255, 255, .6);
      text-transform: uppercase;
      margin-top: -2px
    }

    .nav-links {
        display: flex;
        gap: 28px;
        /* gap: 18px; */
        align-items: center
    }

    .nav-links a {
      font-size: .76rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .82);
      position: relative;
      padding: 4px 0;
      transition: .3s
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      height: 1px;
      width: 0;
      background: var(--gold);
      transition: .35s
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%
    }

    .nav-cta {
      padding: 11px 22px;
      font-size: .66rem
    }

    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer
    }

    .burger span {
      width: 26px;
      height: 2px;
      background: var(--gold-bright);
      transition: .3s
    }

    .nav-mobile {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 75;
      background: rgba(18, 21, 10, .98);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 22px
    }

    .nav-mobile.open {
      display: flex;
      animation: fade .4s
    }

    .nav-mobile a {
      color: #fff;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.5rem
    }

    .nav-mobile .x {
      position: absolute;
      top: 24px;
      right: 28px;
      color: var(--gold-bright);
      font-size: 2.2rem;
      cursor: pointer
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--olive-900)
    }

    .hero-bg {
      position: absolute;
      inset: -6% -6% -6% -6%;
      background-size: cover;
      background-position: center;
      animation: ken 22s ease-in-out infinite alternate;
      will-change: transform
    }

    @keyframes ken {
      from {
        transform: scale(1.04) translate(0, 0)
      }

      to {
        transform: scale(1.14) translate(-1.5%, -1.5%)
      }
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(18, 21, 10, .95) 0%, rgba(18, 21, 10, .74) 40%, rgba(18, 21, 10, .30) 72%, rgba(18, 21, 10, .55) 100%)
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(236, 208, 137, .30), transparent 70%);
      z-index: 2;
      filter: blur(6px);
      animation: float 9s ease-in-out infinite
    }

    .orb.o1 {
      width: 140px;
      height: 140px;
      top: 18%;
      right: 14%
    }

    .orb.o2 {
      width: 90px;
      height: 90px;
      bottom: 22%;
      right: 30%;
      animation-delay: -3s
    }

    .orb.o3 {
      width: 60px;
      height: 60px;
      top: 40%;
      right: 48%;
      animation-delay: -6s
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-26px)
      }
    }

    .hero-in {
      position: relative;
      z-index: 3;
      max-width: 1240px;
      margin: 0 auto;
      padding: 120px 32px 90px;
      width: 100%
    }

    .hero-logo {
      width: 340px;
      max-width: 70vw;
      margin-bottom: 26px;
      filter: drop-shadow(0 12px 34px rgba(0, 0, 0, .55));
      opacity: 0;
      animation: up .9s .1s forwards
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6.6vw, 5.2rem);
      color: #fff;
      letter-spacing: -.01em;
      font-family: 'Fraunces', serif;
      opacity: 0;
      animation: up .9s .28s forwards
    }

    .hero h1 em {
      font-style: italic
    }

    .hero .lede {
      color: rgba(255, 255, 255, .86);
      font-size: clamp(1.02rem, 2vw, 1.3rem);
      max-width: 600px;
      margin: 22px 0 14px;
      font-weight: 300;
      opacity: 0;
      animation: up .9s .46s forwards
    }

    .hero .place {
      color: var(--gold-bright);
      letter-spacing: .26em;
      text-transform: uppercase;
      font-size: .76rem;
      margin-bottom: 34px;
      opacity: 0;
      animation: up .9s .6s forwards
    }

    .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: up .9s .74s forwards
    }

    @keyframes up {
      from {
        opacity: 0;
        transform: translateY(34px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    .scroll-cue {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      color: rgba(255, 255, 255, .6);
      font-size: .6rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      text-align: center
    }

    .scroll-cue i {
      display: block;
      width: 1px;
      height: 46px;
      background: linear-gradient(var(--gold), transparent);
      margin: 10px auto 0;
      animation: cue 2s infinite
    }

    @keyframes cue {
      0% {
        transform: scaleY(0);
        transform-origin: top
      }

      50% {
        transform: scaleY(1);
        transform-origin: top
      }

      51% {
        transform-origin: bottom
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom
      }
    }

    /* MARQUEE */
    .marquee {
      background: var(--olive-800);
      overflow: hidden;
      border-block: 1px solid var(--line-gold);
      padding: 14px 0
    }

    .marquee .track {
      display: flex;
      gap: 46px;
      white-space: nowrap;
      width: max-content;
      animation: scrollx 26s linear infinite
    }

    .marquee span {
      color: var(--gold-bright);
      font-family: 'Marcellus', serif;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-size: .84rem;
      display: inline-flex;
      align-items: center;
      gap: 46px
    }

    .marquee span::after {
      content: "✦";
      color: var(--gold-deep);
      font-size: .7rem
    }

    @keyframes scrollx {
      to {
        transform: translateX(-50%)
      }
    }

    /* GLANCE */
    .glance {
      background: var(--olive-900);
      position: relative
    }

    .glance .wrap {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      padding: 0
    }

    .g-item {
      padding: 42px 14px;
      text-align: center;
      border-right: 1px solid var(--line-gold)
    }

    .g-item:last-child {
      border-right: none
    }

    .g-item .num {
      font-family: 'Fraunces', serif;
      font-size: 2.1rem;
      line-height: 1;
      font-weight: 500
    }

    .g-item .lab {
      display: block;
      margin-top: 8px;
      color: rgba(255, 255, 255, .6);
      font-size: .66rem;
      letter-spacing: .18em;
      text-transform: uppercase
    }
    
    

    /* SECTION SHELL */
    .pad {
      padding: 112px 0
    }

    .bg-cream {
      background: var(--cream)
    }

    .bg-sand {
      background: var(--sand)
    }

    .bg-sage {
      background: var(--sage)
    }

    .bg-dark {
      background: var(--olive-850);
      color: #fff
    }

    .bg-dark .body-txt {
      color: rgba(255, 255, 255, .78)
    }

    .center-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 64px
    }

    .center-head p {
      color: var(--ink-soft);
      font-size: 1.05rem;
      margin-top: 6px
    }

    .bg-dark .center-head p {
      color: rgba(255, 255, 255, .72)
    }

    .sec-title.uline {
      position: relative;
      display: inline-block
    }

    .sec-title.uline svg {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      width: 100%;
      height: 14px
    }

    .sec-title.uline path {
      stroke: var(--gold);
      stroke-width: 2;
      fill: none;
      stroke-dasharray: 300;
      stroke-dashoffset: 300;
      transition: stroke-dashoffset 1.4s ease .2s
    }

    .in .sec-title.uline path,
    .sec-title.uline.in path {
      stroke-dashoffset: 0
    }

    /* reveal */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: .9s cubic-bezier(.2, .7, .2, 1)
    }

    .reveal.in {
      opacity: 1;
      transform: none
    }

    .reveal.d1 {
      transition-delay: .12s
    }

    .reveal.d2 {
      transition-delay: .24s
    }

    .reveal.d3 {
      transition-delay: .36s
    }

    .reveal.d4 {
      transition-delay: .48s
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 70px;
      align-items: center
    }

    .about-img {
      position: relative
    }

    .about-img img {
      border-radius: 3px;
      box-shadow: var(--shadow);
      width: 100%;
      object-fit: cover
    }

    .about-img .frame {
      position: absolute;
      inset: -18px;
      border: 1px solid var(--gold);
      border-radius: 3px;
      z-index: -1
    }

    .about-img .badge {
      position: absolute;
      right: -24px;
      bottom: -24px;
      background: var(--gold-grad);
      color: var(--olive-900);
      padding: 22px 28px;
      text-align: center;
      border-radius: 3px;
      box-shadow: var(--shadow)
    }

    .about-img .badge b {
      font-family: 'Fraunces', serif;
      font-size: 2.2rem;
      display: block;
      line-height: 1
    }

    .about-img .badge small {
      letter-spacing: .16em;
      text-transform: uppercase;
      font-size: .6rem
    }

    .body-txt {
      color: var(--ink-soft);
      margin: 14px 0;
      font-weight: 300;
      font-size: 1.06rem
    }

    .bg-dark .body-txt {
      color: rgba(255, 255, 255, .78)
    }

    .feat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 30px
    }

    .feat {
      display: flex;
      gap: 14px;
      align-items: flex-start
    }

    .feat svg {
      width: 26px;
      height: 26px;
      color: var(--gold-deep);
      flex: none;
      margin-top: 3px
    }

    .bg-dark .feat svg {
      color: var(--gold-bright)
    }

    .feat b {
      display: block;
      font-weight: 500;
      font-size: 1rem
    }

    .feat span {
      font-size: .88rem;
      color: var(--ink-soft);
      font-weight: 300
    }

    .bg-dark .feat span {
      color: rgba(255, 255, 255, .65)
    }

    /* AMENITIES */
    .amen-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px
    }

    .amen {
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--line-gold);
      border-radius: 4px;
      padding: 32px 24px;
      transition: .45s;
      position: relative;
      overflow: hidden
    }

    .amen::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(236, 208, 137, .12), transparent 60%);
      opacity: 0;
      transition: .45s
    }

    .amen:hover {
      transform: translateY(-8px);
      border-color: rgba(201, 168, 74, .45)
    }

    .amen:hover::before {
      opacity: 1
    }

    .amen .ic {
      width: 44px;
      height: 44px;
      color: var(--gold-bright);
      margin-bottom: 16px
    }

    .amen h4 {
      font-family: 'Fraunces', serif;
      font-size: 1.45rem;
      color: #fff;
      margin-bottom: 6px
    }

    .amen p {
      color: rgba(255, 255, 255, .62);
      font-size: .9rem;
      font-weight: 300
    }

    .amen-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 46px
    }

    .am-card {
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow)
    }

    .am-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: 1s
    }

    .am-card:hover img {
      transform: scale(1.07)
    }

    .am-card .cap {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 22px;
      background: linear-gradient(transparent, rgba(18, 21, 10, .92))
    }

    .am-card .cap h4 {
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      color: #fff
    }

    .am-feature {
      margin-top: 24px;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow)
    }

    .am-feature img {
      width: 100%;
      height: 480px;
      object-fit: cover
    }

    .am-feature .cap {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      padding: 36px 40px;
      background: linear-gradient(transparent, rgba(18, 21, 10, .9))
    }

    .am-feature .cap p {
      color: var(--gold-bright);
      letter-spacing: .16em;
      text-transform: uppercase;
      font-size: .7rem
    }

    .am-feature .cap h3 {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 2rem;
      color: #fff
    }

    /* SPECIFICATION */
    .spec-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 62px;
      align-items: start
    }

    .spec-mood {
      position: sticky;
      top: 104px
    }

    .spec-mood img {
      width: 100%;
      border-radius: 4px;
      box-shadow: var(--shadow)
    }

    .spec-mood .q {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.5rem;
      color: var(--ink);
      margin-top: 24px;
      line-height: 1.35
    }

    .spec-mood .q::before {
      content: "“";
      color: var(--gold);
      font-family: 'Fraunces', serif
    }

    .acc {
      border-top: 1px solid rgba(18, 21, 10, .12)
    }

    .acc-item {
      border-bottom: 1px solid rgba(18, 21, 10, .12)
    }

    .acc-head {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 22px 4px;
      cursor: pointer;
      transition: .3s
    }

    .acc-head:hover {
      padding-left: 10px
    }

    .acc-head .n {
      font-family: 'Fraunces', serif;
      color: var(--gold-deep);
      font-size: 1.25rem;
      width: 34px;
      flex: none
    }

    .acc-head h4 {
      flex: 1;
      font-family: 'Marcellus', serif;
      font-size: 1.12rem;
      letter-spacing: .03em
    }

    .acc-head .pm {
      width: 22px;
      height: 22px;
      flex: none;
      position: relative
    }

    .acc-head .pm::before,
    .acc-head .pm::after {
      content: "";
      position: absolute;
      background: var(--gold-deep);
      transition: .3s
    }

    .acc-head .pm::before {
      top: 50%;
      left: 0;
      right: 0;
      height: 1.5px;
      transform: translateY(-50%)
    }

    .acc-head .pm::after {
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1.5px;
      transform: translateX(-50%)
    }

    .acc-item.open .pm::after {
      transform: translateX(-50%) scaleY(0)
    }

    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: .45s ease
    }

    .acc-body div {
      padding: 0 4px 22px 52px;
      color: var(--ink-soft);
      font-weight: 300;
      font-size: .98rem
    }

    .acc-body li {
      list-style: none;
      position: relative;
      padding-left: 18px;
      margin-bottom: 6px
    }

    .acc-body li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg)
    }

    /* TABS */
    .tabs {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 42px
    }

    .tab {
      padding: 12px 26px;
      border: 1px solid rgba(18, 21, 10, .18);
      background: transparent;
      cursor: pointer;
      font-family: 'Jost';
      letter-spacing: .13em;
      text-transform: uppercase;
      font-size: .71rem;
      color: var(--ink-soft);
      border-radius: 2px;
      transition: .35s
    }

    .bg-dark .tab {
      border-color: var(--line-gold);
      color: rgba(255, 255, 255, .7)
    }

    .tab.active {
      background: var(--gold-grad);
      color: var(--olive-900);
      border-color: transparent
    }

    .tab-panel {
      display: none
    }

    .tab-panel.active {
      display: block;
      animation: fade .6s
    }

    @keyframes fade {
      from {
        opacity: 0;
        transform: translateY(14px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    /* GALLERY */
    .gal {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 195px;
      gap: 14px
    }

    .gal button {
      border: none;
      padding: 0;
      overflow: hidden;
      border-radius: 4px;
      position: relative;
      cursor: pointer;
      display: block
    }

    .gal img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 1.1s cubic-bezier(.2, .7, .2, 1)
    }

    .gal button:hover img {
      transform: scale(1.08)
    }

    .gal button::after {
      content: "⛶";
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.4rem;
      background: linear-gradient(transparent 50%, rgba(18, 21, 10, .55));
      opacity: 0;
      transition: .4s
    }

    .gal button:hover::after {
      opacity: 1
    }

    .gal .big {
      grid-column: span 4;
      grid-row: span 2
    }

    .gal .tall {
      grid-column: span 2;
      grid-row: span 2
    }

    .gal .x3 {
      grid-column: span 3
    }

    .gal .x2 {
      grid-column: span 2
    }

    .video-shell {
      position: relative;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: var(--shadow);
      max-width: 960px;
      margin: 0 auto;
      aspect-ratio: 16/9;
      background: var(--olive-900)
    }

    .video-shell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .55
    }

    .video-shell .play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 16px;
      cursor: pointer
    }

    .play .circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: var(--gold-grad);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 18px 40px -10px rgba(0, 0, 0, .55);
      transition: .4s;
      position: relative
    }

    .play .circle::before {
      content: "";
      position: absolute;
      inset: -12px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: .8
      }

      100% {
        transform: scale(1.4);
        opacity: 0
      }
    }

    .video-shell:hover .circle {
      transform: scale(1.08)
    }

    .play .circle svg {
      width: 30px;
      margin-left: 5px;
      color: var(--olive-900)
    }

    .play .lab {
      color: #fff;
      letter-spacing: .2em;
      text-transform: uppercase;
      font-size: .72rem
    }

    .video-shell iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0
    }

    /* lightbox */
    .lb {
      position: fixed;
      inset: 0;
      background: rgba(12, 14, 7, .95);
      z-index: 90;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 30px
    }

    .lb.open {
      display: flex;
      animation: fade .3s
    }

    .lb img {
      max-width: 92vw;
      max-height: 88vh;
      border-radius: 4px;
      box-shadow: var(--shadow)
    }

    .lb .x {
      position: absolute;
      top: 24px;
      right: 30px;
      color: var(--gold-bright);
      font-size: 2.4rem;
      cursor: pointer
    }

    /* SITE PLAN */
    .plan-stage {
      background: #fff;
      border: 1px solid rgba(18, 21, 10, .1);
      border-radius: 5px;
      padding: 28px;
      box-shadow: var(--shadow);
      text-align: center
    }

    .bg-sand .plan-stage {
      background: #fffdf7
    }

    .plan-stage img {
      margin: 0 auto;
      max-height: 560px;
      width: auto;
      cursor: zoom-in
    }

    .plan-cap {
      text-align: center;
      margin-top: 16px;
      color: var(--ink-soft);
      font-size: .85rem
    }

    .legend {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 18px
    }

    .legend span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .82rem;
      color: var(--ink-soft)
    }

    .legend i {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--gold-grad);
      color: var(--olive-900);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      font-weight: 600;
      font-style: normal
    }

    .subtabs {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 0 0 26px
    }

    .subtab {
      padding: 8px 18px;
      border: 1px solid rgba(18, 21, 10, .18);
      background: transparent;
      cursor: pointer;
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: .3s;
      color: var(--ink-soft)
    }

    .subtab.active {
      background: var(--olive-800);
      color: var(--gold-bright);
      border-color: transparent
    }

    .unit-table {
      margin: 30px auto 0;
      border-collapse: collapse;
      width: 100%;
      max-width: 880px;
      font-size: .88rem;
      background: #fffdf7;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: var(--shadow)
    }

    .unit-table th,
    .unit-table td {
      padding: 11px 14px;
      border-bottom: 1px solid rgba(18, 21, 10, .08);
      text-align: center
    }

    .unit-table thead th {
      background: var(--olive-800);
      color: var(--gold-bright);
      font-family: 'Jost';
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-size: .66rem;
      border: none
    }

    .unit-table tbody tr {
      transition: .25s
    }

    .unit-table tbody tr:hover {
      background: var(--sage)
    }

    .plan-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px
    }

    /* LOCATION */
    .loc-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 46px;
      align-items: start
    }

    .loc-map {
      border-radius: 5px;
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative
    }

    .loc-map iframe {
      width: 100%;
      height: 540px;
      border: 0;
      display: block;
      filter: grayscale(.2) contrast(1.05)
    }

    .loc-pin {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--olive-800);
      color: #fff;
      padding: 12px 20px;
      border-radius: 3px;
      margin-bottom: 20px;
      font-size: .85rem
    }

    .loc-pin svg {
      width: 18px;
      color: var(--gold-bright);
      animation: bob 2s ease-in-out infinite
    }

    @keyframes bob {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-4px)
      }
    }

    .conn {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .conn-card {
      background: #fffdf7;
      border: 1px solid rgba(18, 21, 10, .08);
      border-radius: 4px;
      padding: 20px;
      transition: .35s
    }

    .conn-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow)
    }

    .conn-card h4 {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Marcellus', serif;
      font-size: 1rem;
      margin-bottom: 12px;
      color: var(--olive-700)
    }

    .conn-card h4 svg {
      width: 18px;
      color: var(--gold-deep)
    }

    .conn-card ul {
      list-style: none
    }

    .conn-card li {
      display: flex;
      justify-content: space-between;
      font-size: .83rem;
      color: var(--ink-soft);
      padding: 4px 0;
      border-bottom: 1px dashed rgba(18, 21, 10, .1)
    }

    .conn-card li:last-child {
      border-bottom: none
    }

    .conn-card li b {
      color: var(--gold-deep);
      font-weight: 600
    }

    /* ENQUIRY */
    .enq-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 60px;
      align-items: center
    }

    .enq-left .sec-title {
      color: #fff
    }

    .enq-left p {
      color: rgba(255, 255, 255, .74);
      font-weight: 300;
      margin: 14px 0 26px
    }

    .enq-points {
      list-style: none;
      margin-top: 22px
    }

    .enq-points li {
      display: flex;
      gap: 14px;
      align-items: center;
      color: rgba(255, 255, 255, .85);
      margin-bottom: 14px;
      font-size: .95rem
    }

    .enq-points svg {
      width: 20px;
      color: var(--gold-bright);
      flex: none
    }

    .form {
      background: var(--cream);
      border-radius: 5px;
      padding: 42px;
      box-shadow: var(--shadow)
    }

    .form h3 {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.9rem;
      color: var(--olive-700);
      margin-bottom: 4px
    }

    .form .sub {
      color: var(--ink-soft);
      font-size: .9rem;
      margin-bottom: 24px
    }

    .field {
      margin-bottom: 18px
    }

    .field label {
      display: block;
      font-size: .65rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 7px
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 13px 14px;
      border: 1px solid rgba(18, 21, 10, .16);
      background: #fff;
      border-radius: 2px;
      font-family: 'Jost';
      font-size: .95rem;
      color: var(--ink);
      transition: .3s
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 168, 74, .16)
    }

    .f-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .form .btn-gold {
      width: 100%;
      justify-content: center;
      margin-top: 6px
    }

    .form-note {
      text-align: center;
      font-size: .73rem;
      color: var(--ink-soft);
      margin-top: 14px
    }

    .toast {
      display: none;
      background: var(--green-tag);
      color: #fff;
      padding: 16px;
      border-radius: 3px;
      text-align: center;
      margin-bottom: 18px;
      font-size: .92rem
    }

    .toast.show {
      display: block;
      animation: fade .5s
    }

    /* FOOTER */
    footer {
      background: var(--olive-900);
      color: rgba(255, 255, 255, .7);
      padding: 78px 0 28px;
      border-top: 1px solid var(--line-gold)
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 46px
    }

    .foot-brand .mark {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 2rem;
      color: var(--gold-bright)
    }

    .foot-brand p {
      margin-top: 14px;
      font-weight: 300;
      max-width: 340px;
      font-size: .94rem
    }

    .foot-brand .vastu {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      color: var(--gold-bright);
      font-size: .8rem;
      letter-spacing: .1em
    }

    .foot-col h5 {
      font-family: 'Marcellus', serif;
      color: #fff;
      font-size: 1rem;
      margin-bottom: 18px
    }

    .foot-col p,
    .foot-col a {
      display: block;
      font-size: .9rem;
      margin-bottom: 10px;
      font-weight: 300
    }

    .foot-col a:hover {
      color: var(--gold-bright)
    }

    .foot-col small {
      color: var(--gold-deep);
      letter-spacing: .16em;
      text-transform: uppercase;
      font-size: .58rem;
      display: block;
      margin-bottom: 4px
    }

    .foot-bottom {
      border-top: 1px solid var(--line-gold);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: .73rem;
      color: rgba(255, 255, 255, .45)
    }

    .disclaimer {
      font-size: .69rem;
      color: rgba(255, 255, 255, .34);
      margin-top: 16px;
      line-height: 1.6;
      max-width: 1000px
    }
    
    
    .overlay {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.7);
      transition: opacity 500ms;
      visibility: hidden;
      opacity: 0;
        z-index: 999;
    }
    .overlay:target {
        visibility: visible;
        opacity: 1;
    }

.popup {
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  width: 40%;
  transition: all 5s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 5px;
  right: 20px;
  transition: all 200ms;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #d9d9d9;
}
.popup .close:hover {
  color: #06D85F;
}
.popup.formpopup .close {
  position: absolute;
  top: 5px;
  right: 20px;
  transition: all 200ms;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #111;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}
.quire-btn a {
  position: fixed;
  right: -46px;
  bottom: 50%;
  width: fit-content;
  cursor: pointer;
  z-index: 70;
  transition: .4s;
  background: var(--gold-grad);
  color: var(--olive-900);
  box-shadow: 0 14px 32px -12px rgba(151, 119, 42, .75);
  transform: rotate(270deg);
  padding: 5px 10px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 5px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
.quire-btn a img {
  width: 50px;
  padding: 10px;
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .nav-links {
        display: none
    }

    .burger {
        display: flex
    }

    .about-grid,
    .spec-grid,
    .loc-grid,
    .enq-grid,
    .plan-pair {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .spec-mood {
        position: static
    }

    .amen-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .glance .wrap {
        grid-template-columns: repeat(3, 1fr)
    }

    .g-item:nth-child(3) {
        border-right: none
    }

    .gal {
        grid-template-columns: repeat(2, 1fr)
    }

    .gal .big,
    .gal .tall,
      .gal .x3,
      .gal .x2 {
        grid-column: span 2;
        grid-row: span 1
      }

      .conn {
        grid-template-columns: 1fr
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr
      }

      .amen-thumbs {
        grid-template-columns: 1fr
      }
    }

@media(max-width:600px) {
    .wrap {
        padding: 0 20px
    }

    .pad {
        padding: 74px 0
    }

    .amen-grid {
        grid-template-columns: 1fr
    }

    .glance .wrap {
        grid-template-columns: repeat(2, 1fr)
    }

    .g-item {
        border-right: none;
        border-bottom: 1px solid var(--line-gold);
        padding: 26px 8px
    }

    .g-item .num {
        font-size: 2.2rem
    }

    .f-row,
    .feat-row {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr
    }

    .about-img .badge {
        right: 0;
        bottom: -18px;
        padding: 16px 20px
    }

    .hero h1 {
        font-size: 2.3rem
    }

    .unit-table {
        font-size: .78rem
    }

    .unit-table th,
    .unit-table td {
        padding: 8px 6px 
    }
      
    .formpopup .form {
        padding: 25px 15px;
    }
    .box{
        width: 70%;
    }
    .popup {
        width: 80%;
    }
 
    .hero h1 {
        font-size: 30px;
    }
    .hero-logo {
        max-width: 50vw;
    }
    .popup.formpopup .form h3 {
        font-size: 28px;
        margin-bottom: 5px;
    }
    
    .popform .f-row {
        gap: 0px;
    }
    
    .popform .field {
        margin-bottom: 8px;
    }
    .popform .field input, 
    .popform .field select, 
    .popform .field textarea{
        padding: 5px 10px;
        font-size: 14px;
    }
    .popform .field label {
        margin-bottom: 5px;
    }
    .popform .btn {
        padding: 10px 34px;
    }
  
}

    @media(prefers-reduced-motion:reduce) {
      * {
        animation: none !important;
        transition: none !important
      }

      .reveal {
        opacity: 1;
        transform: none
      }
    }