/* =========================================================
   Aurelia Heights — Core Stylesheet
   1. Tokens  2. Base  3. Components  4. Sections  5. Utilities
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  --bg: #f7f5f1;
  --primary: #274c77;
  --primary-deep: #16304d;
  --secondary: #d2a857;
  --accent: #8b6b3e;
  --ink: #1a1a1a;
  --white: #ffffff;
  --muted: #efeae2;
  --border: rgba(0, 0, 0, .08);
  --ink-soft: rgba(26, 26, 26, .66);

  --grad-primary: linear-gradient(135deg, var(--primary) 0%, #35608f 55%, var(--primary-deep) 100%);
  --grad-gold: linear-gradient(120deg, #b98f42 0%, var(--secondary) 45%, #f0d69a 100%);
  --grad-veil: linear-gradient(100deg, rgba(12, 26, 40, .92) 0%, rgba(16, 38, 60, .74) 45%, rgba(16, 38, 60, .18) 100%);
  --grad-muted: linear-gradient(180deg, var(--bg) 0%, var(--muted) 100%);

  --shadow-sm: 0 2px 10px rgba(16, 38, 60, .06);
  --shadow-md: 0 18px 40px -20px rgba(16, 38, 60, .35);
  --shadow-lg: 0 40px 90px -40px rgba(16, 38, 60, .55);
  --shadow-gold: 0 18px 44px -18px rgba(210, 168, 87, .55);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --head: "DM Serif Display", Georgia, serif;
  --body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --section-y: 80px;
}

/* ---------- 2. BASE ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--head);
  font-weight: 500;
  letter-spacing: .2px;
  margin: 0;
}
h2{
  font-size: 1.8rem;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--secondary);
  color: var(--ink);
}

.section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.section-head {
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -.5px;
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-title.light {
  color: var(--white);
}

.section-title.light em {
  color: var(--secondary);
}

.eyebrow {
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow .rule {
  width: 46px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lede {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

.lede.center {
  margin-inline: auto;
}

.fineprint {
  font-size: .78rem;
  color: var(--ink-soft);
  margin-top: 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- 3. COMPONENTS ---------- */

/* Buttons */
.btn-lux {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .35s ease, color .35s ease;
}

.btn-lux::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .45) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}

.btn-lux:hover::after {
  transform: translateX(120%);
}

.btn-lux:hover {
  transform: translateY(-3px);
}

.btn-lux:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

.btn-lux:disabled {
  opacity: .65;
  cursor: wait;
}

.btn-lux-solid {
  background: fff;
  color: #082a22;
  border: 1px solid #fff;
  box-shadow: var(--shadow-md);
}
.nav-wrap.scrolled .btn-lux-solid{
   background: #082a22;
   border: none;
   color: #fff;
}

.btn-lux-solid:hover {
  box-shadow: 0 26px 50px -22px rgba(39, 76, 119, .8);
}

.btn-lux-gold {
  background: var(--grad-gold);
  color: #2a1e08;
  box-shadow: var(--shadow-gold);
}

.btn-lux-line {
  background: transparent;
  color: var(--primary);
  border-color: rgba(39, 76, 119, .35);
}

.btn-lux-line:hover {
  background: rgba(39, 76, 119, .07);
}

.btn-lux-ghost {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
  backdrop-filter: blur(10px);
}

.btn-lux-ghost:hover {
  background: rgba(255, 255, 255, .2);
}

.badge-lux {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(210, 168, 87, .16);
  border: 1px solid rgba(210, 168, 87, .5);
  color: #f2dcae;
}

.glass {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .22);
}

/* Reveal / float animations */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.float-soft {
  animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .float-soft {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}


.offer-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--grad-gold);
  color: #2a1e08;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-gold);
}

/* ---------- NAVIGATION ---------- */
.nav-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 18px 0;
  transition: padding .4s var(--ease);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .14);
  transition: background .45s ease, box-shadow .45s ease, border-color .45s ease;
}
.brand img{
  width: 130px;
}

.nav-wrap.scrolled {
  padding: 10px 0;
}

.nav-wrap.scrolled img{
   filter: brightness(0);
}

.nav-wrap.scrolled .nav-shell {
  background: rgba(247, 245, 241, .82);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-gold);
  color: #2a1e08;
  font-family: var(--head);
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-mark.light {
  margin-bottom: 18px;
}

.brand-text {
  font-family: var(--head);
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.brand-text small {
  font-family: var(--body);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 4px;
}

.nav-wrap.scrolled .brand {
  color: var(--primary-deep);
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  padding: 6px 0;
}

.nav-wrap.scrolled .nav-links a {
  color: var(--ink);
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--secondary);
  transition: width .4s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  transition: all .35s ease;
}

.nav-wrap.scrolled .nav-phone {
  border-color: var(--border);
  color: var(--primary);
}

.nav-phone:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #2a1e08;
}

.burger {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.burger span {
  width: 22px;
  height: 1.6px;
  background: var(--white);
  transition: transform .35s var(--ease), opacity .3s ease;
}

.nav-wrap.scrolled .burger span {
  background: var(--ink);
}

.burger.active span:nth-child(1) {
  transform: translateY(6.6px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-6.6px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  --hero-champagne: #e8cd97;
  --hero-champagne-dim: rgba(232, 205, 151, .5);
  --hero-ivory: #f4f0e7;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 0% 0%, rgba(232, 205, 151, .10), transparent 60%),
    radial-gradient(90% 70% at 100% 100%, rgba(46, 150, 124, .18), transparent 60%),
    linear-gradient(155deg, #04140f 0%, #082a22 48%, #04140f 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 7.6% 100%;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.glow-a {
  width: 520px;
  height: 520px;
  left: 8%;
  top: -220px;
  background: radial-gradient(circle, rgba(232, 205, 151, .22), transparent 68%);
}

.glow-b {
  width: 640px;
  height: 640px;
  right: -220px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(46, 150, 124, .28), transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 43fr 57fr;
  grid-template-areas: "content visual";
  min-height: 100vh;
}

/* Left column */
.hero-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(28px, 3vw, 64px) 56px clamp(20px, 3vw, 80px);
  color: var(--hero-ivory);
}

.hero-kicker {
  font-family: var(--body);
  font-size: .82rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--hero-champagne);
  margin: 0 0 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 3px;
  background: rgba(232, 205, 151, .08);
  border: 1px solid rgba(232, 205, 151, .4);
  color: var(--hero-champagne);
  margin-bottom: 26px;
}

.hero-heading {
  font-family: var(--head);
  font-size: clamp(3rem, 3.2vw, 4rem);
  line-height: .9;
  font-weight: 500;
  color: var(--hero-ivory);
  margin: 0 0 22px;
  display: flex;
  flex-direction: row;
  gap: 13px;
  letter-spacing: -1px;
}

.hero-heading em {
  font-style: normal;
  font-weight: 300;
  color: var(--hero-champagne);
  margin-top: 2px;
}

.hero-config {
  display: flex;
  flex-wrap: wrap;
  font-size: .84rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgb(244 240 231 / 98%);
  margin: 0 0 30px;
}

.hero-config span {
  position: relative;
  padding: 0 14px;
}

.hero-config span:first-child {
  padding-left: 0;
}

.hero-config span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(232, 205, 151, .4);
}

.hero-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  border-left: 2px solid var(--hero-champagne);
  margin-bottom: 34px;
}

.hero-price-label {
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, .5);
}

.hero-price-value {
  font-family: var(--head);
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  color: var(--hero-champagne);
  line-height: 1;
}

.hero-price-value sup {
  font-size: .75rem;
}

.hero-usp {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 26px;
  font-size: .78rem;
  color: rgba(244, 240, 231, .78);
}

.hero-usp li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.hero-usp i {
  color: var(--hero-champagne);
  font-size: .95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.btn-lux-text {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, .8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, color .3s ease;
}

.btn-lux-text:hover {
  color: var(--hero-champagne);
  border-color: var(--hero-champagne);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, .42);
  margin: 0;
}

.hero-trust span:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: rgba(232, 205, 151, .4);
}

/* Right visual */
.hero-visual {
  grid-area: visual;
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  animation: heroZoom 20s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-visual-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #04140f 0%, rgba(4, 20, 15, .55) 14%, rgba(4, 20, 15, 0) 32%),
    linear-gradient(0deg, rgba(4, 20, 15, .5) 0%, transparent 30%);
}

.hero-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 3px;
  background: rgba(4, 20, 15, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 205, 151, .4);
  color: var(--hero-champagne);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tag-top {
  top: 34px;
  right: 34px;
}

.tag-bottom {
  left: 34px;
  bottom: 34px;
}

/* Floating enquiry card */
.hero-enquiry {
  position: absolute;
  right: 3%;
  bottom: 8%;
  width: 330px;
  z-index: 6;
  padding: 26px 24px 22px;
  border-radius: 4px;
  background: rgba(4, 20, 15, .78);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(232, 205, 151, .3);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .85);
}

.hero-enquiry .form-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.hero-enquiry .field {
  margin-bottom: 10px;
}

.hero-enquiry input:focus {
  border-color: var(--hero-champagne);
}

/* ---------- ABOUT ---------- */
.status-badge{
  display: none !important;
}

/* ---------- FLOATING ACTIONS ---------- */
.floaters {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.fab:hover {
  transform: translateY(-4px) scale(1.06);
}

.fab.call {
  background: var(--grad-primary);
}

.fab.wa {
  background: linear-gradient(135deg, #1faf54, #25d366);
}

.fab.enq {
  background: var(--grad-gold);
  color: #2a1e08;
  animation: pulseRing 2.6s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(210, 168, 87, .55);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(210, 168, 87, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(210, 168, 87, 0);
  }
}

/* ---------- STICKY MOBILE BAR ---------- */
.mobile-bar {
  display: none;
}

/* ---------- MODAL ---------- */
.lux-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lux-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 32, .72);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .3s ease;
}

.lux-modal.show .lux-modal-backdrop {
  opacity: 1;
}

.lux-modal-card {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--r-lg);
  background: radial-gradient(120% 70% at 0% 0%, rgba(232, 205, 151, .10), transparent 60%),
    radial-gradient(90% 70% at 100% 100%, rgba(46, 150, 124, .18), transparent 60%),
    linear-gradient(155deg, #04140f 0%, #082a22 48%, #04140f 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(28px) scale(.96);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}

.lux-modal.show .lux-modal-card {
  transform: none;
  opacity: 1;
}

.modal-media {
  position: relative;
}

.modal-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.modal-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.modal-badge i {
  color: var(--secondary);
  margin-right: 6px;
}

.modal-body {
  padding: 38px 34px;
}

.modal-body .eyebrow {
  color: var(--secondary);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(0, 0, 0, .3);
  color: var(--white);
  cursor: pointer;
  transition: all .3s ease;
}

.modal-close:hover {
  background: var(--secondary);
  color: #2a1e08;
  border-color: var(--secondary);
}








            .platter-project {
                background: #e9e6d9;
            }

            .platter-b h3 {
                font-size: 1.8rem;
                font-weight: 500;
            }

            .platter-card {
                background: #fff;
                border: 1px solid #e5e5e5;
                border-radius: 6px;
                overflow: hidden;
                transition: 0.3s;
                box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            }

            .platter-card:hover {
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            }

            .platter-img {
                position: relative;
            }

            .platter-img img {
                height: 250px;
                object-fit: cover;
            }

            #projectModal img {
                width: 100%;
                height: 360px !important;
                object-fit: cover !important;
            }

            .project-location {
                color: #666;
                margin: 8px 0px;
            }

            .status-badge {
                position: absolute;
                top: 15px;
                right: 15px;
                background: #082a22;
                color: #fff;
                font-size: 12px;
                padding: 6px 12px;
                font-weight: 600;
                overflow: hidden;
                /* important for shine */
            }

            /* Shine layer */
            .status-badge::after {
                content: "";
                position: absolute;
                top: 0;
                left: -75%;
                width: 50%;
                height: 100%;
                background: linear-gradient(120deg,
                        rgba(255, 255, 255, 0) 0%,
                        rgba(255, 255, 255, 0.6) 50%,
                        rgba(255, 255, 255, 0) 100%);
                transform: skewX(-25deg);
                animation: shine 1.5s infinite;
            }

            @keyframes shine {
                0% {
                    left: -75%;
                }

                100% {
                    left: 125%;
                }
            }


            .platter-body {
                padding: 15px 12px;
            }

            .project-title {
                font-size: 20px;
                color: #082a22;
                font-weight: 500;
            }


            .project-price {
                font-size: 20px;
                color: #082a22;
                font-weight: 600;
            }

            .project-card-highlight p {
                padding: 6px 8px;
                border: 1px solid #000;
                margin-bottom: 6px;
                background: #082a22;
    color: #fff;
            }

            /* INFO GRID */

            .btn-gold-outline {
                border: 1px solid #082a22;
                color: #182b17;
                padding: 10px 1px;
                font-weight: 500;
                background: transparent;
                flex: 1;
            }

            .btn-gold-outline:hover {
                background: #162416;
                color: #fff;
            }





            /* ACTIONS */
            .platter-actions {
                display: flex;
                gap: 10px;
                margin-top: 20px;
            }



            /* CALL BUTTON */
            .btn-call {
                background: #082a22;
                color: #fff;
                width: 55px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .btn-call:hover {
                background: #6e5224;
            }

            .wrap {
                width: min(1320px, 92vw);
                margin-inline: auto;
            }

            @media (max-width: 991px) {
                #projectModal img {
                    width: 100%;
                    height: 230px !important;
                    object-fit: cover !important;
                }
            }

            /* RESPONSIVE */
            @media (max-width: 768px) {
                .platter-img img {
                    height: 220px;
                }

            }
     




    .location {
  /* background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%); */
  background: #fff;
}

.loc-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: stretch;
}

.loc-map {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}
.loc-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-pin {
  position: absolute;
  top: 40%;
  left: 38%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--sh-md);
  animation: floatCard 5s ease-in-out infinite;
}

.map-pin i {
  color: #c0533f;
}

.map-cta {
  position: absolute;
  left: 26px;
  bottom: 26px;
}

/* Right-hand "Key Distances" card, styled to sit alongside the map */
.loc-copy {
  padding: 34px 32px;
  border-radius: var(--r-xl);
  background: var(--white);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.loc-copy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--ink);
}

.timeline {
  position: relative;
  margin: 18px 0 0;
  padding-left: 24px;
  flex: 1;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--secondary), rgba(39, 76, 119, .15));
}

.timeline li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.timeline li:last-child {
  border-bottom: 0;
}

.t-dot {
  position: absolute;
  left: -24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--secondary);
  transition: transform .4s var(--ease);
}

.timeline li:hover .t-dot {
  transform: scale(1.4);
}

.timeline h4 {
  font-size: .96rem;
  margin: 0;
  font-weight: 500;
}

.timeline p {
  margin: 0;
  font-size: .8rem;
  color: var(--ink-soft);
}

.t-badge {
  margin-left: auto;
  padding: 6px 14px;
  border-radius: 999px;
  flex: none;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--primary);
  white-space: nowrap;
}

.loc-visit-btn {
  margin-top: 24px;
}

.section-pad {
    padding: 56px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-muted) 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}

@media (min-width: 1600px) {
  .gallery-grid {
    grid-auto-rows: 190px;
  }
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 41, 43, 0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-cap {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: var(--marble);
  font-size: clamp(13.5px, 0.15vw + 12.5px, 15px);
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  z-index: 1;
}

.gallery-item:hover .gallery-cap {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}



.bbb{
  background: #082a22;
  color: #fff;
}







.footer {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 70% at 0% 0%, rgba(232, 205, 151, .10), transparent 60%),
    radial-gradient(90% 70% at 100% 100%, rgba(46, 150, 124, .18), transparent 60%),
    linear-gradient(155deg, #04140f 0%, #082a22 48%, #04140f 100%);
  color: #f7f4ee;
  ;
  padding-top: clamp(64px, 8vw, 108px);
}

.f-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(201, 162, 77, .16), transparent 72%);
  filter: blur(10px);
}

.f-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(26px, 4vw, 46px);
}

.f-logo {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.f-logo b {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .06em;
  color: #f7f4ee;
  ;
}

.f-logo span {
  font-size: 9.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: .85;
}

.f-brand p {
  margin: 20px 0 0;
  font-size: 14.5px;
  text-align: justify;
  line-height: 1.85;
  color: #d2caca;
  /* max-width: 480px; */
}

.f-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.f-call-ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(201, 162, 77, .14);
  border: 1px solid rgba(201, 162, 77, 0.35);
  color: #e8cf95;
}

.f-call-txt small {
  display: block;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #c9a24d;
}

.f-call-txt a {
  font-size: 19px;
  font-weight: 500;
  color: #f7f4ee;
}

.f-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.f-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  color: rgba(247, 244, 238, .75);
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}

.f-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 162, 77, .1);
}

.f-links h4,
.f-contact h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 6px 0 20px;
  font-weight: 500;
}

.f-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.f-links a {
  font-size: 14px;
  color: rgba(247, 244, 238, .68);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .3s var(--ease), gap .3s var(--ease);
}

.f-links a::before {
  content: "—";
  color: var(--gold);
  font-size: 12px;
  opacity: .7;
  transition: opacity .3s var(--ease);
}

.f-links a:hover {
  color: var(--gold-light);
  gap: 12px;
}

.f-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.f-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(247, 244, 238, .68);
  line-height: 1.5;
}

.f-contact li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
  opacity: .9;
}

.f-form {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: clamp(26px, 3vw, 34px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, .6);
}

.f-form h3 {
  font-size: clamp(22px, 2vw, 27px);
  margin: 0 0 6px;
}

.f-form-sub {
  font-size: 13px;
  color: rgba(247, 244, 238, .55);
  margin: 0 0 20px;
}




.f-rule {
  height: 1px;
  border: 0;
  background: var(--line-light);
  margin: 0;
  position: relative;
  z-index: 1;
}

.f-legal {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  text-align: center;
}

.f-rera {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold-light);
  padding: 7px 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  background: rgba(201, 162, 77, .08);
}

.f-disc {
  max-width: 80%;
  margin: 18px auto 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(247, 244, 238, .45);
}

.f-disc b {
  color: rgba(247, 244, 238, .68);
}

.f-bottom {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  border-top: 1px solid var(--line-light);
  padding: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
  font-size: 12px;
  color: rgba(247, 244, 238, .5);
}

.f-bottom a {
  font-weight: 500;
  color: rgba(247, 244, 238, .78);
}

.f-bottom a:hover {
  color: var(--gold-light);
}

.f-dot {
  color: rgba(247, 244, 238, .3);
}

.f-credit {
  color: #fff;
}

@media (max-width: 720px) {
  .f-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .f-dot {
    display: none;
  }
}

.pg-form-inner{
  background: transparent !important;
}
.modal-body, .hero-enquiry{
  color: #fff !important;
}
