:root {
  --pine: #06302b;
  --pine-deep: #04241f;
  --pine-soft: #0c453d;
  --teal-line: rgba(212, 175, 55, .16);
  --gold: #d8b14a;
  --gold-bright: #f0d27e;
  --gold-deep: #b88a2e;
  --cream: #f4f1e6;
  --cream-2: #ece7d6;
  --sage: #d9e0cb;
  --sage-deep: #c8d2b3;
  --ink: #1c241f;
  --ink-soft: #46504a;
  --line: rgba(6, 48, 43, .14);
  --shadow: 0 30px 70px -30px rgba(4, 36, 31, .45);
  --gold-grad: linear-gradient(135deg, #b88a2e 0%, #f0d27e 38%, #d8b14a 60%, #9c7322 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.1
}

.serif {
  font-family: 'Cormorant Garamond', 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', sans-serif;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-size: .72rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  display: inline-block
}

.eyebrow.center::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  display: inline-block
}

.eyebrow.center {
  justify-content: center
}

.sec-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  letter-spacing: .01em;
  margin: 18px 0
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .74rem;
  padding: 16px 34px;
  border-radius: 2px;
  transition: .45s cubic-bezier(.2, .7, .2, 1);
}

.btn-gold {
  background: var(--gold-grad);
  color: var(--pine-deep);
  box-shadow: 0 14px 30px -12px rgba(184, 138, 46, .7)
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -14px rgba(184, 138, 46, .85)
}

.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);
  background: rgba(255, 255, 255, .04)
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: .5s;
  padding: 22px 0
}

nav.scrolled {
  background: rgba(4, 36, 31, .94);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 12px 40px -22px #000
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand .mark {
  font-family: 'Marcellus', serif;
  font-size: 1.6rem;
  letter-spacing: .18em;
  color: var(--gold-bright)
}

.brand small {
  display: block;
  font-size: .56rem;
  letter-spacing: .42em;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  margin-top: 2px
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center
}

.nav-links a {
  font-size: .78rem;
  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 {
  color: #fff
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  padding: 11px 24px;
  font-size: .68rem
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--gold-bright);
  transition: .3s
}

.padd-4{
  padding: 4px !important;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pine-deep)
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 36, 31, .96) 0%, rgba(4, 36, 31, .78) 38%, rgba(4, 36, 31, .35) 70%, rgba(4, 36, 31, .55) 100%)
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(212, 175, 55, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, .05) 1px, transparent 1px);
  background-size: 60px 60px
}

.hero-in {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%
}

.hero-logo {
  width: 300px;
  max-width: 62vw;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .5))
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  color: #fff;
  letter-spacing: .02em;
  text-transform: capitalize;
  font-family: 'Marcellus', serif
}

.hero h1 .gold-text {
  display: inline
}

.hero .lede {
  color: rgba(255, 255, 255, .85);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 560px;
  margin: 22px 0 14px;
  font-weight: 300
}

.hero .place {
  color: var(--gold-bright);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 36px
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, .6);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-align: center
}

.scroll-cue span {
  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
  }
}

/* ---------- GLANCE STRIP ---------- */
.glance {
  background: var(--pine);
  position: relative;
  border-top: 1px solid var(--teal-line)
}

.glance .wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding-top: 0;
  padding-bottom: 0
}

.g-item {
  padding: 40px 18px;
  text-align: center;
  border-right: 1px solid var(--teal-line)
}

.g-item:last-child {
  border-right: none
}

.g-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  line-height: 1
}

.g-item .lab {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase
}

/* ---------- SECTION SHELL ---------- */
section {
  position: relative
}

.pad {
  padding: 110px 0
}

.bg-cream {
  background: var(--cream)
}

.bg-sage {
  background: var(--sage)
}

.bg-pine {
  background: var(--pine);
  color: #fff
}

.bg-pine .sec-title {
  color: #fff
}

.bg-pine .body-txt {
  color: rgba(255, 255, 255, .78)
}

.center-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px
}

.center-head .sec-title {
  margin-top: 14px
}

.center-head p {
  color: var(--ink-soft);
  font-size: 1.05rem
}

.bg-pine .center-head p {
  color: rgba(255, 255, 255, .72)
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: .9s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    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: -26px;
  bottom: -26px;
  background: var(--gold-grad);
  color: var(--pine-deep);
  padding: 24px 30px;
  text-align: center;
  border-radius: 3px;
  box-shadow: var(--shadow)
}

.about-img .badge b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  display: block;
  line-height: 1
}

.about-img .badge small {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .64rem
}

.body-txt {
  color: var(--ink-soft);
  margin: 14px 0;
  font-weight: 300;
  font-size: 1.06rem
}

.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 28px
}

.about-meta div small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .62rem;
  color: var(--gold-deep);
  margin-bottom: 4px
}

.about-meta div b {
  font-weight: 500;
  font-size: 1.02rem
}

/* ---------- AMENITIES ---------- */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.amen {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--teal-line);
  border-radius: 3px;
  padding: 34px 26px;
  transition: .45s;
  position: relative;
  overflow: hidden
}

.amen:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, .4)
}

.amen .ic {
  width: 46px;
  height: 46px;
  color: var(--gold-bright);
  margin-bottom: 18px
}

.amen h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6px
}

.amen p {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
  font-weight: 300
}

.amen-feature {
  margin-top: 60px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow)
}

.amen-feature img {
  width: 100%;
  height: 520px;
  object-fit: cover
}

.amen-feature .cap {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 34px 40px;
  background: linear-gradient(transparent, rgba(4, 36, 31, .92));
  width: 100%
}

.amen-feature .cap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #fff
}

.amen-feature .cap p {
  color: var(--gold-bright);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .72rem
}

/* ---------- SPECIFICATION ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start
}

.spec-mood {
  position: sticky;
  top: 110px
}

.spec-mood img {
  width: 100%;
  border-radius: 3px;
  box-shadow: var(--shadow)
}

.spec-mood .q {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 26px;
  line-height: 1.35
}

.spec-mood .q::before {
  content: "“";
  color: var(--gold);
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif
}

.acc {
  border-top: 1px solid var(--line)
}

.acc-item {
  border-bottom: 1px solid var(--line)
}

.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: 'Cormorant Garamond', serif;
  color: var(--gold-deep);
  font-size: 1.3rem;
  width: 34px;
  flex: none
}

.acc-head h4 {
  flex: 1;
  font-family: 'Marcellus', serif;
  font-size: 1.14rem;
  letter-spacing: .04em
}

.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 p {
  padding: 0 4px 24px 52px;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1rem
}

/* ---------- TABS (gallery + siteplan) ---------- */
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 46px
}

.tab {
  padding: 12px 28px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--ink-soft);
  border-radius: 2px;
  transition: .35s
}

.bg-pine .tab {
  border-color: var(--teal-line);
  color: rgba(255, 255, 255, .7)
}

.tab.active {
  background: var(--gold-grad);
  color: var(--pine-deep);
  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: 200px;
  gap: 16px
}

.gal a {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  display: block
}

.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.1s cubic-bezier(.2, .7, .2, 1)
}

.gal a:hover img {
  transform: scale(1.08)
}

.gal a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(4, 36, 31, .55));
  opacity: 0;
  transition: .4s
}

.gal a: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 .wide {
  grid-column: span 3
}

.gal .sm {
  grid-column: span 3
}

.gal .x2 {
  grid-column: span 2
}

.video-shell {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--pine-deep)
}

.video-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6
}

.video-shell .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  cursor: pointer
}

.play .circle {
  width: 88px;
  height: 88px;
  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, .5);
  transition: .4s
}

.video-shell:hover .circle {
  transform: scale(1.08)
}

.play .circle svg {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  color: var(--pine-deep)
}

.play .lab {
  color: #fff;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .74rem
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0
}

/* siteplan */
.plan-stage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center
}

.plan-stage img {
  margin: 0 auto;
  max-height: 560px;
  width: auto
}

.plan-cap {
  text-align: center;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: .86rem;
  letter-spacing: .04em
}

.unit-table {
  /* margin-top: 34px; */
  border-collapse: collapse;
  width: 100%;
  font-size: .9rem
}

.unit-table th,
.unit-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: center
}

.unit-table thead th {
  background: var(--pine);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .7rem;
  border: none
}

.unit-table tbody tr:hover {
  background: var(--sage)
}

.unit-table td:first-child,
.unit-table th:first-child {
  text-align: left
}

.unit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px
}

/* ---------- LOCATION ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start
}

.loc-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative
}

.loc-map iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  filter: grayscale(.25) contrast(1.05)
}

.loc-pin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pine);
  color: #fff;
  padding: 12px 20px;
  border-radius: 3px;
  margin-bottom: 22px;
  font-size: .86rem
}

.loc-pin svg {
  width: 18px;
  color: var(--gold-bright)
}

.conn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.conn-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 20px
}

.conn-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Marcellus', serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--pine)
}

.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: .84rem;
  color: var(--ink-soft);
  padding: 4px 0;
  border-bottom: 1px dashed var(--line)
}

.conn-card li:last-child {
  border-bottom: none
}

.conn-card li b {
  color: var(--gold-deep);
  font-weight: 600;
  font-family: 'Jost', sans-serif
}

/* ---------- ENQUIRY ---------- */
.enq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center
}

.enq-left .sec-title {
  color: #fff
}

.enq-left p {
  color: rgba(255, 255, 255, .74);
  font-weight: 300;
  margin: 14px 0 28px
}

.enq-points {
  list-style: none;
  margin-top: 24px
}

.enq-points li {
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 14px;
  font-size: .96rem
}

.enq-points svg {
  width: 20px;
  color: var(--gold-bright);
  flex: none
}

.form {
  background: var(--cream);
  border-radius: 4px;
  padding: 42px;
  box-shadow: var(--shadow)
}

.form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--pine);
  margin-bottom: 6px
}

.form .sub {
  color: var(--ink-soft);
  font-size: .9rem;
  margin-bottom: 26px
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-size: .66rem;
  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 var(--line);
  background: #fff;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  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(212, 175, 55, .14)
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form .btn-gold {
  width: 100%;
  justify-content: center;
  margin-top: 8px
}

.form-note {
  text-align: center;
  font-size: .74rem;
  color: var(--ink-soft);
  margin-top: 14px
}

.toast {
  display: none;
  background: var(--pine);
  color: #fff;
  padding: 14px;
  border-radius: 3px;
  text-align: center;
  margin-bottom: 18px;
  font-size: .9rem
}

.toast.show {
  display: block;
  animation: fade .5s
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--pine-deep);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 30px;
  border-top: 1px solid var(--teal-line)
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px
}

.foot-brand .mark {
  font-family: 'Marcellus', serif;
  font-size: 1.9rem;
  letter-spacing: .16em;
  color: var(--gold-bright)
}

.foot-brand p {
  margin-top: 16px;
  font-weight: 300;
  max-width: 340px;
  font-size: .95rem
}

.foot-col h5 {
  font-family: 'Marcellus', serif;
  color: #fff;
  font-size: 1rem;
  letter-spacing: .06em;
  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: .6rem;
  display: block;
  margin-bottom: 4px
}

.foot-bottom {
  border-top: 1px solid var(--teal-line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .74rem;
  color: rgba(255, 255, 255, .45)
}

.disclaimer {
  font-size: .7rem;
  color: rgba(255, 255, 255, .35);
  margin-top: 18px;
  line-height: 1.6;
  max-width: 980px
}

.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: var(--gold-bright);
}
.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;
}

.table-responsive{
    border:1px solid #ddd; 
    margin-top: 34px; 
    box-shadow: var(--shadow); 
    background: #fff;
  }

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
  .nav-links {
    display: none
  }

  .burger {
    display: flex
  }

  .about-grid,
  .spec-grid,
  .loc-grid,
  .enq-grid,
  .unit-grid {
    grid-template-columns: 1fr;
    gap: 42px
  }

  .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 .wide,
  .gal .sm,
  .gal .x2 {
    grid-column: span 2;
    grid-row: span 1
  }

  .conn {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .nav-mobile.open {
    display: flex
  }
}

@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(--teal-line);
    padding: 28px 10px
  }

  .f-row {
    grid-template-columns: 1fr
  }

  .about-meta {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .about-img .badge {
    right: 0;
    bottom: -20px
  }

  .hero h1 {
    font-size: 2.4rem
  }
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
  .form {
    padding: 42px 15px;
  }
/* form */

   .popform .popup {
        width: 85%;
    }
  .popform .form .form h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .popform .form  .field label {
    margin-bottom: 2px;
  }
  .popform .form  .field input, 
  .popform .form  .field select, 
  .popform .form  .field textarea {
    width: 100%;
    padding: 4px 10px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--ink);
  }
  .popform .form  .f-row {
    gap: 5px;
  }
  .popform .form  .field {
    margin-bottom: 10px;
  }
  .popform .form  .form .btn-gold {
    margin-top: 5px;
  }
  .popform .form  .btn {
    padding: 10px 18px;
  }
  .popform .form {
      padding: 10px 10px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-logo {
    max-width: 45vw;
  }
  .table-responsive{
    width: auto;
    height: 360px; 
    overflow:auto;
    border:1px solid #ddd; 
    margin-top: 34px; 
    box-shadow: var(--shadow); 
    background: #fff;
  }

}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(4, 36, 31, .98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px
}

.nav-mobile a {
  color: #fff;
  font-family: 'Marcellus', serif;
  font-size: 1.4rem;
  letter-spacing: .1em
}

.nav-mobile .close {
  position: absolute;
  top: 26px;
  right: 28px;
  color: var(--gold-bright);
  font-size: 2rem;
  cursor: pointer
}