/* ==========================================================================
   DESIGN TOKENS
   Colours verified against design-reference/all page.jpg + DESIGN.md
   ========================================================================== */
:root {
  /* Brand */
  --clr-gold:          #A39542;
  --clr-cream:         #F5F0E8;
  --clr-white:         #FFFFFF;

  /* Text */
  --clr-text-dark:     #2A2A2A;
  --clr-text-on-green: #FFFFFF;

  /* Interactive */
  --clr-btn-enquiry:       #8C6A42;
  --clr-btn-enquiry-hover: #7A5C38;
  --clr-btn-dark:          #1A1A1A;

  /* Borders & UI */
  --clr-border:        #D8D0C4;
  --clr-dot-inactive:  #C4C4C4;
  --clr-input-bg:      #FFFFFF;
  --clr-form-bg:       #F7F3ED;

  /* Typography — Montserrat only */
  --font: 'Montserrat', sans-serif;

  /* Spacing scale (skill: generous whitespace for exaggerated minimalism) */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-28: 112px;

  --section-v:   100px;
  --container-w: 1200px;
  --container-px: 60px;

  /* Transition (skill: 150–300 ms for micro-interactions) */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  200ms;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--clr-text-dark);
  background: var(--clr-cream);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

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

ul { list-style: none; }

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

/* Visible focus states for keyboard navigation (skill: focus-states CRITICAL) */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
}

/* prefers-reduced-motion (skill requirement) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ==========================================================================
   LAYOUT UTILITY
   ========================================================================== */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}


/* ==========================================================================
   PLACEHOLDER VISUALS
   ========================================================================== */
.ph {
  background: #cec9c0;
  border: 2px dashed #a09890;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a6560;
  font-family: monospace;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  padding: var(--sp-4);
}

.ph::before {
  content: "[ " attr(data-ph) " ]";
}

/* Fill parent absolutely (used inside position:relative wrappers) */
.ph--fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ph--floorplan {
  width: 100%;
  height: 420px;
}

/* Logo placeholder in hero */
.ph-logo {
  width: 200px;
  height: 130px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
  font-size: 10px;
  text-align: center;
  margin-bottom: var(--sp-8);
}

.ph-logo::before {
  content: "logo.png\A Replace with\A <img> tag";
  white-space: pre;
}

/* Icon placeholders */
.ph-icon {
  width: 64px;
  height: 64px;
  background: #e2ddd7;
  border: 1.5px dashed #a09890;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 8px;
  color: #7a7570;
  text-align: center;
  padding: var(--sp-1);
  line-height: 1.4;
}

.ph-icon::before {
  content: attr(data-ph);
}

/* QR placeholder */
.ph-qr {
  width: 120px;
  height: 120px;
  background: #e2ddd7;
  border: 2px dashed #a09890;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 10px;
  color: #7a7570;
  letter-spacing: 0.05em;
}


/* ==========================================================================
   BUTTONS  (skill: cursor-pointer, 44 px min touch target, 150–300 ms ease)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  min-height: 44px;          /* skill: touch-target-size ≥ 44 px */
  padding-inline: var(--sp-10);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease);
  text-decoration: none;
}

.btn--enquiry {
  background: var(--clr-btn-enquiry);
  color: var(--clr-white);
  padding-inline: var(--sp-12);
  min-height: 48px;
}

.btn--enquiry:hover { background: var(--clr-btn-enquiry-hover); }

.btn--dark {
  background: var(--clr-btn-dark);
  color: var(--clr-white);
}


.btn--block {
  display: flex;
  width: 100%;
  margin-top: var(--sp-2);
}


/* ==========================================================================
   SITE HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F7F7F0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding: 20px 60px;
}

.site-header__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.site-header__links a {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-btn-dark);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.site-header__links a:hover,
.site-header__links a.is-active {
  color: #A39542;
}

.site-header__links a.is-active { font-weight: 600; }

.site-header__logo-link {
  flex-shrink: 0;
  margin: 0 48px;
}

.site-header__logo { height: 56px; width: auto; display: block; }

.site-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-btn-dark);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.site-header__hamburger i { font-size: 28px; }

/* Mobile full-screen overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #F7F7F0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-btn-dark);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay__close i { font-size: 28px; }

.nav-overlay__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.nav-overlay__links a {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  color: var(--clr-btn-dark);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.nav-overlay__links a:hover { color: #A39542; }

@media (max-width: 768px) {
  .site-header__nav {
    padding: 16px 24px;
    position: relative;
  }
  .site-header__links    { display: none; }
  .site-header__logo-link { margin: 0 auto; }
  .site-header__hamburger {
    display: flex;
    position: absolute;
    right: 24px;
  }
}


/* ==========================================================================
   SHARED SECTION HEADING — all section titles standardised here
   ========================================================================== */
.section-title,
.about__title,
.amenities__title,
.floor-plans__title,
.contact__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #A39542;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

@media (max-width: 768px) {
  .section-title,
  .about__title,
  .amenities__title,
  .floor-plans__title,
  .contact__title {
    font-size: 32px;
  }
}


/* ==========================================================================
   1. HERO
   ========================================================================== */


/* ==========================================================================
   2. ABOUT US
   ========================================================================== */
.about {
  background: #F7F7F0;
  padding: 80px 0;
}

.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}


.about__body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 16px;
}

.about__body:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .about { padding: 60px 0; }
  .about__inner { padding: 0 24px; }
  .about__body { font-size: 16px; }
}


/* ==========================================================================
   3. AMENITIES
   ========================================================================== */
.amenities {
  background: #FFFFFF;
  padding: 80px 48px;
}

.amenities__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left: image + gold accent line */
.amenities__img-col {
  flex: 0 0 45%;
  position: relative;
  z-index: 1;
}

.amenities__img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 0 0 120px 0;
  display: block;
  position: relative;
  z-index: 2;
}

.amenities__accent {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 9px;
  height: 50%;
  background: #A39542;
  box-shadow: 2px 0 8px rgba(163, 149, 66, 0.2);
  z-index: -1;
}

/* Right: content */
.amenities__content {
  flex: 1;
  padding-top: 8px;
}


.amenities__desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 16px;
}

.amenities__desc:last-of-type {
  margin-bottom: 48px;
}

/* 3 × 2 icon grid */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 32px;
  column-gap: 48px;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.amenity__icon-box {
  width: 80px;
  height: 80px;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  cursor: default;
}

.amenity__icon-box:hover { transform: translateY(-4px); }

.amenity__icon-box i {
  font-size: 52px;
  color: var(--clr-btn-dark);
}

.amenity__label {
  margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-btn-dark);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .amenities { padding: 60px 24px; }
  .amenities__inner { flex-direction: column; gap: 40px; }
  .amenities__img-col { flex: none; width: 100%; }
  .amenities__img { height: 300px; border-radius: 0 40px 40px 0; }
  .amenities__accent { right: -8px; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
}


/* ==========================================================================
   4. INTERIOR FEATURES
   ========================================================================== */
.interior {
  display: grid;
  grid-template-columns: 45fr 55fr;
  height: 580px;
}

.interior__img-col {
  overflow: hidden;
}

.interior__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interior__panel {
  position: relative;
  background: #7A8B5C url('../assets/images/interior-building.webp') center center / cover no-repeat;
}

.interior__panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122, 139, 92, 0.92);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interior__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 48px;
}

.interior__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 0;
}

.interior__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.interior__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.interior__list li i {
  font-size: 16px;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}

.interior__list li span {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .interior { grid-template-columns: 1fr; height: auto; }
  .interior__img-col { height: 280px; }
  .interior__panel { background: #7A8B5C; background-image: none; }
  .interior__panel-overlay {
    position: relative;
    inset: auto;
    background: #7A8B5C;
    padding: 40px 24px;
  }
  .interior__heading { font-size: 16px; letter-spacing: 1.5px; margin-bottom: 32px; }
  .interior__grid { grid-template-columns: 1fr; row-gap: 16px; }
}


/* ==========================================================================
   5. FLOOR PLANS
   ========================================================================== */
.floorplans {
  background: #FFFFFF;
  padding: 80px 48px;
}

.floorplans__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.floorplans__title {
  margin-bottom: 40px;
  text-align: left;
}

.floorplans__carousel-wrapper {
  max-width: 1310px;
  margin: 0 auto 24px;
  padding: 0 80px;
}

.floorplans__carousel-inner {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
}

.floorplans__carousel {
  background: #F7F7F0;
  overflow: hidden;
  width: 100%;
}

.floorplans__track {
  display: flex;
  transition: transform 300ms ease;
}

.floorplans__slide {
  flex: 0 0 100%;
}

.floorplans__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Arrow buttons */
.floorplans__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 2;
}

.floorplans__arrow--prev { left: -72px; }
.floorplans__arrow--next { right: -72px; }

.floorplans__arrow i {
  font-size: 20px;
  color: #333333;
  transition: color 0.3s ease;
}

.floorplans__arrow:hover { background: #A39542; }
.floorplans__arrow:hover i { color: #ffffff; }

/* Dots */
.floorplans__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 0;
}

.floorplans__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D0D0D0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.2s ease, height 0.2s ease;
}

.floorplans__dot.active {
  background: #A39542;
  width: 10px;
  height: 10px;
}

/* Download buttons */
.floorplans__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.fp-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--clr-btn-dark);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.fp-btn:hover { background: #A39542; }

@media (max-width: 768px) {
  .floorplans { padding: 60px 24px; }
  .floorplans__carousel-wrapper { padding: 0; }
  .floorplans__arrow { width: 36px; height: 36px; }
  .floorplans__arrow--prev { left: 8px; }
  .floorplans__arrow--next { right: 8px; }
  .floorplans__actions { flex-direction: column; align-items: center; }
  .fp-btn { width: 100%; max-width: 280px; justify-content: center; }
}


/* ==========================================================================
   6. CONTACT US
   ========================================================================== */
.contact {
  background: #FFFFFF;
  padding: 80px 48px;
}

.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact__title {
  margin-bottom: 16px;
}

.contact__subtext {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  max-width: 900px;
  margin-bottom: 48px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Column 1: Form */
.contact__form-col {
  background: #F0F0F0;
  padding: 24px;
  border-radius: 4px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  background: #FFFFFF;
  border: 1px solid #D0D0D0;
  border-radius: 3px;
  padding: 14px 16px;
  min-height: 44px;
  outline: none;
  appearance: none;
  transition: border-color 0.2s ease;
}

.contact__form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #AAAAAA;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #A39542;
}

.contact__form input.is-error,
.contact__form textarea.is-error {
  border-color: #c0392b;
  background-color: #fef5f4;
}

.contact__form input.is-error:focus,
.contact__form textarea.is-error:focus {
  border-color: #c0392b;
}

.contact__submit {
  padding: 12px 32px;
  background: var(--clr-btn-dark);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s ease;
}

.contact__submit:hover { background: #A39542; }

/* Columns 2 & 3: Address blocks */
.contact__col {
  padding-top: 4px;
}

.contact__col-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--clr-btn-dark);
  margin-bottom: 12px;
}

.contact__col-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-style: normal;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact__col-text--spaced { margin-bottom: 32px; }

.contact__rera {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--clr-btn-dark);
  margin-bottom: 0;
}

.contact__qr {
  margin-top: 16px;
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}

.contact__links {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}

.contact__links a {
  color: #A39542;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.contact__links a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .contact { padding: 60px 24px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}



.hero {
  display: grid;
  grid-template-columns: 49% 51%;
  height: 580px;
}

.hero__panel--left {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__panel--left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__panel--right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 40px;
  background: #8A9D6C url('../assets/images/hero_bg.webp') center center / cover no-repeat;
}

.hero__logo {
  max-width: 380px;
  height: auto;
  display: block;
}

.hero__tagline {
  text-align: center;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: #ffffff;
  line-height: 1.4;
}

.hero__cta {
  display: inline-block;
  padding: 14px 40px;
  background: #8C6A42;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero                { grid-template-columns: 1fr; height: auto; }
  .hero__panel--left   { height: 55vw; min-height: 240px; }
  .hero__panel--right  { padding: 40px 32px; }
  .hero__logo          { max-width: 260px; }
}

@media (max-width: 480px) {
  .hero__logo    { max-width: 200px; }
  .hero__tagline { font-size: 16px; }
  .hero__cta     { padding: 12px 28px; }
}
