/* ============================================
   THE ABBOTSFORD — Global Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-bg-primary: #2d3440;
  --color-bg-secondary: #1e232c;
  --color-gold: #c9a96e;
  --color-gold-light: #e2c99a;
  --color-white: #ffffff;
  --color-white-muted: rgba(255, 255, 255, 0.7);
  --color-border: rgba(201, 169, 110, 0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  --section-padding: 120px 0;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-white);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}


/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav--transparent {
  background-color: transparent;
}

.nav--solid {
  background-color: rgba(30, 35, 44, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.nav__brand:hover .nav__brand-name {
  color: var(--color-gold-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-gold-light);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Mobile menu toggle */
.nav__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-white);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__menu-toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__menu-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__menu-toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--color-bg-secondary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav__mobile-overlay--visible {
  display: flex;
  opacity: 1;
}

.nav__mobile-overlay .nav__link {
  font-size: 1rem;
  letter-spacing: 0.2em;
}


/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-1.5%, -1%);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(30, 35, 44, 0.3) 0%,
      rgba(30, 35, 44, 0.1) 40%,
      rgba(30, 35, 44, 0.15) 60%,
      rgba(30, 35, 44, 0.7) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.hero__bird-logo {
  width: 160px;
  height: auto;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeIn 1.2s ease forwards 0.3s;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeIn 1.2s ease forwards 0.6s;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 0.9s;
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-gold-light);
  margin-bottom: 10px;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 1.1s;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero__sub-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 1.4s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 1.8s;
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}


/* ============================================
   PARTNER LOGOS STRIP
   ============================================ */

.partners {
  background-color: var(--color-bg-secondary);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--color-border);
}

.partners__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white-muted);
}

.partners__logos {
  display: flex;
  align-items: center;
  gap: 32px;
}

.partners__logo {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.partners__logo--cdh {
  width: auto;
  height: 62px;
}

.partners__divider {
  width: 1px;
  height: 32px;
  background-color: var(--color-border);
}


/* ============================================
   ABOUT THE DEVELOPMENT
   ============================================ */

.about {
  background-color: var(--color-bg-primary);
}

/* --- Intro --- */
.about__intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 32px 100px;
  text-align: center;
}

.about__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.about__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 24px;
}

.about__divider {
  width: 50px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 0 auto 28px;
}

.about__description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-white-muted);
}

/* --- Four Pillars --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--color-border);
  max-width: 1200px;
  margin: 0 auto 120px;
}

.pillars__item {
  background-color: var(--color-bg-primary);
  padding: 60px 36px;
  text-align: center;
  transition: background-color 0.4s ease;
}

.pillars__item:hover {
  background-color: var(--color-bg-secondary);
}

.pillars__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 28px;
}

.pillars__icon svg {
  width: 100%;
  height: 100%;
}

.pillars__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--color-gold-light);
  margin-bottom: 16px;
}

.pillars__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-white-muted);
}

/* --- Cinematic image break --- */
.about__image-break {
  position: relative;
  width: 100%;
  height: 60vh;
  height: 60svh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image-break-container {
  position: absolute;
  inset: 0;
}

.about__image-break-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease-out;
}

.about__image-break:hover .about__image-break-img {
  transform: scale(1.05);
}

.about__image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 35, 44, 0.4) 0%,
    rgba(30, 35, 44, 0.2) 40%,
    rgba(30, 35, 44, 0.5) 100%
  );
}

.about__image-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* --- Features Grid --- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px;
  gap: 48px;
}

.features__item {
  padding: 0 8px;
}

.features__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--color-border);
  margin-bottom: 20px;
  line-height: 1;
}

.features__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-gold-light);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.features__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-white-muted);
}

/* --- Location — full-bleed cinematic --- */
.about__location {
  position: relative;
  width: 100%;
  height: 70vh;
  height: 70svh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__location-bg {
  position: absolute;
  inset: 0;
}

.about__location-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
}

.about__location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 35, 44, 0.85) 0%,
    rgba(30, 35, 44, 0.6) 50%,
    rgba(30, 35, 44, 0.3) 100%
  );
}

.about__location-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 60px;
  margin-right: auto;
  margin-left: 8%;
}

.about__location-content .about__divider {
  margin: 0 0 28px;
}


/* ============================================
   GALLERY — Cinematic Carousel
   ============================================ */

.gallery {
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.gallery__intro {
  text-align: center;
  padding: 140px 32px 80px;
}

/* --- Carousel --- */
.carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  height: 80svh;
  min-height: 500px;
  overflow: hidden;
}

.carousel__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-secondary);
}

/* --- Slides --- */
.carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.carousel__slide--active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.carousel__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.carousel__slide--active .carousel__img {
  transform: scale(1.08);
}

.carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 35, 44, 0.65) 0%,
    rgba(30, 35, 44, 0) 50%
  );
}

/* --- Caption --- */
.carousel__caption {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.carousel__slide--active .carousel__caption {
  opacity: 1;
  transform: translateY(0);
}

.carousel__caption-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.carousel__caption-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--color-gold-light);
}

/* --- Arrows --- */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  line-height: 1;
}

.carousel__arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(30, 35, 44, 0.5);
}

.carousel__arrow--prev {
  left: 32px;
}

.carousel__arrow--next {
  right: 32px;
}

/* --- Dots --- */
.carousel__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
  max-width: calc(100vw - 48px);
  justify-content: center;
}

.carousel__dot {
  width: 32px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.4s ease, width 0.4s ease;
}

.carousel__dot--active {
  background-color: var(--color-gold);
  width: 48px;
}

/* --- Counter --- */
.carousel__counter {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.carousel__counter-current {
  color: var(--color-gold-light);
  font-size: 1.2rem;
  font-weight: 400;
}

.carousel__counter-sep {
  color: var(--color-border);
  margin: 0 2px;
}

.carousel__counter-total {
  color: var(--color-white-muted);
}


/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(20, 24, 30, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img-container {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.lightbox--open .lightbox__img {
  opacity: 1;
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 2001;
}

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

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-white-muted);
  font-size: 3rem;
  cursor: pointer;
  padding: 16px;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 2001;
}

.lightbox__prev {
  left: 20px;
}

.lightbox__next {
  right: 20px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--color-gold);
}

.lightbox__caption {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-white-muted);
  letter-spacing: 0.04em;
}

.lightbox__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
}

.lightbox__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.lightbox__download:hover {
  border-color: var(--color-gold);
  background-color: rgba(201, 169, 110, 0.15);
  color: var(--color-gold-light);
}


/* ============================================
   FLOOR PLANS
   ============================================ */

.floorplans {
  background-color: var(--color-bg-primary);
}

.floorplans__intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 32px 60px;
  text-align: center;
}

/* --- Tabs --- */
.floorplans__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
}

.floorplans__tab {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-white-muted);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.floorplans__tab:first-child {
  border-right: none;
}

.floorplans__tab:hover {
  color: var(--color-white);
  border-color: var(--color-gold);
}

.floorplans__tab--active {
  background-color: rgba(201, 169, 110, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

/* --- Unit panels --- */
.floorplans__unit {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.floorplans__unit--active {
  display: block;
}

.floorplans__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Visual / image side */
.floorplans__visual {
  position: relative;
}

.floorplans__image-wrap {
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.floorplans__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s ease;
}

.floorplans__image-wrap:hover .floorplans__img {
  transform: scale(1.03);
}

.floorplans__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.floorplans__view-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

.floorplans__site-plan-actions {
  text-align: center;
  margin-top: 24px;
}

/* Specs side */
.floorplans__specs {
  padding-top: 12px;
}

.floorplans__unit-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 8px;
}

.floorplans__area {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.floorplans__spec-group {
  margin-bottom: 36px;
}

.floorplans__spec-heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.floorplans__spec-list {
  display: flex;
  flex-direction: column;
}

.floorplans__spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.floorplans__spec-row dt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-white-muted);
}

.floorplans__spec-row dd {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-white);
}

.floorplans__spec-row--total {
  border-bottom: none;
  border-top: 1px solid var(--color-border);
  margin-top: 4px;
  padding-top: 14px;
}

.floorplans__spec-row--total dt,
.floorplans__spec-row--total dd {
  color: var(--color-gold-light);
  font-weight: 500;
}

.floorplans__feature-list {
  list-style: none;
}

.floorplans__feature-list li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-white-muted);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.floorplans__feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background-color: var(--color-gold);
}

/* --- Site Development Plan --- */
.floorplans__site-plan {
  margin-top: 120px;
  padding: 0 32px 140px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.floorplans__site-plan-header {
  text-align: center;
  margin-bottom: 48px;
}

.floorplans__site-plan-image {
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
}

.floorplans__site-plan-img {
  width: 100%;
  height: auto;
  display: block;
}


/* ============================================
   INVESTMENT PORTFOLIO
   ============================================ */
.investment {
  background-color: var(--color-bg-secondary);
}

.investment__intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 32px 60px;
  text-align: center;
}

.investment__table-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  overflow-x: auto;
}

.investment__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.investment__table thead th {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}

.investment__table tbody tr {
  transition: background-color 0.3s ease;
}

.investment__table tbody tr:hover {
  background-color: rgba(201, 169, 110, 0.06);
}

.investment__table tbody td {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-white-muted);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.investment__table tbody td:first-child {
  color: var(--color-white);
  font-weight: 400;
}

.investment__table tbody td.investment__cell-action {
  color: var(--color-white-muted);
  font-weight: 300;
  text-align: right;
  padding-right: 12px;
  white-space: nowrap;
}

.investment__table tbody td:nth-child(4) {
  color: var(--color-gold-light);
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.investment__th-action {
  width: 1%;
}

.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;
}

.investment__enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.investment__enquire span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.investment__enquire:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background-color: rgba(201, 169, 110, 0.06);
}

.investment__enquire:hover span {
  transform: translateX(4px);
}

.investment__enquire:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 3px;
}

.investment__footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 32px 140px;
  text-align: center;
}

.investment__note {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.investment__note--muted {
  color: var(--color-white-muted);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 12px;
}


/* ============================================
   ADDITIONAL SERVICES
   ============================================ */
.services {
  position: relative;
  min-height: 80vh;
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.services__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 35, 44, 0.85) 0%,
    rgba(30, 35, 44, 0.7) 50%,
    rgba(30, 35, 44, 0.9) 100%
  );
  z-index: 1;
}

.services__content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 140px 32px;
  text-align: center;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
  text-align: left;
}

.services__card {
  padding: 48px 40px;
  border: 1px solid var(--color-border);
  background: rgba(30, 35, 44, 0.5);
  backdrop-filter: blur(8px);
  transition: border-color 0.4s ease, background-color 0.4s ease;
}

.services__card:hover {
  border-color: var(--color-gold);
  background: rgba(30, 35, 44, 0.7);
}

.services__card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}

.services__card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.services__card-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-white-muted);
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  background-color: var(--color-bg-primary);
}

.contact__intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 32px 60px;
  text-align: center;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 140px;
  align-items: start;
}

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

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

.contact__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact__input {
  width: 100%;
  max-width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-white);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.contact__input:focus {
  border-bottom-color: var(--color-gold);
}

.contact__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact__select {
  cursor: pointer;
  background-color: transparent;
}

.contact__select option {
  background-color: var(--color-bg-secondary);
  color: var(--color-white);
}

.contact__textarea {
  resize: vertical;
  min-height: 100px;
  border: 1px solid var(--color-border);
  padding: 16px;
}

.contact__textarea:focus {
  border-color: var(--color-gold);
}

.contact__submit {
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: transparent;
  border: 1px solid var(--color-gold);
  padding: 18px 48px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact__submit:hover {
  background-color: var(--color-gold);
  color: var(--color-bg-secondary);
}

.contact__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact__status {
  min-height: 1.4em;
  margin: -12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact__status--success {
  color: #9fd6b3;
}

.contact__status--error {
  color: #f2a5a5;
}

/* Agent cards */
.contact__agents {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 12px;
}

.contact__agent {
  padding: 40px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.contact__agent-logo {
  width: 280px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

.contact__agent-logo--cdh {
  width: auto;
  max-width: 220px;
  margin: 0 auto 24px;
}

.contact__agent-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 8px;
}

.contact__agent-detail {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact__agent-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__agent-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.contact__agent-person:first-child {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.contact__agent-person-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 10px 22px;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.contact__whatsapp:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background-color: rgba(201, 169, 110, 0.06);
}

.contact__whatsapp:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 3px;
}

.contact__whatsapp-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.contact__social {
  padding: 32px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.contact__social-heading {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.contact__social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 48px;
  text-align: center;
}

.footer__brand {
  margin-bottom: 48px;
}

.footer__bird-logo {
  width: 56px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  opacity: 0.7;
}

.footer__brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 8px;
}

.footer__brand-tagline {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-white-muted);
  letter-spacing: 0.06em;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.footer__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: -16px 0 48px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  background-color: transparent;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background-color: rgba(201, 169, 110, 0.06);
}

.social-link:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 3px;
}

.social-link__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link__icon--stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}

.footer__partner-logo {
  width: 190px;
  height: auto;
  opacity: 0.8;
}

.footer__partner-logo--cdh {
  width: auto;
  height: 55px;
}

.footer__logo-divider {
  width: 1px;
  height: 32px;
  background-color: var(--color-border);
}

.footer__legal {
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer__legal p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--color-white-muted);
  line-height: 1.8;
  letter-spacing: 0.04em;
}


/* ============================================
   FREQUENTLY ASKED QUESTIONS
   ============================================ */
.faq {
  background-color: var(--color-bg-primary);
}

.faq__intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 32px 60px;
  text-align: center;
}

.faq__list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq__item {
  border-top: 1px solid var(--color-border);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: inherit;
  transition: background-color 0.4s ease;
}

.faq__trigger:hover {
  background-color: rgba(201, 169, 110, 0.04);
}

.faq__trigger:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: -1px;
}

.faq__number {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  min-width: 44px;
}

.faq__question {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  letter-spacing: 0.01em;
  color: var(--color-white);
  line-height: 1.4;
}

.faq__toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-gold);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.faq__toggle::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq__item--open .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__item--open .faq__question {
  color: var(--color-gold-light);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
}

.faq__item--open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  padding: 0 8px 0 80px;
}

.faq__item--open .faq__answer-inner {
  padding-bottom: 36px;
}

.faq__answer-inner p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-white-muted);
}

.faq__answer-inner p + p {
  margin-top: 16px;
}

.faq__bullets {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.faq__bullets li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-white-muted);
}

.faq__bullets li + li {
  margin-top: 8px;
}

.faq__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 10px;
  height: 1px;
  background-color: var(--color-gold);
}

.faq__bullets--ordered {
  counter-reset: faq-step;
}

.faq__bullets--ordered li {
  padding-left: 32px;
  counter-increment: faq-step;
}

.faq__bullets--ordered li::before {
  content: counter(faq-step, decimal-leading-zero);
  width: auto;
  height: auto;
  top: 0;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  line-height: 1.85;
}

.faq__footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 32px 140px;
  text-align: center;
}

.faq__footer-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-white-muted);
  margin-bottom: 24px;
}

.faq__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-border);
  padding: 14px 28px;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.faq__footer-cta span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq__footer-cta:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background-color: rgba(201, 169, 110, 0.06);
}

.faq__footer-cta:hover span {
  transform: translateX(4px);
}


/* ============================================
   SCROLL REVEAL ANIMATIONS (Global)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 35, 44, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease,
              border-color 0.3s ease, background-color 0.3s ease;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.15);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav {
    padding: 0 32px;
  }

  .nav__links {
    gap: 24px;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
  }

  .floorplans__layout {
    gap: 48px;
  }

  .services__grid {
    gap: 36px;
  }

  .services__card {
    padding: 40px 32px;
  }

  .contact__layout {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav {
    padding: 0 20px;
  }

  .nav__links {
    display: none;
  }

  .nav__menu-toggle {
    display: block;
  }

  .nav__brand-name {
    font-size: 1rem;
  }

  .hero__bird-logo {
    width: 120px;
  }

  .partners__logos {
    gap: 24px;
  }

  .partners__logo {
    width: 150px;
    height: auto;
  }

  .partners__logo--cdh {
    width: auto;
    height: 46px;
  }

  .hero__content {
    padding: 0 20px;
  }

  .about__intro {
    padding: 100px 24px 80px;
  }

  .pillars {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }

  .pillars__item {
    padding: 48px 32px;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }

  .about__location {
    height: 60vh;
    min-height: 400px;
  }

  .about__location-overlay {
    background: linear-gradient(
      to top,
      rgba(30, 35, 44, 0.9) 0%,
      rgba(30, 35, 44, 0.5) 60%,
      rgba(30, 35, 44, 0.3) 100%
    );
  }

  .about__location-content {
    margin-left: 0;
    padding: 40px 24px;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .gallery__intro {
    padding: 100px 24px 60px;
  }

  .carousel {
    height: 60vh;
    min-height: 400px;
  }

  .carousel__caption {
    bottom: 80px;
    left: 24px;
  }

  .carousel__caption-text {
    font-size: 1.2rem;
  }

  .carousel__arrow {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .carousel__arrow--prev { left: 16px; }
  .carousel__arrow--next { right: 16px; }

  .carousel__counter {
    bottom: 80px;
    right: 24px;
  }

  .carousel__dots {
    bottom: 24px;
    gap: 6px;
  }

  .carousel__dot {
    width: 14px;
  }

  .carousel__dot--active {
    width: 22px;
  }

  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__prev,
  .lightbox__next { font-size: 2rem; }

  .floorplans__intro {
    padding: 100px 24px 48px;
  }

  .floorplans__tabs {
    margin-bottom: 48px;
  }

  .floorplans__tab {
    padding: 14px 24px;
    font-size: 0.7rem;
  }

  .floorplans__unit {
    padding: 0 20px;
  }

  .floorplans__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .floorplans__site-plan {
    padding: 0 20px 100px;
    margin-top: 80px;
  }

  .investment__intro {
    padding: 100px 24px 48px;
  }

  .investment__table-wrap {
    padding: 0 20px;
  }

  .investment__table thead th {
    padding: 12px 14px;
    font-size: 0.65rem;
  }

  .investment__table tbody td {
    padding: 12px 14px;
    font-size: 0.8rem;
  }

  .investment__enquire {
    padding: 8px 12px;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .investment__footer {
    padding: 40px 24px 100px;
  }

  .services__content {
    padding: 100px 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services__card {
    padding: 36px 28px;
  }

  .contact__intro {
    padding: 100px 24px 48px;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 0 24px 100px;
  }

  .faq__intro {
    padding: 100px 24px 48px;
  }

  .faq__list {
    padding: 0 24px;
  }

  .faq__trigger {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    padding: 24px 4px;
  }

  .faq__number {
    min-width: 36px;
    font-size: 0.65rem;
  }

  .faq__answer-inner {
    padding-left: 54px;
    padding-right: 4px;
  }

  .faq__footer {
    padding: 40px 24px 100px;
  }

  .footer__inner {
    padding: 60px 24px 40px;
  }

  .footer__nav {
    gap: 20px;
  }

  .footer__logos {
    gap: 24px;
  }

  .footer__partner-logo {
    width: 145px;
    height: auto;
  }

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

  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .hero__sub-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero__bird-logo {
    width: 96px;
    margin-bottom: 24px;
  }

  .partners {
    padding: 36px 20px;
  }

  .partners__logos {
    gap: 16px;
  }

  .partners__logo {
    width: 120px;
    height: auto;
  }

  .partners__logo--cdh {
    width: auto;
    height: 36px;
  }

  .carousel__caption {
    bottom: 70px;
    left: 16px;
    gap: 10px;
  }

  .carousel__caption-text {
    font-size: 1rem;
  }

  .carousel__counter {
    bottom: 70px;
    right: 16px;
    font-size: 0.7rem;
  }

  .floorplans__tabs {
    flex-wrap: wrap;
    gap: 0;
  }

  .floorplans__tab {
    padding: 12px 16px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .floorplans__unit-title {
    font-size: 1.6rem;
  }

  .investment__table thead th,
  .investment__table tbody td {
    padding: 10px 10px;
    font-size: 0.72rem;
  }

  .investment__enquire {
    padding: 7px 10px;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    gap: 6px;
  }

  .footer__nav {
    gap: 14px 18px;
  }

  .footer__partner-logo {
    width: 120px;
    height: auto;
  }

  .footer__partner-logo--cdh {
    width: auto;
    height: 34px;
  }

  .faq__trigger {
    gap: 14px;
    padding: 22px 2px;
  }

  .faq__number {
    min-width: 32px;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }

  .faq__question {
    font-size: 1.05rem;
  }

  .faq__answer-inner {
    padding-left: 46px;
  }

  .faq__answer-inner p,
  .faq__bullets li {
    font-size: 0.88rem;
  }

  .faq__footer-cta {
    padding: 12px 22px;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
  }
}
