:root {
  --ink: #161109;
  --panel: #20180f;
  --gold: #c1985c;
  --gold-bright: #e7c789;
  --gold-dim: #93713a;
  --cream: #f3f0e8;
  --white: #ffffff;
  --text-dark: #1e180f;
  --muted-dark: #171616;
  --muted-light: #d9cca8;
  --line-dark: rgba(193, 152, 92, 0.35);
  --line-light: rgba(30, 24, 15, 0.12);
  --maxw: 1400px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--text-dark);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin: 0;
  color: inherit;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-family: "Jost", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-dim);
}
.on-dark .eyebrow {
  color: var(--gold-bright);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: "Jost", sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--text-dark);
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  background: transparent;
}
.btn-solid {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-solid:hover {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.btn-line {
  color: var(--text-dark);
  border-color: rgba(36, 29, 18, 0.4);
}
.btn-line:hover {
  border-color: var(--text-dark);
}
.btn-line-on-dark {
  color: var(--cream);
  border-color: rgba(250, 245, 234, 0.4);
}
.btn-line-on-dark:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* ---------- NAV ---------- */
header {
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    padding 0.4s ease;
  padding: 5px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.links {
  display: flex;
  align-items: center;
  gap: 34px;
}
nav.links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
nav.links a:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cta .btn {
  padding: 10px 22px;
  font-size: 12px;
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.nav-cta .btn:hover {
  background: var(--gold-bright);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  display: block;
}
.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 600;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 26px;
}
.mobile-panel.open {
  display: flex;
}
.mobile-panel a {
  font-family: "Cormorant Garamond";
  font-size: 28px;
  color: var(--cream);
}
.mobile-close {
  position: absolute;
  top: 26px;
  right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
}

/* ---------- HERO : full-bleed carousel + floating card ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(10, 8, 5, 0.55) 0%,
    rgba(10, 8, 5, 0) 100%
  );
}
.hero-card {
  position: absolute;
  z-index: 5;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  max-width: 88vw;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(10, 8, 5, 0.35);
}
.hero-card-badge {
  background: var(--ink);
  color: var(--gold-bright);
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 0;
}
.hero-card-top {
  padding: 26px 30px 20px;
  text-align: center;
}
.hero-card-top h1 {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.hero-card-top .by {
  font-size: 13.5px;
  color: var(--muted-dark);
  margin-top: 8px;
  font-weight: 400;
}
.hero-card-top .at {
  font-size: 12.5px;
  color: var(--gold-dim);
  margin-top: 2px;
  font-weight: 500;
}
.hero-highlights {
  background: var(--ink);
}
.hero-highlights div {
  padding: 13px 26px;
  font-size: 13.5px;
  color: var(--cream);
  font-weight: 500;
  border-top: 1px dashed rgba(250, 245, 234, 0.22);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-highlights div:first-child {
  border-top: none;
}
.hero-highlights .dot {
  color: var(--gold);
  font-size: 13px;
}
.hero-card-bottom {
  padding: 22px 28px 26px;
  text-align: center;
}
.hero-card-bottom .configs {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}
.hero-card-bottom .configs b {
  font-family: "Cormorant Garamond";
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-dim);
}
.hero-card-bottom .note {
  font-size: 12px;
  color: var(--muted-dark);
  margin-top: 4px;
}
.hero-card-cta {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding: 15px 0;
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero-card-cta:hover {
  background: var(--gold-bright);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 245, 234, 0.16);
  border: 1px solid rgba(250, 245, 234, 0.4);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: background 0.3s ease;
}
.hero-arrow:hover {
  background: rgba(250, 245, 234, 0.3);
}
.hero-arrow.prev {
  left: 22px;
}
.hero-arrow.next {
  right: 22px;
}
.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250, 245, 234, 0.4);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.hero-dots span.active {
  background: var(--gold-bright);
  transform: scale(1.25);
}

/* ---------- SECTION GENERAL ---------- */
section {
  position: relative;
}
.pad {
  padding: 104px 0;
}
.pad-sm {
  padding: 64px 0;
}
.cream-1 {
  background: var(--white);
}
.cream-2 {
  background: var(--cream);
}
.on-dark {
  background: var(--ink);
  color: var(--cream);
}
.on-dark p,
.on-dark .muted {
  color: var(--muted-light);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.15;
  margin-top: 12px;
  font-style: italic;
  color: var(--text-dark);
}
.on-dark .section-head h2 {
  color: var(--cream);
}
.section-head p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted-dark);
  font-weight: 400;
}
.on-dark .section-head p {
  color: var(--muted-light);
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 1. ABOUT / STATS ---------- */
.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.about-top .lede {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--muted-dark);
  font-weight: 400;
}
.about-top .lede b {
  color: var(--text-dark);
  font-weight: 500;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.stat-item {
  background: var(--white);
  padding: 34px 22px;
  text-align: left;
}
.stat-item.hl {
  background: var(--ink);
}
.stat-item .num {
  font-family: "Cormorant Garamond";
  font-size: 50px;
  color: var(--text-dark);
  line-height: 1;
  font-weight: 600;
}
.stat-item.hl .num {
  color: var(--gold-bright);
}
.stat-item .lbl {
  font-size: 12.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 10px;
  font-weight: 600;
}
.stat-item.hl .lbl {
  color: var(--muted-light);
}
.stat-item .desc {
  font-size: 13.5px;
  color: var(--muted-dark);
  margin-top: 8px;
  line-height: 1.55;
  font-weight: 400;
}
.stat-item.hl .desc {
  color: var(--muted-light);
  opacity: 0.8;
}

/* ---------- 2. CONFIGURATIONS ---------- */
.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.config-card {
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.config-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 500;
}
.config-card h3 {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-size: 36px;
  margin: 10px 0 4px;
  color: var(--text-dark);
}
.config-wings {
  font-size: 13.5px;
  color: var(--muted-dark);
  margin-bottom: 18px;
}
.config-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line-light);
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
  background: #e4d9bf;
}
.config-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.config-thumb:hover img {
  transform: scale(1.05);
}
.config-thumb .view-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(23, 18, 9, 0.82);
  color: var(--gold-bright);
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 0;
}
.config-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.config-list li {
  font-size: 14.5px;
  color: var(--muted-dark);
  padding: 9px 0;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
}
.config-list li:first-child {
  border-top: none;
}
.config-list li span:last-child {
  color: var(--text-dark);
  font-weight: 500;
}
.config-note {
  font-size: 13.5px;
  color: var(--muted-dark);
  line-height: 1.55;
  margin-top: auto;
}

/* ---------- 3. AMENITIES — 3 column grid ---------- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
}
.amenity-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.amenity-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.amenity-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.amenity-body h3 {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-size: 29px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.amenity-body .desc {
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.65;
  margin-bottom: 18px;
}
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 1;
}
.amenity-list li {
  font-size: 15px;
  color: var(--muted-dark);
  padding: 7px 0 7px 16px;
  border-top: 1px solid var(--line-light);
  position: relative;
}
.amenity-list li:first-child {
  border-top: none;
}
.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ---------- 4. LOCATION ---------- */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.connect-img {
  border: 1px solid var(--line-light);
  overflow: hidden;
  background: var(--ink);
}
.connect-roads {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
  background: var(--cream);
}
.connect-roads p {
  font-size: 14.5px;
  color: var(--muted-dark);
  line-height: 1.65;
}
.connect-roads b {
  color: var(--text-dark);
  font-weight: 500;
}
.landmark-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}
.landmark-cat h4 {
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "Jost";
}
.landmark-cat ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.landmark-cat li {
  font-size: 14.5px;
  color: var(--muted-dark);
  padding: 6px 0;
}

/* ---------- 5. CONTACT ---------- */
.enquiry {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
}
.enquiry-img {
  position: relative;
  min-height: 600px;
}
.enquiry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.enquiry-form {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enquiry-form .eyebrow {
  color: var(--gold-bright);
}
.enquiry-form h2 {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-size: 38px;
  margin: 12px 0 8px;
  color: var(--cream);
}
.enquiry-form p.sub {
  color: var(--muted-light);
  font-size: 15px;
  margin-bottom: 28px;
  font-weight: 400;
}
.field {
  margin-bottom: 20px;
}
.field label {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
  display: block;
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 245, 234, 0.3);
  color: var(--cream);
  font-family: "Jost";
  font-size: 16px;
  padding: 9px 2px;
  outline: none;
  transition: border-color 0.3s ease;
}
.field input:focus {
  border-color: var(--gold);
}
.field input::placeholder {
  color: rgba(250, 245, 234, 0.35);
}
.config-choice {
  display: flex;
  gap: 10px;
}
.config-choice button {
  flex: 1;
  padding: 11px 0;
  background: transparent;
  border: 1px solid rgba(250, 245, 234, 0.3);
  color: var(--muted-light);
  font-family: "Jost";
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.config-choice button.active,
.config-choice button:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.form-submit {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.form-submit:hover {
  background: var(--gold-bright);
}
.form-msg {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold-bright);
  display: none;
}
.form-msg.show {
  display: block;
}

/* ---------- TRUST STRIP (compact, above footer) ---------- */
.footer-logo {
  width: 250px;
}
.trust-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 46px 0;
}
.trust-strip .wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-strip-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-strip-left img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
}
.trust-strip-left .cap {
  max-width: 340px;
}
.trust-strip-left .cap .eyebrow {
  color: var(--gold-bright);
}
.trust-strip-left .cap p {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.65;
  margin-top: 6px;
  font-weight: 400;
}
.trust-strip-stats {
  display: flex;
  gap: 40px;
}
.trust-strip-stats div {
  text-align: left;
}
.trust-strip-stats .num {
  font-family: "Cormorant Garamond";
  font-size: 34px;
  color: var(--gold-bright);
}
.trust-strip-stats .lbl {
  font-size: 12px;
  color: var(--muted-light);
  max-width: 110px;
  line-height: 1.45;
  margin-top: 2px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #120e08;
  padding: 60px 0 0;
  border-top: 1px solid var(--line-dark);
  color: var(--cream);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-word .t2 {
  font-size: 22px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 320px;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col p,
.footer-col a {
  display: block;
  font-size: 14.5px;
  color: var(--muted-light);
  line-height: 1.95;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted-light);
}
.disclaimer {
  padding: 24px 0 36px;
  font-size: 11px;
  color: var(--muted-light);
  opacity: 0.7;
  line-height: 1.7;
  border-top: 1px solid var(--line-dark);
}

/* ---------- FAB ---------- */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  color: #fff;
}
.fab .wa {
  background: #25d366;
}
.fab .call {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 4, 0.94);
  z-index: 800;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid var(--line-dark);
}
.lightbox-close {
  position: absolute;
  top: 26px;
  right: 30px;
  color: var(--cream);
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  nav.links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-card {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .about-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .config-grid {
    grid-template-columns: 1fr;
  }
  .amenity-grid {
    grid-template-columns: 1fr;
  }
  .connect-grid {
    grid-template-columns: 1fr;
  }
  .landmark-cats {
    grid-template-columns: 1fr 1fr;
  }
  .enquiry {
    grid-template-columns: 1fr;
  }
  .enquiry-img {
    min-height: 260px;
  }
  .enquiry-form {
    padding: 48px 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .trust-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
}
@media (max-width: 600px) {
  .wrap {
    padding: 0 20px;
  }
  .pad {
    padding: 70px 0;
  }
  .config-choice {
    flex-wrap: wrap;
  }
  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }
}
