:root {
  --ink: #17231d;
  --deep: #0d2018;
  --forest: #315b49;
  --sage: #6f9178;
  --mist: #dfe8db;
  --cream: #f5efe3;
  --paper: #fbf8f0;
  --stone: #ddd2bf;
  --gold: #c7a24a;
  --gold-deep: #8f6f25;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 32, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.has-popup {
  overflow: hidden;
}

body.has-mobile-menu {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(199, 162, 74, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 91, 73, 0.045) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.55;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100vw - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100vw - 48px));
  padding: 12px 10px;
  color: var(--white);
  border: 1px solid #ffffff38;
  border-radius: 8px;
  background: rgba(13, 32, 24, 0.32);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-120%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(49, 91, 73, 0.14);
  background: rgba(251, 248, 240, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  width: 270px;
}

.brand-mark,
.brand-wordmark {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-mark {
  height: 54px;
  flex: none;
}

.brand-wordmark {
  height: 26px;
  min-width: 0;
  transition: filter 220ms ease;
}

.site-header:not(.is-scrolled) .brand-wordmark {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.83rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.84;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.header-partners {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(233, 223, 201, 0.38);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.site-header.is-scrolled .header-partners {
  background: rgba(255, 255, 255, 0.98);
}

.partner-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.partner-logo-faith {
  height: 40px;
}

.partner-logo-mehta {
  height: 34px;
}

.partner-divider {
  width: 1px;
  height: 32px;
  background: rgba(49, 91, 73, 0.18);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  overflow: hidden;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta {
  color: var(--deep);
  background: var(--gold);
}

.button::after,
.nav-cta::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.button:hover::after,
.nav-cta:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 138px;
  background: linear-gradient(180deg, rgba(13, 32, 24, 0.58) 0%, rgba(13, 32, 24, 0) 100%);
  pointer-events: none;
}

.hero-media,
.hero-media img,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.95) contrast(1.03);
}

.hero-veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 32, 24, 0.64) 0%, rgba(13, 32, 24, 0.28) 55%, rgba(13, 32, 24, 0.46) 100%),
    linear-gradient(180deg, rgba(13, 32, 24, 0.08) 0%, rgba(13, 32, 24, 0.48) 100%),
    linear-gradient(120deg, rgba(199, 162, 74, 0.08), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 90vh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 168px 0 64px;
}

.kicker,
.section-kicker {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 {
  max-width: 680px;
  font-size: 6.2rem;
}

.hero-lede {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-primary {
  color: var(--deep);
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #e8c86a, #b68b34);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(780px, 100%);
  margin-top: 48px;
  align-self: flex-start;
}

.hero-facts div {
  min-width: 0;
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.hero-facts div+div {
  border-left: 1px solid rgba(231, 218, 184, 0.2);
}

.hero-facts div>span:not(.hero-fact-icon) {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-facts p {
  max-width: 240px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-fact-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: rgba(232, 200, 106, 0.95);
}

.hero-fact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue {
  position: absolute;
  right: 44px;
  bottom: 38px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.section {
  padding: 40px 0px;
}

.intro-section {
  padding: 44px 0 52px;
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.intro-badge-image {
  width: min(100%, 560px);
  margin: 0 0 12px;
}

.intro-badge-image img {
  width: 20%;
  height: auto;
  display: block;
  object-fit: contain;
}

.intro-section .intro-grid {
  gap: 44px;
}

.intro-section .copy-lockup p:not(.section-kicker) {
  margin-top: 16px;
}

.intro-section .copy-lockup .button {
  margin-top: 36px;
}

.intro-section .feature-arch img {
  aspect-ratio: 4 / 4.2;
}

.intro-grid,
.signature-grid,
.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
}

.enquiry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.copy-lockup h2,
.section-head h2,
.signature-panel h2,
.legacy-grid h2,
.about-copy h2 {
  max-width: 720px;
  color: var(--deep);
  font-size: 2rem;
}

.copy-lockup p:not(.section-kicker),
.section-head p:not(.section-kicker),
.signature-panel p,
.legacy-grid p,
.about-copy p:not(.section-kicker) {
  max-width: 900px;
  margin: 10px 0 0;
  color: rgba(23, 35, 29, 0.72);
  font-size: 1.02rem;
}

.arch-media {
  position: relative;
  margin: 0;
  padding: 16px;
}

.arch-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(199, 162, 74, 0.5);
  border-radius: 46% 46% 8px 8px / 20% 20% 8px 8px;
}

.arch-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 46% 46% 8px 8px / 20% 20% 8px 8px;
  box-shadow: var(--shadow);
}

.feature-arch img {
  object-position: 36% center;
}

.arch-media figcaption {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: 220px;
  padding: 18px;
  color: var(--paper);
  border-radius: 8px 0 0 8px;
  background: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.08;
  box-shadow: 0 18px 42px rgba(13, 32, 24, 0.24);
}

.signature-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #5E7D64;
}

.signature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.signature-grid {
  position: relative;
}

.signature-panel {
  position: relative;
  padding: 54px 46px;
  border: 1px solid rgba(199, 162, 74, 0.45);
  border-radius: 46% 46% 8px 8px / 16% 16% 8px 8px;
  background:
    linear-gradient(180deg, rgba(251, 248, 240, 0.08), rgba(251, 248, 240, 0.02)),
    var(--forest);
}

.signature-panel::before {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 50%;
  background:
    conic-gradient(from 12deg, #eac762, #a7812b, #f3d66f, #9b7627, #eac762);
  box-shadow: inset 0 0 0 7px rgba(13, 32, 24, 0.18);
}

.signature-panel h2 {
  color: var(--paper);
  font-size: 3.75rem;
}

.signature-panel p {
  color: rgba(251, 248, 240, 0.78);
}

.signature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.signature-list article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(251, 248, 240, 0.12);
  border-radius: 8px;
  background: rgba(251, 248, 240, 0.055);
}

.signature-list span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 700;
}

.signature-list h3,
.amenity-card h3 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.signature-list p {
  margin: 14px 0 0;
  color: rgba(251, 248, 240, 0.68);
  font-size: 0.94rem;
}

.siteplans-section {
  background:
    linear-gradient(180deg, #0f2a20 0%, #1b3d2f 52%, #284d3c 100%);
}

.siteplans-head {
  margin-bottom: 42px;
  text-align: center;
  margin-inline: auto;
}

.siteplans-badge-image {
  width: min(100%, 180px);
  margin: 0 auto 0;
}

.siteplans-badge-image img {
  width: 100%;
  height: auto;
  display: block;
}

.address-badge-image {
  width: min(100%, 180px);
  margin: 0 auto 12px;
}

.address-badge-image img {
  width: 100%;
  height: auto;
  display: block;
}

.amenities-badge-image {
  width: min(100%, 180px);
  margin: 0 auto 4px;
}

.amenities-badge-image img {
  width: 100%;
  height: auto;
  display: block;
}

.legacy-badge-image {
  width: min(100%, 180px);
  margin: 0 auto 4px;
}

.legacy-badge-image img {
  width: 100%;
  height: auto;
  display: block;
}

.enquiry-badge-image {
  width: min(100%, 560px);
  margin: 0 0 20px;
}

.enquiry-badge-image img {
  width: 20%;
  height: auto;
  display: block;
  object-fit: contain;
}

.intro-badge-image,
.siteplans-badge-image,
.address-badge-image,
.amenities-badge-image,
.legacy-badge-image,
.enquiry-badge-image {
  margin-inline: auto;
}

.intro-badge-image img,
.siteplans-badge-image img,
.address-badge-image img,
.amenities-badge-image img,
.legacy-badge-image img,
.enquiry-badge-image img {
  margin-inline: auto;
}

.intro-section .intro-badge-image,
.enquiry-section .enquiry-badge-image {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 25px;
}

.intro-section .intro-badge-image img,
.enquiry-section .enquiry-badge-image img {
  margin-left: 0;
  margin-right: 0;
}

.siteplans-head h2 {
  color: var(--paper);
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.floorplan-card {
  overflow: hidden;
  border: 1px solid rgba(49, 91, 73, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.floorplan-image {
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(49, 91, 73, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 91, 73, 0.06) 1px, transparent 1px),
    linear-gradient(145deg, #fbf8f0, #e9efe4);
  background-size: 44px 44px, 44px 44px, auto;
}

.floorplan-image img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: contain;
  border-radius: 6px;
}

.floorplan-copy {
  padding: 26px;
  border-top: 1px solid rgba(49, 91, 73, 0.12);
}

.floorplan-copy p,
.pricing-card p {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floorplan-copy h3,
.pricing-heading h3,
.pricing-card h4 {
  margin: 0;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
}

.floorplan-copy h3 {
  font-size: 2.25rem;
}

.floorplan-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.floorplan-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(23, 35, 29, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
}

.floorplan-copy li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.pricing-section {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid rgba(49, 91, 73, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 232, 219, 0.64));
  box-shadow: 0 18px 52px rgba(13, 32, 24, 0.12);
}

.pricing-section img {
  display: none;
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.pricing-heading .section-kicker {
  margin-bottom: 8px;
}

.pricing-heading h3 {
  max-width: 620px;
  font-size: 2.55rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  display: grid;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(49, 91, 73, 0.15);
  border-radius: 8px;
  background: rgba(251, 248, 240, 0.82);
}

.pricing-card-featured {
  color: var(--paper);
  border-color: rgba(199, 162, 74, 0.44);
  background:
    linear-gradient(180deg, rgba(251, 248, 240, 0.08), rgba(251, 248, 240, 0.02)),
    var(--forest);
}

.pricing-card-featured p,
.pricing-card-featured h4,
.pricing-card-featured dt,
.pricing-card-featured dd {
  color: var(--paper);
}

.pricing-card h4 {
  color: var(--forest);
  font-size: 2.7rem;
}

.pricing-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(49, 91, 73, 0.14);
  border-radius: 8px;
  background: rgba(49, 91, 73, 0.14);
}

.pricing-card dl div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.44);
}

.pricing-card-featured dl div {
  background: rgba(251, 248, 240, 0.07);
}

.pricing-card dt {
  color: rgba(23, 35, 29, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card dd {
  margin: 8px 0 0;
  color: var(--deep);
  font-size: 1.05rem;
  font-weight: 800;
}

.costing-button {
  width: 100%;
  min-height: 54px;
}

.pricing-section small {
  display: block;
  max-width: 780px;
  margin-top: 18px;
  color: rgba(23, 35, 29, 0.58);
  font-size: 0.8rem;
  line-height: 1.55;
}

.address-section {
  background: var(--paper);
}

.address-section .section-head {
  text-align: center;
  margin-inline: auto;
}

.address-section .section-head h2,
.address-section .section-head p:not(.section-kicker) {
  margin-inline: auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.location-layout {
  display: block;
}

.connectivity-carousel {
  width: 100%;
}

.connectivity-viewport {
  overflow: hidden;
}

.image-strip {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin: 0;
}

.image-strip img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(13, 32, 24, 0.13);
}

.connectivity-grid {
  --cards-per-view: 4;
  gap: 14px;
  display: flex;
  transition: transform 320ms ease;
}

.connectivity-grid article {
  position: relative;
  flex: 0 0 calc((100% - (14px * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  min-width: 0;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 54px 34px 38px;
  overflow: hidden;
}

.connectivity-card-badge {
  width: min(100%, 150px);
  height: auto;
  display: block;
}

.connectivity-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/popup_form_fame_garden.svg") center / 100% 100% no-repeat;
  opacity: 0.94;
  pointer-events: none;
}

.connectivity-grid article>* {
  position: relative;
  z-index: 1;
}

.connectivity-grid strong {
  color: #f0cf78;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 12px rgba(240, 207, 120, 0.28);
}

.connectivity-grid span {
  margin-top: 0;
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.4;
  font-weight: 700;
  max-width: 220px;
  overflow-wrap: anywhere;
}

.connectivity-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.connectivity-control {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--deep);
  border: 1px solid rgba(49, 91, 73, 0.26);
  border-radius: 999px;
  background: rgba(251, 248, 240, 0.92);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.connectivity-control:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #fff;
}

.connectivity-control:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.connectivity-control svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenities-section {
  background:
    linear-gradient(180deg, var(--cream), #eef2e8 48%, var(--paper));
}

.amenities-section .section-head {
  text-align: center;
  margin-inline: auto;
}

.amenities-section .section-head h2,
.amenities-section .section-head p:not(.section-kicker) {
  margin-inline: auto;
}

.amenity-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.amenity-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: 0 18px 46px rgba(13, 32, 24, 0.14);
}

.amenity-large {
  grid-column: span 2;
}

.amenity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.amenity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 32, 24, 0.02) 18%, rgba(13, 32, 24, 0.78) 100%);
}

.amenity-card:hover img {
  transform: scale(1.045);
}

.amenity-card div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: var(--white);
}

.amenity-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.amenity-card h3 {
  max-width: 430px;
  color: var(--white);
  font-size: 2rem;
}

.legacy-section {
  color: var(--paper);
  background:
    linear-gradient(180deg, #0f2a20 0%, #1b3d2f 52%, #284d3c 100%);
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 70px;
  align-items: center;
  justify-items: center;
}

.legacy-heading {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.legacy-section .section-head {
  margin-bottom: 0;
}

.legacy-section .section-head h2,
.legacy-section .section-head p:not(.section-kicker) {
  margin-inline: auto;
}

.legacy-section .section-head p:not(.section-kicker) {
  color: var(--paper);
}

.legacy-copy {
  text-align: center;
  margin-inline: auto;
}

.legacy-copy h2,
.legacy-copy p {
  margin-inline: auto;
}

.legacy-grid h2,
.legacy-grid p {
  color: var(--paper);
}

.legacy-grid p {
  margin: 0;
  color: rgba(251, 248, 240, 0.76);
}

.legacy-section .section-kicker {
  margin-inline: auto;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legacy-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  width: 100%;
}

.legacy-builder-card {
  position: relative;
  padding: 0;
}

.legacy-builder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
}

.legacy-builder-head p {
  color: rgba(251, 248, 240, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legacy-builder-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.legacy-builder-logo-faith {
  height: 42px;
}

.legacy-builder-logo-mehta {
  height: 36px;
}

.legacy-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 6px;
}

.legacy-project-tile {
  display: grid;
  gap: 12px;
}

.legacy-project-image {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 18px 26px rgba(5, 16, 11, 0.18));
  transition: transform 220ms ease, filter 220ms ease;
}

.legacy-project-tile:hover .legacy-project-image {
  transform: translateY(-4px);
  filter: drop-shadow(0 26px 34px rgba(5, 16, 11, 0.24));
}

.legacy-project-name {
  display: block;
  text-align: center;
  color: rgba(251, 248, 240, 0.94);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.12;
}

.enquiry-section {
  padding: 60px 0;
  background: var(--paper);
}

.enquiry-map-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(49, 91, 73, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.enquiry-map-frame {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
}

.enquiry-map-button {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: auto;
  min-height: 48px;
  padding: 0 18px;
  z-index: 1;
}

.lead-form {
  display: grid;
  gap: 16px;
  width: 100%;
  justify-self: stretch;
  align-self: stretch;
  min-height: 520px;
  padding: 34px;
  border: 1px solid rgba(49, 91, 73, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form-head h2 {
  margin: 0 0 6px;
  color: var(--deep);
  font-size: 2rem;
  line-height: 1.04;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(23, 35, 29, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  color: var(--ink);
  border: 1px solid rgba(49, 91, 73, 0.18);
  border-radius: 6px;
  background: var(--paper);
  padding: 0 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 162, 74, 0.14);
}

.lead-form .button {
  width: 100%;
  min-height: 54px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-consent {
  margin: 4px 0 0;
  color: rgba(23, 35, 29, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(13, 32, 24, 0.58), rgba(13, 32, 24, 0.58)),
    url("assets/tower.jpg") center 30% / cover no-repeat;
  background-attachment: scroll;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 32, 24, 0.72) 0%, rgba(13, 32, 24, 0.46) 50%, rgba(13, 32, 24, 0.72) 100%);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  justify-items: center;
}

.about-copy {
  width: 100%;
  text-align: center;
}

.about-copy .section-kicker {
  margin-inline: auto;
}

.about-copy h2 {
  margin-inline: auto;
}

.about-copy p:not(.section-kicker) {
  margin-inline: auto;
}

.about-copy h2,
.about-copy p:not(.section-kicker) {
  color: var(--paper);
}

.about-copy p:not(.section-kicker) {
  color: rgba(251, 248, 240, 0.76);
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 38px;
  padding: 0;
  background: transparent;
  border: 0;
}

.about-principles article {
  min-height: auto;
  padding: 0;
  background: transparent;
  text-align: center;
}

.about-principles span {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 0.95;
}

.about-principles strong {
  display: block;
  margin-top: 10px;
  color: rgba(251, 248, 240, 0.92);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
}

.site-footer {
  padding: 50px 0 15px;
  color: var(--ink);
  background: url("assets/footer bg.png") center / cover no-repeat;
  border-top: 1px solid rgba(13, 32, 24, 0.08);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(13, 32, 24, 0.08);
}

.footer-mark {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.footer-wordmark {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: invert(0.9) brightness(0.2) sepia(0.5);
}

.footer-partners {
  display: flex;
  align-items: center;
  gap: 24px;
}

.partners-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(43, 48, 44, 0.62);
  text-transform: uppercase;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.partner-separator {
  width: 1px;
  height: 38px;
  background-color: rgba(13, 32, 24, 0.12);
}

.brand-faith {
  height: 38px;
  object-fit: contain;
}

.brand-mehta {
  height: 44px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 42px 0 45px;
}

.footer-row-one {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer-row-two {
  display: block;
}

.footer-col h4,
.footer-disclaimer h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.footer-col p,
.footer-disclaimer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(43, 48, 44, 0.82);
}

.footer-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(43, 48, 44, 0.2);
  text-underline-offset: 4px;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}

.footer-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.agency-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}

.agency-link:hover {
  color: var(--gold);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(43, 48, 44, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-link svg {
  flex: none;
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.qr-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  background-color: rgba(13, 32, 24, 0.04);
  border: 1px dashed rgba(13, 32, 24, 0.2);
  border-radius: 4px;
  color: rgba(43, 48, 44, 0.4);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(13, 32, 24, 0.08);
  font-size: 0.85rem;
  color: rgba(43, 48, 44, 0.62);
}

.privacy-policy-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(43, 48, 44, 0.2);
  text-underline-offset: 4px;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}

.privacy-policy-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
  }

  .footer-row-one {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
}

@media (max-width: 600px) {
  .footer-partners {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-row-one {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}

.float-button {
  position: fixed;
  bottom: 22px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(13, 32, 24, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.float-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(13, 32, 24, 0.3);
}

.mobile-sticky-bar {
  display: none;
}

.float-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-button {
  left: 22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  color: var(--deep);
  border: 1px solid rgba(199, 162, 74, 0.7);
  background: linear-gradient(135deg, #e8c86a, #b68b34);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-button {
  right: 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #1fb85f, #0b7f45);
}

.float-brochure {
  position: fixed;
  left: 22px;
  bottom: 92px;
  z-index: 70;
  color: var(--deep);
  border: 1px solid rgba(199, 162, 74, 0.78);
  background: linear-gradient(135deg, #e8c86a, #b68b34);
  box-shadow: 0 18px 44px rgba(13, 32, 24, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.float-brochure:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(13, 32, 24, 0.3);
}

.float-reveal {
  position: fixed;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0px;
  height: 56px;
  min-width: 56px;
  padding: 0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(13, 32, 24, 0.24);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease, padding 180ms ease;
}

.float-brochure.float-reveal {
  bottom: 92px;
}

.call-button.float-reveal {
  bottom: 22px;
}

.float-reveal:hover {
  padding: 0 16px;
}

.float-reveal-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: none;
}

.float-reveal-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-reveal-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(-6px);
  transition: max-width 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.float-reveal:hover .float-reveal-text {
  max-width: 260px;
  opacity: 1;
  transform: translateX(0);
}

.call-button {
  left: 22px;
  color: var(--deep);
  border: 1px solid rgba(199, 162, 74, 0.65);
  background: linear-gradient(135deg, #e8c86a, #b68b34);
}

body.has-scroll-top .call-button,
body.has-scroll-top .float-brochure {
  transform: translateY(-72px);
}

.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.enquiry-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 32, 24, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.popup-dialog {
  position: relative;
  width: min(620px, calc(100vw - 24px), calc((100vh - 48px) * 1252 / 1992));
  aspect-ratio: 1252 / 1992;
  overflow: visible;
  padding: 0;
  background: transparent;
}

.popup-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: none;
  pointer-events: none;
}

.popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--deep);
  border: 1px solid rgba(251, 248, 240, 0.62);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent),
    var(--cream);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 12px 24px rgba(13, 32, 24, 0.18);
  cursor: pointer;
}

.popup-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.popup-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.popup-fill {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 13.2% 10.2% 9.6%;
  overflow: visible;
  color: var(--paper);
  background: none;
  background: url("assets/popup_form_fame_garden.svg") center / 100% 100% no-repeat;
}

.popup-fill::before {
  content: none;
}

.popup-fill::after {
  content: "";
  position: absolute;
  left: 54%;
  bottom: -30px;
  z-index: 0;
  width: min(600px, 92%);
  aspect-ratio: 840 / 320;
  transform: translateX(-50%);
  background: url("assets/birds_popupform.png") center / contain no-repeat;
  pointer-events: none;
}

.popup-mark {
  position: absolute;
  top: 34px;
  left: 50%;
  z-index: 2;
  width: 94px;
  transform: translateX(-50%);
  pointer-events: none;
}

.popup-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.popup-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.popup-copy p {
  margin: 0 0 10px;
  color: #f3d37a;
  background: linear-gradient(180deg, #fff4bf 0%, #f5cf6a 32%, #d7a53c 62%, #fff0a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 0 14px rgba(245, 207, 106, 0.12);
}

.popup-copy h2 {
  margin: 0;
  color: var(--paper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.12rem;
  line-height: 0.98;
}

.popup-copy span {
  display: block;
  max-width: 430px;
  margin: 14px auto 0;
  color: rgba(251, 248, 240, 0.78);
  font-size: 18px;
  line-height: 1.45;
}

.popup-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 12px;
  width: min(78%, 410px);
  margin: 0 auto;
}

.popup-form label {
  display: grid;
  gap: 8px;
  color: rgba(251, 248, 240, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.popup-form label+label {
  margin-top: 8px;
}

.popup-form input,
.popup-form select {
  width: calc(100% + 60px);
  margin-left: -24px;
  min-height: 58px;
  color: var(--deep);
  border: 1px solid rgba(233, 223, 201, 0.56);
  border-radius: 6px;
  background: #ffffff;
  padding: 0 18px;
  font-size: 1.05rem;
  outline: none;
}

.popup-form input:focus,
.popup-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 162, 74, 0.22);
}

.popup-form .button,
.popup-form .form-status {
  grid-column: 1 / -1;
}

.popup-form .button {
  min-height: 46px;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.popup-form .form-status {
  min-height: 18px;
  margin: 0;
  color: rgba(251, 248, 240, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .header-partners {
    display: none;
  }

  .mobile-menu-toggle {
    justify-self: end;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 6px;
    background: rgba(13, 32, 24, 0.36);
    cursor: pointer;
  }

  .site-header.is-scrolled .mobile-menu-toggle {
    color: var(--deep);
    border-color: rgba(49, 91, 73, 0.24);
    background: rgba(251, 248, 240, 0.82);
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    pointer-events: none;
  }

  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(13, 32, 24, 0.52);
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(82vw, 330px);
    height: 100%;
    padding: 22px 20px 28px;
    background: #163126;
    border-left: 1px solid rgba(231, 218, 184, 0.2);
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .mobile-menu-close {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(251, 248, 240, 0.34);
    border-radius: 6px;
    background: transparent;
    color: var(--paper);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-menu-partners {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 6px 10px;
    border: 1px solid rgba(251, 248, 240, 0.24);
    border-radius: 6px;
    background: rgba(251, 248, 240, 0.92);
  }

  .mobile-menu-partners .partner-logo-faith {
    height: 24px;
  }

  .mobile-menu-partners .partner-logo-mehta {
    height: 19px;
  }

  .mobile-menu-partner-divider {
    width: 1px;
    height: 20px;
    background: rgba(49, 91, 73, 0.2);
  }

  .mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transform-origin: center;
  }

  .mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu-links {
    display: grid;
    gap: 12px;
    margin-top: 22px;
  }

  .mobile-menu-links a {
    color: rgba(251, 248, 240, 0.95);
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(231, 218, 184, 0.18);
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 22px;
    min-height: 48px;
  }

  body.has-mobile-menu .mobile-menu {
    pointer-events: auto;
  }

  body.has-mobile-menu .mobile-menu-backdrop {
    opacity: 1;
  }

  body.has-mobile-menu .mobile-menu-panel {
    transform: translateX(0);
  }

  .header-partners {
    gap: 10px;
    padding: 7px 12px;
  }

  .partner-logo-faith {
    height: 34px;
  }

  .partner-logo-mehta {
    height: 28px;
  }

  .partner-divider {
    height: 26px;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .intro-grid,
  .signature-grid,
  .location-layout,
  .enquiry-grid,
  .legacy-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .legacy-heading,
  .legacy-copy {
    grid-column: auto;
  }

  .signature-list,
  .floorplan-grid,
  .pricing-grid,
  .amenity-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-showcase {
    grid-template-columns: 1fr;
  }

  .legacy-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
  }

  .connectivity-grid {
    --cards-per-view: 2;
  }

  .address-section .section-head {
    margin-bottom: 30px;
  }

  .address-section .section-head p:not(.section-kicker) {
    margin-top: 8px;
  }

  .connectivity-grid {
    gap: 10px;
  }

  .connectivity-grid article {
    min-height: 278px;
    gap: 6px;
    padding: 36px 18px 22px;
  }

  .connectivity-card-badge {
    width: min(100%, 108px);
  }

  .connectivity-grid strong {
    font-size: 2.2rem;
  }

  .connectivity-grid span {
    max-width: 150px;
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .connectivity-controls {
    margin-top: 14px;
  }

  .connectivity-control {
    width: 40px;
    height: 40px;
  }

  .amenity-large {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .enquiry-popup {
    padding:
      max(12px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(calc(12px + env(safe-area-inset-bottom)), 12px) max(10px, env(safe-area-inset-left));
  }

  body {
    font-size: 14px;
    line-height: 1.58;
  }

  p,
  li,
  a,
  input,
  select,
  button {
    font-size: 12px;
  }

  .container {
    width: min(1180px, calc(100vw - 32px));
  }

  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    display: flex;
    justify-content: space-between;
    width: auto;
    gap: 12px;
    padding: 10px;
    transform: translateY(-120%);
  }

  .site-header.is-visible {
    transform: translateY(0);
  }

  .brand {
    width: 268px;
    gap: 8px;
  }

  .brand-mark {
    height: 44px;
  }

  .brand-wordmark {
    height: 28px;
  }

  .header-partners {
    display: none;
  }

  .partner-logo-faith {
    height: 24px;
  }

  .partner-logo-mehta {
    height: 21px;
  }

  .partner-divider {
    height: 20px;
  }

  .hero-media img {
    object-position: 74% 58%;
  }

  .hero-veil {
    background:
      linear-gradient(90deg, rgba(13, 32, 24, 0.64) 0%, rgba(13, 32, 24, 0.28) 55%, rgba(13, 32, 24, 0.46) 100%),
      linear-gradient(180deg, rgba(13, 32, 24, 0.08) 0%, rgba(13, 32, 24, 0.48) 100%),
      linear-gradient(120deg, rgba(199, 162, 74, 0.08), transparent 38%);
  }

  .hero-content {
    min-height: 94svh;
    justify-content: flex-end;
    padding: 116px 0 24px;
  }

  .hero {
    min-height: 94svh;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero .kicker {
    margin-bottom: 8px;
    font-size: 0.74rem;
    letter-spacing: 0.7px;
    background: linear-gradient(110deg, #d9b45d 20%, #fff1b8 40%, #d9b45d 60%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-lede {
    display: none;
  }

  .hero-actions,
  .hero-facts {
    width: 100%;
    max-width: 100%;
  }

  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    margin-top: 24px;
  }

  .hero .button {
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero .button::after {
    content: none;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .signature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legacy-builder-card {
    padding: 0;
  }

  .legacy-builder-head {
    gap: 12px;
    padding-bottom: 14px;
  }

  .legacy-builder-head p {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .legacy-builder-logo-faith {
    height: 32px;
  }

  .legacy-builder-logo-mehta {
    height: 28px;
  }

  .legacy-project-grid {
    gap: 12px;
    margin-top: 16px;
  }

  .legacy-project-name {
    font-size: 1.02rem;
  }

  .amenity-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .connectivity-grid {
    --cards-per-view: 2;
  }

  .hero-facts {
    justify-self: center;
    margin-top: 20px;
    padding-top: 8px;
  }

  .hero-facts div {
    min-height: auto;
    padding: 10px 7px;
    border-left: 0;
  }

  .hero-facts div>span:not(.hero-fact-icon) {
    max-width: 108px;
    margin-inline: auto;
    font-size: 1.3rem;
    line-height: 1.18;
    text-align: center;
    text-wrap: balance;
  }

  .hero-fact-icon {
    margin-bottom: 12px;
    margin-inline: auto;
  }

  .hero-facts div+div {
    border-top: 0;
    border-left: 1px solid rgba(231, 218, 184, 0.3);
  }

  .section {
    padding: 44px 0;
  }

  .intro-section {
    padding-top: 34px;
  }

  .copy-lockup h2,
  .section-head h2,
  .signature-panel h2,
  .legacy-grid h2,
  .about-copy h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.8px;
  }

  .copy-lockup p:not(.section-kicker),
  .section-head p:not(.section-kicker),
  .signature-panel p,
  .legacy-grid p,
  .about-copy p:not(.section-kicker) {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .intro-grid,
  .signature-grid,
  .enquiry-grid,
  .about-grid {
    gap: 30px;
  }

  .arch-media {
    padding: 10px;
  }

  .arch-media figcaption {
    right: 10px;
    bottom: 26px;
    width: 180px;
    padding: 14px;
    font-size: 1.12rem;
  }

  .signature-panel {
    padding: 30px 20px;
  }

  .floorplan-grid,
  .pricing-grid,
  .pricing-card dl {
    grid-template-columns: 1fr;
  }

  .floorplan-image {
    padding: 12px;
  }

  .floorplan-copy,
  .pricing-section,
  .pricing-card {
    padding: 18px;
  }

  .floorplan-copy h3 {
    font-size: 1.56rem;
  }

  .pricing-heading {
    display: block;
  }

  .pricing-heading h3 {
    font-size: 1.48rem;
  }

  .pricing-card h4 {
    font-size: 1.58rem;
  }

  .amenity-large {
    grid-column: span 1;
  }

  .amenity-card {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .amenity-large {
    aspect-ratio: 1 / 1;
  }

  .amenity-card p {
    font-size: 0.78rem;
  }

  .amenity-card h3 {
    font-size: 1.18rem;
    line-height: 1.14;
  }

  .lead-form {
    width: 100%;
    justify-self: stretch;
    padding: 42px 18px 18px 18px;
  }

  .enquiry-map-panel {
    order: 2;
  }

  .lead-form {
    order: 1;
  }

  .enquiry-map-panel {
    min-height: 340px;
  }

  .lead-form {
    min-height: auto;
  }

  .lead-form-head h2 {
    font-size: 1.72rem;
  }

  .intro-section .copy-lockup {
    text-align: center;
  }

  .intro-section .intro-badge-image {
    width: min(100%, 300px);
    margin: 0 auto 16px;
  }

  .intro-section .intro-badge-image img {
    width: 25%;
    margin-inline: auto;
  }

  .intro-section .feature-arch {
    margin-inline: auto;
    width: min(100%, 360px);
  }

  .intro-badge-image,
  .siteplans-badge-image,
  .address-badge-image,
  .amenities-badge-image,
  .legacy-badge-image {
    width: min(100%, 132px);
    margin-bottom: 12px;
  }

  .enquiry-map-button {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .about-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
  }

  .legacy-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-principles span {
    font-size: 3.05rem;
  }

  .about-principles strong {
    font-size: 0.84rem;
  }

  .phone-link {
    font-size: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .float-button {
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .scroll-top-button {
    left: 16px;
  }

  .whatsapp-button {
    right: 16px;
  }

  .call-button {
    left: 16px;
  }

  body.has-scroll-top .call-button {
    transform: translateY(-62px);
  }

  .float-brochure {
    left: 16px;
    bottom: 84px;
    padding: 0px;
    min-height: 44px;
    font-size: 0.84rem;
  }

  body.has-scroll-top .float-brochure {
    transform: translateY(-62px);
  }

  .float-reveal {
    bottom: 16px;
    height: 50px;
    min-width: 50px;
  }

  .float-brochure.float-reveal {
    bottom: 78px;
  }

  .float-reveal-icon {
    width: 50px;
    height: 50px;
  }

  .float-brochure,
  .call-button,
  .whatsapp-button {
    display: none;
  }

  .mobile-sticky-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    transform: none;
    -webkit-transform: none;
    z-index: 85;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding-bottom: max(env(safe-area-inset-bottom), 0px);
    background: rgba(13, 32, 24, 0.9);
    border-top: 1px solid rgba(231, 218, 184, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mobile-sticky-action {
    display: grid;
    place-items: center;
    min-height: 46px;
    color: var(--paper);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08px;
    text-transform: uppercase;
    background: rgba(13, 32, 24, 0.32);
  }

  .mobile-sticky-action:first-child {
    color: var(--deep);
    background: linear-gradient(135deg, #e8c86a, #b68b34);
  }

  .scroll-top-button {
    bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .popup-dialog {
    width: min(390px,
        calc(100vw - env(safe-area-inset-left) - env(safe-area-inset-right) - 20px),
        calc((100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 24px) * 1252 / 1992));
    max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 24px);
    margin: 0 auto;
  }

  .popup-panel {
    inset: 0;
  }

  .popup-fill {
    gap: 12px;
    min-height: 0;
    inset: 0;
    padding: clamp(84px, 22vw, 94px) clamp(24px, 7vw, 30px) clamp(40px, 11vw, 48px);
  }

  .popup-fill::after {
    bottom: -20px;
    width: min(360px, 96%);
  }

  .popup-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .popup-close svg {
    width: 15px;
    height: 15px;
  }

  .popup-mark {
    top: 34px;
    width: 90px;
  }

  .popup-copy h2 {
    font-size: 31px;
    line-height: 1.06;
  }

  .popup-copy p {
    font-size: 20px;
  }

  .popup-copy span {
    max-width: 260px;
    font-size: 15px;
  }

  .popup-form {
    grid-template-columns: 1fr;
    width: min(100%, 286px);
    justify-self: center;
  }

  .popup-form label {
    gap: 5px;
    font-size: 0.7rem;
  }

  .popup-form label+label {
    margin-top: 6px;
  }

  .popup-form input,
  .popup-form select {
    width: 100%;
    margin-left: 0;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .popup-form .button {
    margin-top: 6px;
    min-height: 44px;
    font-size: 0.9rem;
  }
}


@media (max-width: 460px) {
  .site-header {
    padding: 8px;
  }

  .brand {
    width: 216px;
  }

  .brand-mark {
    height: 38px;
  }

  .brand-wordmark {
    height: 24px;
  }

  .header-partners {
    padding: 5px 6px;
  }

  .partner-logo-faith {
    height: 20px;
  }

  .partner-logo-mehta {
    height: 17px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero .button {
    font-size: 0.74rem;
  }

  .address-section .section-head {
    margin-bottom: 24px;
  }

  .connectivity-grid article {
    min-height: 248px;
    padding: 30px 14px 18px;
  }

  .connectivity-card-badge {
    width: min(100%, 92px);
  }

  .connectivity-grid strong {
    font-size: 1.96rem;
  }

  .connectivity-grid span {
    max-width: 130px;
    font-size: 0.8rem;
    line-height: 1.26;
  }

  .hero-facts div>span:not(.hero-fact-icon) {
    font-size: 1.18rem;
    line-height: 1.2;
  }

  .copy-lockup h2,
  .section-head h2,
  .signature-panel h2,
  .legacy-grid h2,
  .about-copy h2 {
    font-size: 2.1rem;
  }

  .legacy-builder-card {
    padding: 0;
  }

  .legacy-project-grid {
    gap: 10px;
  }

  .legacy-project-name {
    font-size: 0.92rem;
  }
}

@media (max-width: 680px) and (max-height: 760px) {
  .popup-dialog {
    width: min(360px,
        calc(100vw - env(safe-area-inset-left) - env(safe-area-inset-right) - 16px),
        calc((100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 16px) * 1252 / 1992));
    max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 16px);
  }

  .popup-fill {
    padding: 78px 24px 34px;
    gap: 8px;
  }

  .popup-mark {
    top: 26px;
    width: 76px;
  }

  .popup-copy p {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .popup-copy h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .popup-form {
    width: min(100%, 266px);
    gap: 8px 10px;
  }

  .popup-form label {
    gap: 4px;
    font-size: 0.66rem;
  }

  .popup-form input,
  .popup-form select {
    min-height: 38px;
    font-size: 0.86rem;
  }

  .popup-form .button {
    min-height: 40px;
    margin-top: 4px;
    font-size: 0.84rem;
  }

  .popup-fill::after {
    bottom: -12px;
    width: min(290px, 90%);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.live-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 80;
}

.live-chat-trigger {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  cursor: pointer;
  position: relative;
}

.live-chat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5ff58a;
  border: 2px solid #fff;
  position: absolute;
  right: 2px;
  bottom: 2px;
}

.live-chat-trigger-avatar-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: visible;
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.live-chat-trigger-avatar {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #e0ebe5;
}

.live-chat-trigger-text {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  opacity: 0;
  transform: translate(-8px, -50%);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 11px 16px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.live-chat-trigger:hover .live-chat-trigger-text,
.live-chat-trigger:focus-visible .live-chat-trigger-text {
  opacity: 1;
  transform: translate(0, -50%);
}

.live-chat-trigger[aria-expanded="false"] .live-chat-trigger-text {
  opacity: 1;
  transform: translate(0, -50%);
}

.live-chat-trigger[aria-expanded="true"] .live-chat-trigger-text {
  opacity: 0;
  transform: translate(-8px, -50%);
}

.live-chat-panel {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 8px;
  width: min(410px, calc(100vw - 20px));
  height: min(640px, calc(100dvh - 210px));
  border-radius: 18px;
  border: 1px solid rgba(22, 49, 38, 0.2);
  background: url("assets/footer bg.png") center / cover no-repeat;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.98);
  transform-origin: 100% 100%;
  filter: blur(10px);
  pointer-events: none;
  transition: opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.52s cubic-bezier(0.16, 1, 0.3, 1);
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  will-change: transform, opacity, filter;
}

.live-chat-panel.is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .live-chat-panel {
    transition: none;
    filter: none;
    transform: none;
  }
}

.live-chat-header {
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(120deg, #183629, #2b4a3d);
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.2);
}

.live-chat-header strong {
  display: block;
  font-size: 0.95rem;
}

.live-chat-header>div {
  flex: 1;
}

.live-chat-header p {
  margin: 3px 0 0;
  font-size: 0.78rem;
  opacity: 0.88;
}

.live-chat-close {
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0;
}

.live-chat-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.live-chat-messages {
  height: auto;
  min-height: 170px;
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overscroll-behavior: contain;
}

body.has-chat-scroll-lock {
  overflow: hidden;
}

body.has-chat-page-lock {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.chat-bubble {
  max-width: 84%;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.chat-agent {
  align-self: flex-start;
  background: #edf5f0;
  color: #1f3128;
}

.chat-agent.has-avatar-indicator {
  position: relative;
  margin-bottom: 16px;
}

.chat-avatar-indicator {
  position: absolute;
  left: 4px;
  bottom: -14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fcfaf6;
  background: #d8e8df url("assets/fame-garden-mark.png") center / 72% no-repeat;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

.chat-connection-wrap {
  display: grid;
  gap: 10px;
  margin: 8px 0 2px;
}

.chat-connection-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 58, 47, 0), rgba(31, 58, 47, 0.26), rgba(31, 58, 47, 0));
}

.chat-connection-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.77rem;
  color: #234034;
  background: rgba(31, 58, 47, 0.09);
}

.chat-connection-spinner {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(31, 58, 47, 0.22);
  border-top-color: #1f3a2f;
  animation: chat-spin 0.8s linear infinite;
}

@keyframes chat-spin {
  to {
    transform: rotate(360deg);
  }
}

.chat-user {
  align-self: flex-end;
  background: #1f3a2f;
  color: #fff;
}

.chat-typing {
  color: #4e6258;
  font-style: italic;
}

.live-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 12px 10px;
}

.chat-chip {
  border: 1px solid rgba(31, 58, 47, 0.26);
  color: #1f3a2f;
  background: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
}

.live-chat-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(22, 49, 38, 0.12);
}

.live-chat-form input {
  flex: 1;
  border: 1px solid rgba(22, 49, 38, 0.2);
  border-radius: 9px;
  background: #fff;
  min-height: 38px;
  padding: 0 10px;
}

.live-chat-form button {
  border: 0;
  border-radius: 9px;
  background: #1f3a2f;
  color: #fff;
  min-height: 38px;
  padding: 0 12px;
  font-weight: 600;
  cursor: pointer;
}

.live-chat-status {
  min-height: 18px;
  margin: 0;
  padding: 0 12px 12px;
  font-size: 0.76rem;
  color: #8b1f1f;
}

.live-chat-powered-by {
  margin: 0;
  padding: 0 12px 0px;
  font-size: 0.7rem;
  color: #5a6a62;
  text-align: center;
}

.live-chat-powered-by a {
  color: #1f3a2f;
  text-decoration: underline;
}


@media (max-width: 720px) {
  .live-chat-widget {
    right: 12px;
    bottom: 78px;
  }

  .live-chat-trigger {
    font-size: 0.82rem;
  }

  .live-chat-panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100svh;
    right: auto;
    bottom: auto;
    border-radius: 0;
    border: 0;
  }

  .live-chat-messages {
    min-height: 150px;
  }

  .live-chat-panel.is-open~.live-chat-trigger {
    opacity: 0;
    pointer-events: none;
  }

  body.has-chat-open .mobile-sticky-bar {
    display: none;
  }

  .live-chat-form input {
    font-size: 16px;
  }
}
