/* Signature Global project theme — local assets only */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #2f7d32;
  --green-deep: #1f6b28;
  --green-soft: #c6e38a;
  --enquire: #14913a;
  --ink: #2a2a2a;
  --muted: #5c5c5c;
  --header: rgba(68, 68, 68, 0.78);
  --footer: #3a3a3a;
  --amenity: #454545;
  --line: #e4e4e4;
  --bg: #ffffff;
  --bg-soft: #f3f4f3;
  --max: 1180px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header over the hero */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: var(--header);
  backdrop-filter: blur(8px);
}

.header-bar {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-image {
  height: 42px;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 0;
}

.nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 11px;
}

.nav a:hover,
.nav a.active {
  color: var(--green-soft);
}

.nav-sep {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 4px;
}

.menu-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.nav-drawer {
  display: none;
  background: #2f2f2f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  padding: 16px 0 20px;
}

.nav-drawer a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 0;
}

.nav-drawer a:hover {
  color: var(--green-soft);
}

@media (min-width: 980px) {
  .nav {
    display: flex;
  }
  .nav-drawer .wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Hero */
.hero {
  min-height: min(92vh, 820px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 22%, rgba(0, 0, 0, 0.08) 70%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  margin: 0 0 7vh 6vw;
  max-width: 460px;
  background: rgba(20, 24, 22, 0.62);
  color: #fff;
  padding: 22px 26px 20px;
}

.hero-brand {
  font-size: 15px;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.hero-card h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 4px 0 1rem;
}

.hero-card p {
  font-size: 15px;
  opacity: 0.95;
}

.hero-rera {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

/* Shared sections */
.section {
  padding: 72px 0;
}

.section h2 {
  color: var(--green);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.lead {
  color: #3d3d3d;
  font-size: 15.5px;
  max-width: 640px;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split img,
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame {
  min-height: 280px;
  overflow: hidden;
  background: #ddd;
}

.frame img {
  min-height: 280px;
  max-height: 460px;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
  .split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .split.reverse .prose {
    order: -1;
  }
}

/* Nearby */
.nearby {
  background: var(--bg-soft);
}

.nearby-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  margin-bottom: 28px;
  align-items: flex-end;
}

.nearby-head p {
  max-width: 420px;
  color: #666;
  font-size: 14px;
}

.nearby-grid {
  display: grid;
  gap: 22px;
}

@media (min-width: 900px) {
  .nearby-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
}

.place-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.place-block h3 {
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #cfcfcf;
}

.place-block ul {
  list-style: disc;
  padding-left: 18px;
  color: #444;
  font-size: 14px;
}

.place-block li {
  margin: 3px 0;
}

.loc-note {
  margin-top: 8px;
  font-size: 12px;
  color: #777;
}

/* Architects */
.architects h2 {
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.arch-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 860px) {
  .arch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.arch-card .role {
  font-size: 14px;
  margin-bottom: 8px;
}

.arch-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 12px;
}

.arch-card h3 {
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.arch-card p {
  font-size: 14px;
  color: #444;
}

/* Assurance */
.assurance {
  background: #f6f6f6;
}

/* Gallery */
.gallery-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 860px) {
  .gallery-layout {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}

.gallery-title {
  border-bottom: 2px solid var(--green);
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.gallery-caption {
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
}

.gallery-stage {
  width: 100%;
  height: min(460px, 58vw);
  object-fit: cover;
  background: #ddd;
}

.thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}

.thumbs button {
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  flex: 0 0 92px;
}

.thumbs img {
  width: 92px;
  height: 64px;
  object-fit: cover;
}

.thumbs button.is-active {
  border-color: var(--green);
}

/* Amenities */
.amenities {
  background: var(--amenity);
  color: #fff;
}

.amenities h2 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
}

.amenities .sub {
  color: var(--green-soft);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 650;
  line-height: 1.15;
  margin: 4px 0 12px;
}

.amenities .lead {
  color: #e8e8e8;
}

.amenity-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.amenity-window {
  overflow: hidden;
}

.amenity-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
}

.amenity-track img {
  height: 250px;
  object-fit: cover;
  flex: 0 0 calc(50% - 7px);
  width: calc(50% - 7px);
}

.arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 800px) {
  .amenity-track img {
    flex-basis: 100%;
    width: 100%;
  }
}

/* Plans */
.plans {
  background: #f7f7f6;
}

.plans-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 18px;
  margin-bottom: 28px;
}

.plans-head span {
  color: #444;
  font-size: 18px;
}

.plans-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 860px) {
  .plans-layout {
    grid-template-columns: 240px 1fr;
  }
}

.plan-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.plan-btn {
  min-width: 180px;
  padding: 14px 18px;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  background: #fff;
  color: var(--green);
  border: 1px solid var(--green);
}

.plan-btn.is-active {
  background: #2b2b2b;
  color: #fff;
  border-color: #2b2b2b;
}

.plan-photo {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
}

/* Tour + download */
.band {
  background: #fff;
}

.band-box {
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  gap: 16px;
  align-items: center;
}

@media (min-width: 800px) {
  .band-box {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.text-btn {
  justify-self: start;
  background: var(--green);
  color: #fff;
  border: 0;
  padding: 12px 18px;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.text-btn:hover {
  background: var(--green-deep);
}

/* Footer */
.footer {
  background: var(--footer);
  color: #fff;
  padding: 36px 0 18px;
}

.footer-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-brand img {
  height: 46px;
  width: auto;
}

.social {
  display: flex;
  gap: 10px;
}

.social span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 16px;
}

@media (min-width: 900px) {
  .footer-cols {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer h3 {
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin: 5px 0;
}

.footer a,
.footer button.linkish {
  color: #ececec;
  font-size: 14px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.footer a:hover,
.footer button.linkish:hover {
  color: var(--green-soft);
}

.footer-rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 26px 0 14px;
}

.policies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  font-size: 12px;
  color: #ddd;
}

.policies span {
  padding: 0 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.policies span:last-child {
  border-right: 0;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-top: 14px;
}

.legal {
  flex: 0 1 280px;
  text-align: left;
  font-size: 13px;
  margin-top: 0;
  color: #eee;
}

.disclaimer {
  flex: 1 1 480px;
  margin: 0;
  text-align: right;
  font-size: 12px;
  line-height: 1.55;
  color: #ddd;
}

@media (max-width: 800px) {
  .footer-base {
    flex-direction: column;
  }

  .disclaimer {
    text-align: left;
  }
}

/* Enquire tab */
.sg-sticky-enquire {
  position: fixed;
  z-index: 9000;
  top: 38%;
  right: 0;
  border: 0;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
  background: var(--enquire);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 18px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.18);
}

.sg-sticky-enquire:hover {
  background: #0f7d30;
}

.sg-sticky-enquire.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.sg-sticky-enquire__sub {
  display: none;
}

.sg-modal[hidden] {
  display: none !important;
}

.sg-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: grid;
  place-items: center;
  padding: 16px;
}

.sg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.sg-modal__panel {
  position: relative;
  width: min(100%, 420px);
  background: #fff;
  padding: 28px 24px 22px;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.sg-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  background: #f2f2f2;
  cursor: pointer;
  font-size: 22px;
}

.sg-modal__eyebrow {
  color: var(--green);
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sg-modal__panel h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.sg-modal__lead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.sg-enquire-form {
  display: grid;
  gap: 12px;
}

.sg-field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 650;
}

.sg-field input {
  border: 1px solid #ddd;
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 400;
}

.sg-field input:focus {
  outline: 2px solid rgba(47, 125, 50, 0.35);
  border-color: var(--green);
}

.sg-submit {
  border: 0;
  background: var(--enquire);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 13px 16px;
  cursor: pointer;
}

.sg-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.sg-form-msg {
  font-size: 13px;
}

.sg-form-msg.is-ok {
  color: var(--green-deep);
}

.sg-form-msg.is-err {
  color: #b42318;
}

@media (max-width: 720px) {
  .hero-card {
    margin: 0 16px 28px;
  }
  .section {
    padding: 48px 0;
  }
  .place-columns {
    grid-template-columns: 1fr;
  }
}
