  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #9E7A2A;
    --cream: #F5EEDC;
    --cream-dark: #D9C896;
    --dark: #1A1A18;
    --dark-mid: #2C2C28;
    --dark-light: #3E3D37;
    --text-body: #EFE6D1;
    --text-muted: #C9BEA3;
    --white: #FFFFFF;
    --green-black: #06130d;
    --green-deep: #092014;
    --green: #0f3422;
    --green-mid: #17452e;
    --green-soft: #243f2f;
    --green-panel: #0b2518;
    --green-panel-light: #123722;
    --ivory: #F7F1E5;
    --champagne: #D8CA9A;
    --nav-h: 80px;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --black: #11110f;
    --black-light: #1f1f1b;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-body);
    background:
      linear-gradient(135deg, rgba(247, 241, 229, 0.035) 0 1px, transparent 1px 42px),
      radial-gradient(circle at 18% 18%, rgba(39, 84, 52, 0.28), transparent 34%),
      linear-gradient(145deg, var(--green), var(--green-black) 76%);
    color: var(--ivory);
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(8, 35, 23, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.34);
    transition: all 0.4s ease;
  }

  nav.scrolled {
    height: 64px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.24);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
  }

  .nav-logo img {
    display: block;
    width: 138px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
  }

  .nav-logo .logo-main {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--ivory);
    letter-spacing: 1px;
  }

  .nav-logo .logo-sub {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 2px;
  }

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

  .nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
  }

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

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

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

  .nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 10px 24px !important;
    letter-spacing: 1px !important;
    transition: background 0.3s !important;
  }

  .nav-cta::after {
    display: none !important;
  }

  .nav-cta:hover {
    background: var(--gold-dark) !important;
    color: var(--white) !important;
  }

  .nav-phone {
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--gold-light);
    transition: all 0.3s;
  }

  /* ─── HERO ─── */
  #hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-video-bg {
    position: absolute;
    inset: 0;
    background-image: url('./images/Palash Homes Creative/AERIAL.jpg.jpeg');
    background-size: cover;
    background-position: center top;
    overflow: hidden;
  }

  .hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-video-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(6, 24, 16, 0.26) 0%, rgba(8, 35, 23, 0.54) 60%, rgba(6, 24, 16, 0.9) 100%),
      radial-gradient(circle at 50% 34%, rgba(201, 168, 76, 0.12), transparent 42%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
  }

  .hero-tagline {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 16px 40px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
  }

  .btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 15px 40px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
  }

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

  .hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s 1.5s forwards;
    opacity: 0;
  }

  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s infinite;
  }

  @keyframes scrollPulse {

    0%,
    100% {
      opacity: 0.5;
      transform: scaleY(1);
    }

    50% {
      opacity: 1;
      transform: scaleY(0.7);
      transform-origin: top;
    }
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  /* ─── DIVIDER ─── */
  .section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
  }

  .section-divider-short {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto 0;
  }

  /* ─── SECTION BASE ─── */
  section {
    padding: 100px 5%;
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 12px;
    display: block;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brochure-emerald-deep);
  }

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

  /* ─── STATS / JOURNEY ─── */
  #journey {
    background: var(--dark);
    padding: 80px 5%;
  }

  .journey-header {
    text-align: center;
    margin-bottom: 60px;
  }

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

  .journey-header .section-label {
    color: var(--gold-light);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.2);
  }

  .stat-item {
    background: var(--dark-mid);
    padding: 40px 30px;
    text-align: center;
    transition: background 0.3s;
  }

  .stat-item:hover {
    background: var(--dark-light);
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    opacity: 0.7;
  }

  .stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-unit {
    font-size: 14px;
    color: var(--gold);
    font-weight: 300;
    display: block;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
  }

  /* ─── ABOUT ─── */
  #about {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 5%;
  }

  .about-visual {
    position: relative;
    aspect-ratio: 4/3;
    max-height: 600px;
  }

  .about-img-main {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-image: url('./images/Palash Homes Creative/P_3.jpg.jpeg');
    background-size: cover;
    background-position: center;
  }

  .about-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 21, 18, 0.1) 0%, rgba(26, 21, 18, 0.35) 100%);
  }

  .about-img-accent {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 55%;
    aspect-ratio: 1;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .about-img-accent span:first-child {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
  }

  .about-img-accent span:last-child {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
  }

  .about-content {}

  .about-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
    margin: 24px 0 36px;
    font-weight: 300;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .feature-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
  }

  .feature-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.5;
  }

  .btn-gold-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: gap 0.3s;
  }

  .btn-gold-text:hover {
    gap: 16px;
  }

  .btn-gold-text::after {
    content: '→';
    font-size: 16px;
  }

  /* ─── PROJECTS ─── */
  #projects {
    background: var(--white);
  }

  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .project-tabs {
    display: flex;
    gap: 0;
    border: 1px solid var(--cream-dark);
  }

  .project-tab {
    padding: 10px 24px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--white);
    color: var(--text-muted);
    border: none;
    transition: all 0.3s;
  }

  .project-tab.active {
    background: var(--gold);
    color: var(--white);
  }

  .projects-showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 400px 280px;
    gap: 12px;
  }

  .project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-mid);
  }

  .project-card:first-child {
    grid-row: 1 / 3;
  }

  .project-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
  }

  .project-card:hover .project-card-bg {
    transform: scale(1.06);
  }

  .project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 24, 0.9) 0%, rgba(26, 26, 24, 0.2) 60%, transparent 100%);
    transition: background 0.4s;
  }

  .project-card:hover .project-card-overlay {
    background: linear-gradient(to top, rgba(26, 26, 24, 0.95) 0%, rgba(26, 26, 24, 0.4) 70%, rgba(26, 26, 24, 0.1) 100%);
  }

  .project-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px;
  }

  .project-card-type {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    display: block;
  }

  .project-card-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .project-card:first-child .project-card-name {
    font-size: 40px;
  }

  .project-card-detail {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
  }

  .project-card:hover .project-card-detail {
    opacity: 1;
    transform: translateY(0);
  }

  .project-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
  }

  /* Real photo backgrounds for project cards */
  .bg-1 {
    background-image: url('./images/Palash Homes Creative/P_3.jpg.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .bg-2 {
    background-image: url('./images/Palash Homes Creative/IN_7.jpg.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .bg-3 {
    background-image: url('./images/Palash Homes Creative/POOL.jpg.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .bg-4 {
    background-image: url('./images/Palash Homes Creative/GAME_1.jpg.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .bg-5 {
    background-image: url('./images/Palash Homes Creative/P_4.jpg.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* ─── GALLERY ─── */
  #gallery {
    background: var(--white);
    padding: 100px 5%;
  }

  .gallery-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 8px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-mid);
  }

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

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

  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
  }

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

  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 24, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
  }

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

  .gallery-item-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s 0.05s;
  }

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

  .gallery-amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 8px;
    margin-top: 8px;
  }

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

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

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

  @media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }

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

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

    .gallery-amenity-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ─── AMENITIES ─── */
  #amenities {
    background: var(--cream);
    padding: 100px 5%;
  }

  .amenities-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.15);
  }

  @media (max-width: 768px) {
    .amenities-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .custom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  /* Mobile */
  @media (max-width: 768px) {
    .custom-grid {
      grid-template-columns: 1fr;
    }
  }

  .amenity-item {
    background: var(--cream);
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
  }

  .amenity-item:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
  }

  .amenity-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .amenity-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }

  .amenity-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--ivory);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ─── ACCOLADES / AWARDS ─── */
  #awards {
    background: var(--dark);
    padding: 80px 5%;
  }

  .awards-header {
    text-align: center;
    margin-bottom: 60px;
  }

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

  .awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  .award-card {
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 36px 28px;
    text-align: center;
    transition: border-color 0.3s;
    position: relative;
    overflow: hidden;
  }

  .award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .award-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
  }

  .award-card:hover::before {
    opacity: 1;
  }

  .award-year {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .award-org {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .award-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-weight: 300;
  }

  .awards-center {
    text-align: center;
    margin-top: 20px;
  }

  /* ─── TESTIMONIALS ─── */
  #testimonials {
    background: var(--white);
    padding: 100px 5%;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .testimonials-slider {
    position: relative;
    overflow: hidden;
  }

  .testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .testimonial-card {
    min-width: calc(33.33% - 16px);
    border: 1px solid var(--cream-dark);
    padding: 40px 36px;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  }

  .testimonial-quote {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 0.5;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
  }

  .testimonial-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 28px;
    font-style: italic;
    font-family: var(--font-display);
  }

  .testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
  }

  .testimonial-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ivory);
  }

  .testimonial-project {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    align-items: center;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--cream-dark);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--ivory);
    transition: all 0.3s;
    font-family: serif;
  }

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

  .slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .dot {
    width: 6px;
    height: 6px;
    background: var(--cream-dark);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
  }

  .dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 3px;
  }

  /* ─── FAQ ─── */
  #faq {
    background: var(--cream);
    padding: 100px 5%;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    overflow: hidden;
  }

  .faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--ivory);
    transition: color 0.3s;
    user-select: none;
  }

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

  .faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    transition: all 0.3s;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-body);
    font-weight: 300;
    padding: 0;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
  }

  /* ─── CONTACT / CTA ─── */
  #contact {
    background: var(--dark);
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info {}

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

  .contact-info .section-label {
    color: var(--gold-light);
  }

  .contact-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 24px 0 40px;
    font-weight: 300;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-row-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
  }

  .contact-row-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }

  .contact-row-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.5;
  }

  .contact-form {}

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
  }

  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    border-color: var(--gold);
  }

  .form-select {
    cursor: pointer;
  }

  .form-select option {
    background: var(--dark);
  }

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

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 18px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--gold-dark);
  }

  /* ─── PARTNERS ─── */
  #partners {
    background: var(--white);
    padding: 60px 5%;
  }

  .partners-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .partners-track-wrap {
    overflow: hidden;
  }

  .partners-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: marquee 20s linear infinite;
    width: max-content;
  }

  .partners-track:hover {
    animation-play-state: paused;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .partner-logo {
    height: 36px;
    opacity: 0.4;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ivory);
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
    letter-spacing: 1px;
  }

  .partners-track:hover .partner-logo:hover {
    opacity: 0.8;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark-mid);
    padding: 70px 5% 30px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
  }

  .footer-brand .logo-main {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 1px;
  }

  .footer-brand .logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-top: 4px;
  }

  .footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin: 20px 0 28px;
    font-weight: 300;
  }

  .social-links {
    display: flex;
    gap: 12px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
  }

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

  .footer-col-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: var(--gold);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
  }

  .footer-legal a:hover {
    color: var(--gold);
  }

  /* ─── FLOATING CONTACT BUTTONS ─── */
  .float-btn-group {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .float-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(252, 204, 96, 0.2);
    cursor: pointer;
  }

  .float-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white) !important;
    animation: floatInGroup 0.5s 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }

  .float-btn-whatsapp svg {
    width: 26px;
    height: 26px;
    transition: transform 0.4s ease;
  }

  .float-btn-phone {
    background: linear-gradient(135deg, var(--brochure-gold, #C9A84C), var(--brochure-gold-deep, #9E7A2A)) !important;
    color: #1A1204 !important;
    animation: floatInGroup 0.5s 1.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }

  .float-btn-phone i,
  .float-btn-phone svg {
    width: 22px;
    height: 22px;
    transition: transform 0.4s ease;
  }

  .float-btn:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(252, 204, 96, 0.5);
  }

  .float-btn-whatsapp:hover {
    background: linear-gradient(135deg, #2cf477, #15a493);
  }

  .float-btn-whatsapp:hover svg {
    transform: scale(1.1) rotate(15deg);
  }

  .float-btn-phone:hover {
    background: linear-gradient(135deg, #FFE08A, var(--brochure-gold, #C9A84C)) !important;
  }

  .float-btn-phone:hover i,
  .float-btn-phone:hover svg {
    transform: scale(1.1) rotate(10deg);
  }

  /* Elegant Tooltips */
  .float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 72px;
    background: rgba(11, 37, 24, 0.96);
    color: #F8F0DE;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(252, 204, 96, 0.25);
    pointer-events: none;
  }

  .float-btn:hover::before {
    opacity: 1;
    visibility: visible;
    right: 68px;
  }

  @keyframes floatInGroup {
    from {
      opacity: 0;
      transform: translateY(30px) scale(0.7);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* ─── MEDIA SPOTLIGHT ─── */
  #media {
    background: var(--white);
    padding: 80px 5%;
  }

  .media-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .media-card {
    aspect-ratio: 4/3;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
  }

  .media-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .media-source {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 8px;
    letter-spacing: 1px;
  }

  .media-title {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
  }

  .media-date {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
  }

  /* ─── SCROLL REVEAL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    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;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .nav-links {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    #about {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .about-visual {
      max-height: 320px;
    }

    #contact {
      grid-template-columns: 1fr;
      gap: 50px;
    }

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

    .projects-showcase {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }

    .project-card:first-child {
      grid-row: auto;
    }

    .testimonial-card {
      min-width: calc(50% - 12px);
    }

    .media-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    section {
      padding: 70px 5%;
    }

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

    .testimonial-card {
      min-width: 100%;
    }

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

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

    .media-grid {
      grid-template-columns: 1fr;
    }

    .about-features {
      grid-template-columns: 1fr;
    }
  }

  /* ─── INNER PAGE STYLES ─── */

  /* Page Header */
  .page-header {
    height: 60vh;
    min-height: 400px;
    background: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .page-header-bg {
    position: absolute;
    inset: 0;
    background-image: url('./images/Palash Homes Creative/P_3.jpg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: transform 10s linear;
  }

  .page-header:hover .page-header-bg {
    transform: scale(1.1);
  }

  .page-header-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 0 5%;
  }

  .page-header-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    animation: fadeUp 1s ease 0.2s both;
  }

  .page-header-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 300;
    line-height: 1.1;
    animation: fadeUp 1s ease 0.4s both;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Timeline */
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(201, 168, 76, 0.3);
    transform: translateX(-50%);
  }

  .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

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

  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }

  .timeline-item:nth-child(even) {
    left: 50%;
  }

  .timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--cream);
  }

  .timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
  }

  .timeline-year {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
  }

  /* Values Grid */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }

  .value-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--cream-dark);
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--gold);
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold);
    transition: transform 0.4s;
  }

  .value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
  }

  /* Masonry Grid */
  .masonry-grid {
    column-count: 3;
    column-gap: 20px;
  }

  .masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
  }

  .masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
  }

  .masonry-item:hover img {
    transform: scale(1.05);
  }

  .masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 30px;
  }

  .masonry-item:hover .masonry-overlay {
    opacity: 1;
  }

  .masonry-title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px;
    transform: translateY(20px);
    transition: transform 0.4s 0.1s;
  }

  .masonry-item:hover .masonry-title {
    transform: translateY(0);
  }

  /* Tabs */
  .tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .tab-btn {
    background: transparent;
    border: 1px solid var(--cream-dark);
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
  }

  .tab-btn.active,
  .tab-btn:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--ivory);
  }

  .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
  }

  .tab-content.active {
    display: block;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Accordion */
  .accordion-item {
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 20px;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 22px;
    transition: color 0.3s;
  }

  .accordion-header:hover,
  .accordion-item.active .accordion-header {
    color: var(--gold);
  }

  .accordion-icon {
    transition: transform 0.3s;
  }

  .accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-muted);
    line-height: 1.8;
  }

  .accordion-content-inner {
    padding-bottom: 20px;
  }

  /* Contact Split */
  .contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    flex-shrink: 0;
  }

  .contact-info-block h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 5px;
  }

  .contact-info-block p {
    color: var(--text-muted);
    line-height: 1.6;
  }

  @media (max-width: 900px) {
    .timeline::before {
      left: 30px;
    }

    .timeline-item {
      width: 100%;
      left: 0 !important;
      text-align: left !important;
      padding-left: 80px;
    }

    .timeline-dot {
      left: 22px !important;
    }

    .masonry-grid {
      column-count: 2;
    }

    .contact-split {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .masonry-grid {
      column-count: 1;
    }

    .page-header-title {
      font-size: 36px;
    }
  }

  /* --- INNER PAGE OVERHAUL --- */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 24px 5%;
    gap: 20px;
    border-top: 1px solid var(--cream-dark);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
  }

  .inner-section {
    padding: 100px 5%;
  }

  .inner-section.dark {
    background:
      linear-gradient(135deg, rgba(201, 168, 76, 0.09), transparent 32%),
      var(--black);
    color: var(--white);
  }

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

  .inner-section.dark p,
  .inner-section.dark .muted {
    color: rgba(255, 255, 255, 0.68);
  }

  .section-kicker {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
  }

  .centered {
    text-align: center;
  }

  .lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 54px;
    text-align: left;
  }

  .blog-card {
    background: rgba(247, 241, 229, 0.96);
    color: var(--green-black);
    border: 1px solid rgba(201, 168, 76, 0.28);
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  }

  .blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    text-decoration: none;
  }

  .blog-card-body {
    padding: 26px;
  }

  .blog-card-label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .blog-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.05;
    color: var(--green-black) !important;
  }

  .blog-card h3 a {
    color: inherit;
    text-decoration: none;
  }

  .blog-card p {
    color: #4f4a3f;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .inner-section.dark .blog-card h3,
  .inner-section.dark .blog-card h3 a {
    color: var(--green-black) !important;
  }

  .inner-section.dark .blog-card p,
  .inner-section.dark .blog-card .blog-preview {
    color: #4f4a3f !important;
  }

  .blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  }

  .blog-card-featured .blog-card-image {
    min-height: 420px;
    aspect-ratio: auto;
  }

  .blog-card-featured .blog-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 56px);
  }

  .blog-card-featured h3 {
    font-size: clamp(38px, 4.8vw, 62px);
  }

  .blog-preview {
    margin-top: 8px;
  }

  .empty-blog-state {
    grid-column: 1 / -1;
    padding: 38px;
    border: 1px dashed rgba(201, 168, 76, 0.42);
    color: var(--text-muted);
    text-align: center;
  }

  .blog-article-body {
    max-width: 840px;
    margin: 0 auto;
    color: var(--green-black);
  }

  .blog-article-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    margin: 0 0 34px;
    border: 1px solid rgba(201, 168, 76, 0.28);
  }

  .blog-article-body .section-kicker {
    max-width: none;
    color: #615744;
    font-size: 20px;
    margin-bottom: 32px;
  }

  .blog-article-body p {
    color: #302c24;
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 22px;
  }

  @media (max-width: 900px) {
    .blog-card-featured {
      grid-template-columns: 1fr;
    }

    .blog-card-featured .blog-card-image {
      min-height: 260px;
      aspect-ratio: 16 / 10;
    }
  }

  .lux-card {
    position: relative;
    padding: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(201, 168, 76, 0.18);
    min-height: 220px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .lux-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.13), transparent 42%);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .lux-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.75);
    box-shadow: 0 24px 52px rgba(26, 26, 24, 0.1);
  }

  .lux-card:hover::before {
    opacity: 1;
  }

  .lux-card>* {
    position: relative;
    z-index: 1;
  }

  .lux-card h3,
  .plan-card h3,
  .award-feature h3,
  .contact-panel h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .lux-card p {
    color: var(--text-muted);
    line-height: 1.75;
  }

  .lux-icon {
    width: 46px;
    height: 46px;
    color: var(--gold);
    margin-bottom: 22px;
    transition: transform 0.35s ease;
  }

  .lux-card:hover .lux-icon {
    transform: translateY(-3px) scale(1.08);
  }

  .amenity-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 54px;
  }

  .amenity-tile {
    min-height: 300px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
  }

  .amenity-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.16));
  }

  .amenity-tile-content {
    position: relative;
    color: var(--white);
  }

  .amenity-tile h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 8px;
  }

  .nearby-section {
    background:
      linear-gradient(135deg, rgba(201, 168, 76, 0.14), transparent 34%),
      radial-gradient(circle at 86% 18%, rgba(232, 201, 122, 0.16), transparent 26%),
      linear-gradient(135deg, #0d4b2a, #06351e 68%);
    border-top: 1px solid rgba(201, 168, 76, 0.38);
    border-bottom: 1px solid rgba(201, 168, 76, 0.28);
    padding: 74px 5%;
  }

  .nearby-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
  }

  .nearby-heading {
    text-align: center;
    margin-bottom: 36px;
  }

  .nearby-heading .section-title {
    color: var(--ivory) !important;
    font-size: clamp(34px, 4vw, 56px);
  }

  .nearby-heading .section-title em {
    color: var(--gold-light);
  }

  .nearby-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .nearby-item {
    min-height: 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 20px 10px 18px;
    border: 1px solid rgba(232, 201, 122, 0.22);
    background: rgba(3, 39, 22, 0.28);
  }

  .nearby-item svg {
    width: 44px;
    height: 44px;
    color: var(--gold-light);
    stroke-width: 1.8;
    margin-bottom: 14px;
  }

  .nearby-item h3 {
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.05;
    margin: 0;
    max-width: 120px;
  }

  .nearby-item p {
    color: var(--gold-light) !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    margin: 8px 0 0;
  }

  .plan-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 40px;
    align-items: stretch;
  }

  .plan-visual {
    min-height: 440px;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    padding: 28px;
    display: grid;
    place-items: center;
  }

  .plan-diagram {
    width: min(520px, 100%);
    aspect-ratio: 1.2;
    display: grid;
    grid-template-columns: 1fr 0.9fr 1fr;
    grid-template-rows: 1fr 0.8fr 1fr;
    gap: 10px;
  }

  .plan-room {
    border: 1px solid rgba(201, 168, 76, 0.6);
    background: rgba(255, 255, 255, 0.86);
    display: grid;
    place-items: center;
    color: var(--ivory);
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }

  .plan-room.large {
    grid-column: span 2;
  }

  .plan-room.gold {
    background: rgba(201, 168, 76, 0.14);
  }

  .plan-card {
    padding: 40px;
    background: var(--dark);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .plan-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
  }

  .plan-spec {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.74);
  }

  .plan-spec strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
  }

  .download-cta {
    position: sticky;
    bottom: 24px;
    z-index: 50;
    width: fit-content;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    padding: 15px 28px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-size: 11px;
    box-shadow: 0 18px 45px rgba(201, 168, 76, 0.32);
  }

  .award-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 54px;
  }

  .award-feature {
    min-height: 280px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.22);
    color: var(--white);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    transform-style: preserve-3d;
  }

  .award-feature:hover {
    border-color: var(--gold);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  }

  .award-year-badge {
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 38px;
  }

  .quote-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 54px;
  }

  .quote-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .quote-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  }

  .quote-card blockquote {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.35;
    font-weight: 300;
    color: var(--ivory);
  }

  .quote-person {
    margin-top: 30px;
    color: var(--gold-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 11px;
  }

  .faq-page-list {
    max-width: 920px;
    margin: 54px auto 0;
  }

  .faq-page-list .faq-item {
    background: var(--white);
    padding: 0 28px;
    border: 1px solid var(--cream-dark);
    margin-bottom: 14px;
  }

  .faq-page-list .faq-answer {
    color: var(--text-muted);
  }

  .contact-page {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 44px;
    align-items: start;
  }

  .contact-panel {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    padding: 42px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  }

  .contact-panel .form-label {
    color: var(--text-muted);
  }

  .contact-panel .form-input,
  .contact-panel .form-select,
  .contact-panel .form-textarea {
    color: var(--ivory);
    border: 0;
    border-bottom: 1px solid var(--cream-dark);
    background: transparent;
    padding-left: 0;
  }

  .contact-panel .form-input:focus,
  .contact-panel .form-select:focus,
  .contact-panel .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: none;
  }

  .pulse-icon {
    animation: pulseGlow 2.4s ease infinite;
  }

  @keyframes pulseGlow {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.28);
    }

    50% {
      box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
    }
  }

  @media (max-width: 900px) {

    .plan-layout,
    .contact-page {
      grid-template-columns: 1fr;
    }

    .tabs-nav {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 600px) {
    .inner-section {
      padding: 72px 5%;
    }

    .lux-card,
    .contact-panel,
    .plan-card {
      padding: 28px;
    }

    .plan-specs {
      grid-template-columns: 1fr;
    }

    .amenity-tile {
      min-height: 240px;
    }
  }

  /* --- GREEN BRAND THEME --- */
  #projects,
  #gallery,
  #testimonials,
  #partners,
  #media,
  .inner-section,
  section[style*="background:var(--cream)"],
  section[style*="background: var(--cream)"],
  section[style*="background-color: var(--black-light)"] {
    background:
      linear-gradient(135deg, rgba(247, 241, 229, 0.026) 0 1px, transparent 1px 38px),
      radial-gradient(circle at 86% 8%, rgba(201, 168, 76, 0.09), transparent 28%),
      linear-gradient(145deg, var(--green), var(--green-black) 82%) !important;
    color: var(--ivory);
  }

  #about,
  #faq,
  .inner-section.dark,
  #awards,
  #contact {
    background:
      linear-gradient(160deg, rgba(201, 168, 76, 0.11), transparent 34%),
      linear-gradient(135deg, var(--green-panel), var(--green-black) 78%) !important;
    color: var(--ivory);
  }

  .section-title,
  .inner-section .section-title,
  #projects .section-title,
  #gallery .section-title,
  #testimonials .section-title,
  #faq .section-title,
  #media .section-title,
  #partners .section-title {
    color: var(--brochure-emerald-deep);
  }

  .section-kicker,
  .about-text,
  .testimonial-text,
  .faq-answer,
  .media-title,
  .lux-card p,
  .quote-card blockquote,
  .contact-panel .form-label {
    color: rgba(247, 241, 229, 0.76);
  }

  .stat-item,
  .project-tab,
  .amenity-item,
  .testimonial-card,
  .faq-item,
  .media-card,
  .lux-card,
  .quote-card,
  .contact-panel,
  .plan-visual {
    background: rgba(6, 19, 13, 0.7) !important;
    border-color: rgba(216, 202, 154, 0.26) !important;
    color: var(--ivory);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(8px);
  }

  .lux-card h3,
  .quote-card blockquote,
  .contact-panel h3,
  .faq-question,
  .testimonial-name,
  .media-title,
  .plan-room {
    color: var(--ivory);
  }

  .plan-room {
    background: rgba(13, 45, 28, 0.9);
    border-color: rgba(216, 202, 154, 0.34);
  }

  .plan-room.gold {
    background: rgba(201, 168, 76, 0.16);
  }

  .contact-panel .form-input,
  .contact-panel .form-select,
  .contact-panel .form-textarea {
    color: var(--white);
    border-bottom-color: rgba(201, 168, 76, 0.36);
  }

  .contact-panel .form-input::placeholder,
  .contact-panel .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
  }

  .page-header {
    background: var(--green-deep);
  }

  .page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(9, 32, 20, 0.72), rgba(6, 19, 13, 0.86)),
      radial-gradient(circle at 18% 20%, rgba(201, 168, 76, 0.12), transparent 32%);
    pointer-events: none;
  }

  .page-header-content {
    z-index: 2;
  }

  .nav-links.mobile-open {
    background: rgba(6, 19, 13, 0.98);
  }

  @media (max-width: 600px) {
    .nav-logo img {
      width: 112px;
      max-height: 48px;
    }
  }

  /* --- BROCHURE-INSPIRED LUXURY PALETTE FINAL PASS --- */
  :root {
    --brochure-gold: #FCCC60;
    --brochure-gold-deep: #B8872B;
    --brochure-champagne: #F2D887;
    --brochure-ivory: #F8F0DE;
    --brochure-parchment: #EFE0BF;
    --brochure-emerald: #0E3A25;
    --brochure-emerald-deep: #061A10;
    --brochure-emerald-mid: #165334;
    --brochure-leaf: #2F8B51;
    --brochure-ink: #102017;
  }

  body {
    background:
      radial-gradient(circle at 12% 10%, rgba(252, 204, 96, 0.16), transparent 28%),
      radial-gradient(circle at 88% 18%, rgba(47, 139, 81, 0.16), transparent 24%),
      linear-gradient(135deg, var(--brochure-ivory), #E8D7AD 48%, var(--brochure-emerald) 48%, var(--brochure-emerald-deep)) !important;
    color: var(--brochure-ink);
  }

  nav {
    background: rgba(6, 26, 16, 0.94) !important;
    border-bottom-color: rgba(252, 204, 96, 0.44) !important;
  }

  .nav-links a {
    color: rgba(248, 240, 222, 0.86) !important;
  }

  .nav-links a:hover {
    color: var(--brochure-gold) !important;
  }

  .nav-phone {
    color: var(--brochure-champagne) !important;
  }

  .nav-cta,
  .btn-primary,
  .form-submit,
  .download-cta {
    background: linear-gradient(135deg, var(--brochure-gold), var(--brochure-gold-deep)) !important;
    color: #1A1204 !important;
    box-shadow: 0 16px 34px rgba(184, 135, 43, 0.28);
  }

  .btn-primary:hover,
  .form-submit:hover,
  .download-cta:hover {
    background: linear-gradient(135deg, #FFE08A, var(--brochure-gold)) !important;
    color: #1A1204 !important;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(6, 26, 16, 0.22), rgba(6, 26, 16, 0.54) 56%, rgba(6, 26, 16, 0.88)),
      radial-gradient(circle at 50% 38%, rgba(252, 204, 96, 0.18), transparent 38%) !important;
  }

  #journey,
  #amenities,
  #awards,
  #contact,
  .inner-section.dark {
    background:
      linear-gradient(135deg, rgba(252, 204, 96, 0.12), transparent 34%),
      radial-gradient(circle at 85% 8%, rgba(47, 139, 81, 0.28), transparent 24%),
      linear-gradient(145deg, var(--brochure-emerald), var(--brochure-emerald-deep) 78%) !important;
    color: var(--brochure-ivory) !important;
  }

  #about,
  #projects,
  #gallery,
  #testimonials,
  #faq,
  #partners,
  #media,
  .inner-section:not(.dark),
  section[style*="background:var(--cream)"],
  section[style*="background: var(--cream)"] {
    background:
      linear-gradient(135deg, rgba(14, 58, 37, 0.08), transparent 32%),
      radial-gradient(circle at 88% 12%, rgba(252, 204, 96, 0.22), transparent 26%),
      linear-gradient(145deg, var(--brochure-ivory), var(--brochure-parchment)) !important;
    color: var(--brochure-ink) !important;
  }

  #about h1,
  #about h2,
  #about h3,
  #about h4,
  #projects h1,
  #projects h2,
  #projects h3,
  #projects h4,
  #gallery h1,
  #gallery h2,
  #gallery h3,
  #gallery h4,
  #testimonials h1,
  #testimonials h2,
  #testimonials h3,
  #testimonials h4,
  #faq h1,
  #faq h2,
  #faq h3,
  #faq h4,
  #partners h1,
  #partners h2,
  #partners h3,
  #partners h4,
  #media h1,
  #media h2,
  #media h3,
  #media h4,
  .inner-section:not(.dark) h1,
  .inner-section:not(.dark) h2,
  .inner-section:not(.dark) h3,
  .inner-section:not(.dark) h4 {
    color: var(--brochure-emerald-deep) !important;
  }

  #about p,
  #about li,
  #projects p,
  #projects li,
  #gallery p,
  #gallery li,
  #testimonials p,
  #testimonials li,
  #faq p,
  #faq li,
  #partners p,
  #partners li,
  #media p,
  #media li,
  .inner-section:not(.dark) p,
  .inner-section:not(.dark) li {
    color: rgba(16, 32, 23, 0.74) !important;
  }

  #journey h1,
  #journey h2,
  #journey h3,
  #journey h4,
  #amenities h1,
  #amenities h2,
  #amenities h3,
  #amenities h4,
  #awards h1,
  #awards h2,
  #awards h3,
  #awards h4,
  #contact h1,
  #contact h2,
  #contact h3,
  #contact h4,
  .inner-section.dark h1,
  .inner-section.dark h2,
  .inner-section.dark h3,
  .inner-section.dark h4 {
    color: var(--brochure-ivory) !important;
  }

  #journey p,
  #journey li,
  #amenities p,
  #amenities li,
  #awards p,
  #awards li,
  #contact p,
  #contact li,
  .inner-section.dark p,
  .inner-section.dark li {
    color: rgba(248, 240, 222, 0.76) !important;
  }

  .section-label,
  .page-header-subtitle,
  .timeline-year,
  .quote-person,
  .award-year-badge,
  .media-date,
  .stat-unit {
    color: var(--brochure-gold-deep) !important;
  }

  #journey .section-label,
  #amenities .section-label,
  #awards .section-label,
  #contact .section-label,
  .inner-section.dark .section-label,
  .page-header-subtitle {
    color: var(--brochure-gold) !important;
  }

  .section-title em,
  .hero-title em,
  .page-header-title em {
    color: var(--brochure-gold) !important;
  }

  .stat-item,
  #journey .lux-card,
  #amenities .lux-card,
  #awards .lux-card,
  #contact .lux-card,
  .inner-section.dark .lux-card,
  .award-feature,
  .plan-card {
    background: rgba(248, 240, 222, 0.08) !important;
    border-color: rgba(252, 204, 96, 0.36) !important;
    color: var(--brochure-ivory) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  }

  .lux-card,
  .testimonial-card,
  .quote-card,
  .faq-item,
  .media-card,
  .contact-panel,
  .plan-visual,
  .amenity-item {
    background: rgba(255, 250, 238, 0.82) !important;
    border-color: rgba(184, 135, 43, 0.28) !important;
    color: var(--brochure-ink) !important;
    box-shadow: 0 20px 46px rgba(27, 36, 22, 0.12);
  }

  .lux-card h3,
  .testimonial-name,
  .quote-card blockquote,
  .faq-question,
  .media-title,
  .contact-panel h3,
  .plan-room {
    color: var(--brochure-emerald-deep) !important;
  }

  .lux-card p,
  .testimonial-text,
  .testimonial-project,
  .quote-card p,
  .faq-answer,
  .media-card p,
  .contact-panel p,
  .contact-panel .form-label {
    color: rgba(16, 32, 23, 0.68) !important;
  }

  #journey .stat-item h3,
  #journey .stat-item p,
  #journey .stat-label,
  #amenities .lux-card h3,
  #amenities .lux-card p,
  #awards .lux-card h3,
  #awards .lux-card p,
  #contact .contact-info-block h4,
  #contact .contact-info-block p,
  .inner-section.dark .lux-card h3,
  .inner-section.dark .lux-card p,
  .award-feature h3,
  .award-feature p,
  .plan-card h3,
  .plan-card p {
    color: rgba(248, 240, 222, 0.86) !important;
  }

  .lux-icon,
  .amenity-icon svg,
  .contact-info-icon,
  .contact-row-icon,
  .stat-icon svg {
    color: var(--brochure-gold) !important;
    stroke: var(--brochure-gold) !important;
  }

  .contact-info-icon {
    background: rgba(252, 204, 96, 0.16) !important;
  }

  .project-tab,
  .tab-btn {
    background: rgba(14, 58, 37, 0.08) !important;
    border-color: rgba(184, 135, 43, 0.32) !important;
    color: var(--brochure-emerald) !important;
  }

  .project-tab.active,
  .project-tab:hover,
  .tab-btn.active,
  .tab-btn:hover {
    background: var(--brochure-emerald) !important;
    border-color: var(--brochure-gold) !important;
    color: var(--brochure-ivory) !important;
  }

  .plan-room {
    background: rgba(248, 240, 222, 0.78) !important;
    border-color: rgba(184, 135, 43, 0.4) !important;
  }

  .plan-room.gold {
    background: rgba(252, 204, 96, 0.28) !important;
  }

  .contact-panel .form-input,
  .contact-panel .form-select,
  .contact-panel .form-textarea {
    color: #8d9b93 !important;
    border-bottom-color: rgba(14, 58, 37, 0.28) !important;
  }

  footer {
    background:
      linear-gradient(135deg, rgba(252, 204, 96, 0.1), transparent 35%),
      var(--brochure-emerald-deep) !important;
  }

  footer,
  footer .logo-main,
  footer .footer-col-title {
    color: var(--brochure-ivory) !important;
  }

  .footer-tagline,
  .footer-links a,
  .footer-legal a,
  .footer-copyright {
    color: rgba(248, 240, 222, 0.68) !important;
  }

  .footer-links a:hover,
  .footer-legal a:hover {
    color: var(--brochure-gold) !important;
  }

  /* Light parchment surfaces need ink-first typography, not gold/white text. */
  #about,
  #projects,
  #gallery,
  #testimonials,
  #faq,
  #partners,
  #media,
  .inner-section:not(.dark) {
    color: var(--brochure-ink) !important;
  }

  #about .section-label,
  #projects .section-label,
  #gallery .section-label,
  #testimonials .section-label,
  #faq .section-label,
  #partners .section-label,
  #media .section-label,
  .inner-section:not(.dark) .section-label,
  #about .quote-person,
  #projects .quote-person,
  #gallery .quote-person,
  #testimonials .quote-person,
  #faq .quote-person,
  #partners .quote-person,
  #media .quote-person,
  .inner-section:not(.dark) .quote-person {
    color: #6F4E16 !important;
  }

  #about .section-title,
  #projects .section-title,
  #gallery .section-title,
  #testimonials .section-title,
  #faq .section-title,
  #partners .section-title,
  #media .section-title,
  .inner-section:not(.dark) .section-title,
  #about .section-title em,
  #projects .section-title em,
  #gallery .section-title em,
  #testimonials .section-title em,
  #faq .section-title em,
  #partners .section-title em,
  #media .section-title em,
  .inner-section:not(.dark) .section-title em {
    color: var(--brochure-emerald-deep) !important;
  }

  #about h1,
  #about h2,
  #about h3,
  #about h4,
  #projects h1,
  #projects h2,
  #projects h3,
  #projects h4,
  #gallery h1,
  #gallery h2,
  #gallery h3,
  #gallery h4,
  #testimonials h1,
  #testimonials h2,
  #testimonials h3,
  #testimonials h4,
  #faq h1,
  #faq h2,
  #faq h3,
  #faq h4,
  #partners h1,
  #partners h2,
  #partners h3,
  #partners h4,
  #media h1,
  #media h2,
  #media h3,
  #media h4,
  .inner-section:not(.dark) h1,
  .inner-section:not(.dark) h2,
  .inner-section:not(.dark) h3,
  .inner-section:not(.dark) h4 {
    color: var(--brochure-emerald-deep) !important;
  }

  #about p,
  #about li,
  #about span:not(.section-label),
  #projects p,
  #projects li,
  #projects span:not(.section-label),
  #gallery p,
  #gallery li,
  #gallery span:not(.section-label),
  #testimonials p,
  #testimonials li,
  #testimonials span:not(.section-label),
  #faq p,
  #faq li,
  #faq span:not(.section-label),
  #partners p,
  #partners li,
  #partners span:not(.section-label),
  #media p,
  #media li,
  #media span:not(.section-label),
  .inner-section:not(.dark) p,
  .inner-section:not(.dark) li,
  .inner-section:not(.dark) span:not(.section-label) {
    color: rgba(16, 32, 23, 0.76) !important;
  }

  #about .lux-card,
  #projects .lux-card,
  #gallery .lux-card,
  #testimonials .lux-card,
  #faq .lux-card,
  #partners .lux-card,
  #media .lux-card,
  .inner-section:not(.dark) .lux-card,
  .quote-card,
  .testimonial-card,
  .faq-item,
  .media-card,
  .contact-panel,
  .plan-visual {
    background: rgba(255, 250, 238, 0.9) !important;
    color: var(--brochure-ink) !important;
  }

  #about .lux-card h3,
  #projects .lux-card h3,
  #gallery .lux-card h3,
  #testimonials .lux-card h3,
  #faq .lux-card h3,
  .inner-section:not(.dark) .lux-card h3,
  .quote-card blockquote,
  .testimonial-card h3,
  .faq-question,
  .media-card h3,
  .contact-panel h3,
  .plan-visual h3 {
    color: var(--brochure-emerald-deep) !important;
  }

  #about .lux-card p,
  #projects .lux-card p,
  #gallery .lux-card p,
  #testimonials .lux-card p,
  #faq .lux-card p,
  .inner-section:not(.dark) .lux-card p,
  .quote-card p,
  .testimonial-text,
  .testimonial-project,
  .faq-answer,
  .media-card p,
  .contact-panel p,
  .plan-visual p {
    color: rgba(16, 32, 23, 0.68) !important;
  }

  /* Screenshot fixes: non-semantic div/strong text on light parchment panels. */
  #about .feature-text,
  #about .about-features .feature-item,
  .inner-section:not(.dark) .feature-text {
    color: rgba(16, 32, 23, 0.82) !important;
  }

  #about .feature-dot,
  .inner-section:not(.dark) .feature-dot {
    background: #8A641D !important;
  }

  #about .btn-gold-text,
  .inner-section:not(.dark) .btn-gold-text {
    color: #6F4E16 !important;
  }

  .inner-section:not(.dark) .plan-card {
    background: rgba(255, 250, 238, 0.9) !important;
    color: var(--brochure-ink) !important;
    border: 1px solid rgba(184, 135, 43, 0.28) !important;
    box-shadow: 0 22px 52px rgba(27, 36, 22, 0.12);
  }

  .inner-section:not(.dark) .plan-card h3,
  .inner-section:not(.dark) .plan-card p,
  .inner-section:not(.dark) .plan-card .muted {
    color: var(--brochure-emerald-deep) !important;
  }

  .inner-section:not(.dark) .plan-spec {
    background: rgba(14, 58, 37, 0.07) !important;
    border-color: rgba(184, 135, 43, 0.24) !important;
    color: rgba(16, 32, 23, 0.72) !important;
  }

  .inner-section:not(.dark) .plan-spec strong {
    color: #6F4E16 !important;
  }

  #partners .partner-logo {
    color: var(--brochure-emerald-deep) !important;
    opacity: 0.78 !important;
  }

  #partners .partners-track:hover .partner-logo:hover {
    color: #6F4E16 !important;
    opacity: 1 !important;
  }

  /* Swish luxury image systems */
  /* #projects .projects-showcase {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(150px, 12vw) !important;
    gap: 18px !important;
    align-items: stretch;
  }
  #projects .project-card,
  #projects .project-card:first-child {
    grid-column: span 3;
    grid-row: span 2 !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(16,32,23,0.18);
    isolation: isolate;
  }
  #projects .project-card:nth-child(1) { grid-column: span 5; grid-row: span 3 !important; }
  #projects .project-card:nth-child(2) { grid-column: span 4; grid-row: span 2 !important; transform: translateY(18px); }
  #projects .project-card:nth-child(3) { grid-column: span 3; grid-row: span 2 !important; }
  #projects .project-card:nth-child(4) { grid-column: 6 / span 4; grid-row: span 2 !important; transform: translateY(-10px); }
  #projects .project-card::after,
  .masonry-item::after {
    content: '';
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(252,204,96,0.22);
    pointer-events: none;
    z-index: 3;
  }
  #projects .project-card:first-child .project-card-name,
  #projects .project-card-name {
    font-size: clamp(22px, 1.8vw, 30px) !important;
  }
  #projects .project-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 32px 86px rgba(16,32,23,0.24);
  }
  #projects .project-card:nth-child(2):hover { transform: translateY(8px) scale(1.01); }
  #projects .project-card:nth-child(4):hover { transform: translateY(-18px) scale(1.01); }

  .masonry-grid {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: 145px;
    column-count: initial !important;
    gap: 20px !important;
  }
  .masonry-item {
    grid-column: span 4;
    grid-row: span 2;
    margin-bottom: 0 !important;
    aspect-ratio: auto;
    border-radius: 8px;
    box-shadow: 0 24px 62px rgba(16,32,23,0.16);
  }
  .masonry-item:nth-child(1) { grid-column: span 4; grid-row: span 3; }
  .masonry-item:nth-child(2) { grid-column: span 4; grid-row: span 2; transform: translateY(22px); }
  .masonry-item:nth-child(3) { grid-column: span 4; grid-row: span 2; }
  .masonry-item:nth-child(4) { grid-column: span 4; grid-row: span 3; }
  .masonry-item:nth-child(5) { grid-column: span 4; grid-row: span 2; transform: translateY(-18px); }
  .masonry-item:nth-child(6) { grid-column: span 4; grid-row: span 2; }
  .masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 82px rgba(16,32,23,0.24);
  }
  .masonry-item:nth-child(2):hover { transform: translateY(12px); }
  .masonry-item:nth-child(5):hover { transform: translateY(-26px); }
  .masonry-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(6,26,16,0.78), rgba(6,26,16,0.08) 64%);
  }
  .masonry-item img {
    height: 100% !important;
    object-fit: cover;
  } */
  /* About growth timeline */
  .timeline {
    max-width: 1040px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding: 54px 0 10px;
  }

  .timeline::before {
    top: 28px;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    transform: none;
    background: linear-gradient(to right, transparent, rgba(184, 135, 43, 0.45), transparent);
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: auto;
    width: auto;
    text-align: left;
    padding: 34px 26px 28px;
    background: rgba(255, 250, 238, 0.88);
    border: 1px solid rgba(184, 135, 43, 0.28);
    box-shadow: 0 18px 42px rgba(27, 36, 22, 0.1);
    border-radius: 6px;
  }

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

  .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    top: -33px;
    left: 24px !important;
    right: auto !important;
    background: var(--brochure-gold);
    box-shadow: 0 0 0 6px rgba(248, 240, 222, 0.95), 0 0 0 8px rgba(184, 135, 43, 0.26);
  }

  .timeline h3 {
    color: var(--brochure-emerald-deep) !important;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 8px;
  }

  .timeline p {
    color: rgba(16, 32, 23, 0.72) !important;
    line-height: 1.7;
  }

  .timeline-year {
    color: #6F4E16 !important;
    font-size: 30px;
  }

  /* @media (max-width: 1100px) {
    #projects .projects-showcase,
    .masonry-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
      grid-auto-rows: 160px !important;
    }
    #projects .project-card,
    #projects .project-card:first-child,
    #projects .project-card:nth-child(2),
    #projects .project-card:nth-child(3),
    #projects .project-card:nth-child(4),
    .masonry-item,
    .masonry-item:nth-child(n) {
      grid-column: span 3 !important;
      grid-row: span 2 !important;
      transform: none !important;
    }
    .timeline {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
  } */
  @media (max-width: 640px) {

    #projects .projects-showcase,
    .masonry-grid {
      grid-template-columns: 1fr !important;
      grid-auto-rows: auto !important;
    }

    #projects .project-card,
    #projects .project-card:first-child,
    #projects .project-card:nth-child(2),
    #projects .project-card:nth-child(3),
    #projects .project-card:nth-child(4),
    .masonry-item,
    .masonry-item:nth-child(n) {
      grid-column: auto !important;
      grid-row: auto !important;
      transform: none !important;
      aspect-ratio: 4 / 3 !important;
    }

    .timeline {
      grid-template-columns: 1fr !important;
    }

    .timeline::before {
      display: none;
    }

    .timeline-item {
      padding-top: 28px;
    }

    .timeline-dot {
      display: none;
    }
  }

  /* ─── PROJECTS GRID ─── */
  #projects .projects-showcase {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    grid-template-rows: 320px 240px !important;
    gap: 10px !important;
    align-items: stretch;
  }

  #projects .project-card {
    border-radius: 4px;
    box-shadow: 0 26px 70px rgba(16, 32, 23, 0.18);
    isolation: isolate;
    transform: none !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  #projects .project-card:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
  }

  #projects .project-card:nth-child(2) {
    grid-column: 6 / 10;
    grid-row: 1;
  }

  #projects .project-card:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1;
  }

  #projects .project-card:nth-child(4) {
    grid-column: 6 / 10;
    grid-row: 2;
  }

  #projects .project-card:nth-child(5) {
    grid-column: 10 / 13;
    grid-row: 2;
  }

  #projects .project-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(252, 204, 96, 0.22);
    pointer-events: none;
    z-index: 3;
    border-radius: 3px;
  }

  #projects .project-card:hover {
    transform: scale(1.015) !important;
    box-shadow: 0 32px 86px rgba(16, 32, 23, 0.26);
  }

  /* ─── GALLERY GRID ─── */
  #gallery .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    grid-template-rows: 260px 200px 200px !important;
    gap: 10px !important;
  }

  #gallery .gallery-item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }

  #gallery .gallery-item:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1;
  }

  #gallery .gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1;
  }

  #gallery .gallery-item:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2;
  }

  #gallery .gallery-item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 2;
  }

  #gallery .gallery-item:nth-child(6) {
    grid-column: 1 / 5;
    grid-row: 3;
  }

  #gallery .gallery-item:nth-child(7) {
    grid-column: 5 / 9;
    grid-row: 3;
  }

  #gallery .gallery-item:nth-child(8) {
    grid-column: 9 / 13;
    grid-row: 3;
  }

  #gallery .gallery-item {
    border-radius: 4px;
  }

  /* ─── AMENITY GALLERY GRID ─── */
  .gallery-amenity-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: 240px 240px !important;
    gap: 10px !important;
    margin-top: 10px;
  }

  /* ─── MASONRY GRID ─── */
  .masonry-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: 280px 180px 280px !important;
    column-count: initial !important;
    gap: 10px !important;
  }

  .masonry-item {
    margin-bottom: 0 !important;
    border-radius: 4px;
    box-shadow: 0 22px 56px rgba(16, 32, 23, 0.15);
    transform: none !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .masonry-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .masonry-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .masonry-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .masonry-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .masonry-item:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }

  .masonry-item:nth-child(6) {
    grid-column: 2 / 4;
    grid-row: 3;
  }

  .masonry-item img {
    height: 100% !important;
    object-fit: cover;
  }

  .masonry-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(6, 26, 16, 0.78), rgba(6, 26, 16, 0.06) 62%);
  }

  .masonry-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 32px 80px rgba(16, 32, 23, 0.22);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    #projects .projects-showcase {
      grid-template-rows: 260px 200px !important;
    }

    .masonry-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      grid-template-rows: 240px 240px 240px !important;
    }

    .masonry-item:nth-child(n) {
      grid-column: auto !important;
      grid-row: auto !important;
      transform: none !important;
    }
  }

  @media (max-width: 768px) {
    #projects .projects-showcase {
      grid-template-columns: repeat(6, 1fr) !important;
      grid-template-rows: 200px 200px !important;
    }

    #projects .project-card:nth-child(1) {
      grid-column: 1 / 4 !important;
      grid-row: 1 / 3 !important;
    }

    #projects .project-card:nth-child(2) {
      grid-column: 4 / 7 !important;
      grid-row: 1 !important;
    }

    #projects .project-card:nth-child(3) {
      grid-column: 4 / 7 !important;
      grid-row: 2 !important;
    }

    #projects .project-card:nth-child(4) {
      grid-column: 1 / 4 !important;
      grid-row: auto !important;
    }

    #projects .project-card:nth-child(5) {
      grid-column: 4 / 7 !important;
      grid-row: auto !important;
    }

    .gallery-amenity-grid {
      grid-template-columns: 1fr 1fr !important;
      grid-template-rows: auto !important;
    }
  }

  @media (max-width: 600px) {

    #projects .projects-showcase,
    .masonry-grid,
    .gallery-amenity-grid {
      grid-template-columns: 1fr !important;
      grid-template-rows: auto !important;
    }

    #projects .project-card:nth-child(n),
    .masonry-item:nth-child(n),
    .gallery-amenity-grid .gallery-item:nth-child(n) {
      grid-column: auto !important;
      grid-row: auto !important;
      aspect-ratio: 4 / 3 !important;
      transform: none !important;
    }

    #gallery .gallery-grid {
      grid-template-columns: 1fr 1fr !important;
      grid-template-rows: auto !important;
    }

    #gallery .gallery-item:nth-child(n) {
      grid-column: auto !important;
      grid-row: auto !important;
      height: 180px !important;
    }
  }

  /* ─── CONTRAST & VISIBILITY ADJUSTMENTS FOR AMENITIES & MEDIA LIGHT PANELS ─── */

  /* Amenities Section fixes */
  .amenity-item .amenity-name {
    color: var(--brochure-emerald-deep) !important;
    font-weight: 500 !important;
  }

  .amenity-item .amenity-icon svg,
  .amenity-item .amenity-icon i {
    color: var(--brochure-emerald-deep) !important;
    stroke: var(--brochure-emerald-deep) !important;
  }

  .amenity-item:hover {
    background: var(--brochure-ivory) !important;
    border-color: var(--brochure-gold) !important;
    box-shadow: 0 20px 46px rgba(14, 58, 37, 0.15) !important;
  }

  /* Media Spotlight Section fixes */
  .media-card .media-source {
    color: var(--brochure-emerald-deep) !important;
    font-weight: 600 !important;
  }

  .media-card .media-title {
    color: var(--brochure-ink) !important;
    font-weight: 400 !important;
  }

  .media-card .media-date {
    color: var(--brochure-gold-deep) !important;
    font-weight: 500 !important;
  }

  .media-card:hover {
    border-color: var(--brochure-gold) !important;
    box-shadow: 0 20px 46px rgba(14, 58, 37, 0.15) !important;
  }

  /* Footer Developed by Balaji Ventures logo image styling */
  .footer-brand {
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-partner-logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 14px !important;
  }

  .footer-partner-logo .developed-by {
    font-family: var(--font-body) !important;
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: var(--brochure-champagne) !important;
    opacity: 0.8 !important;
    font-weight: 500 !important;
  }

  .footer-partner-logo img {
    height: 38px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
    display: block !important;
    filter: brightness(1.2) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15)) !important;
  }

  /* FAQ Layout Spacing & Card Insets (resolved edge touching) */
  .faq-item {
    padding: 0 28px !important;
    margin-bottom: 16px !important;
    border: 1px solid rgba(184, 135, 43, 0.28) !important;
    border-radius: 6px !important;
    background: rgba(255, 250, 238, 0.9) !important;
    box-shadow: 0 10px 25px rgba(27, 36, 22, 0.05) !important;
    transition: all 0.3s ease !important;
  }

  .faq-item:hover {
    border-color: var(--brochure-gold) !important;
    box-shadow: 0 14px 35px rgba(14, 58, 37, 0.1) !important;
  }

  /* ═══════════════════════════════════════════════════════════════════
     BROCHURE DOWNLOAD GATE MODAL
  ═══════════════════════════════════════════════════════════════════ */

  .brochure-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(6, 19, 13, 0.80);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
  }

  .brochure-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .brochure-modal-card {
    background: linear-gradient(148deg, var(--brochure-ivory, #F8F0DE) 0%, var(--brochure-parchment, #EFE0BF) 100%);
    border: 1px solid rgba(201, 168, 76, 0.38);
    border-radius: 22px;
    padding: 48px 44px 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow:
      0 48px 96px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(252, 204, 96, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(28px) scale(0.97);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 92vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 76, 0.4) transparent;
  }

  .brochure-modal-overlay.active .brochure-modal-card {
    transform: translateY(0) scale(1);
  }

  /* Close button */
  .brochure-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--brochure-emerald-deep, #061A10);
    opacity: 0.38;
    padding: 4px 8px;
    border-radius: 6px;
    transition: opacity 0.2s, background 0.2s;
    font-weight: 300;
  }

  .brochure-modal-close:hover {
    opacity: 0.72;
    background: rgba(14, 58, 37, 0.08);
  }

  /* Header */
  .brochure-modal-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .brochure-modal-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--brochure-emerald, #0E3A25), var(--brochure-emerald-deep, #061A10));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 10px 28px rgba(14, 58, 37, 0.32);
  }

  .brochure-modal-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 500;
    color: var(--brochure-emerald-deep, #061A10);
    margin: 0 0 10px;
    line-height: 1.2;
  }

  .brochure-modal-subtitle {
    font-size: 13.5px;
    color: rgba(16, 32, 23, 0.60);
    line-height: 1.65;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Form fields inside the modal */
  .brochure-modal-form .form-label {
    display: block;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(16, 32, 23, 0.60);
    margin-bottom: 6px;
  }

  .brochure-modal-form .form-input,
  .brochure-modal-form .form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.72);
    border: none;
    border-bottom: 1.5px solid rgba(14, 58, 37, 0.22);
    border-radius: 7px 7px 0 0;
    padding: 11px 13px;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 14px;
    color: var(--brochure-ink, #102017);
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    -webkit-appearance: none;
    appearance: none;
  }

  .brochure-modal-form .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230E3A25' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
  }

  .brochure-modal-form .form-input:focus,
  .brochure-modal-form .form-select:focus {
    border-bottom-color: var(--brochure-emerald, #0E3A25);
    background: rgba(255, 255, 255, 0.92);
  }

  .brochure-modal-form .form-input::placeholder {
    color: rgba(16, 32, 23, 0.36);
  }

  .brochure-modal-form .form-group {
    margin-bottom: 16px;
  }

  .brochure-modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Submit button */
  .brochure-modal-form .form-submit {
    width: 100%;
    margin-top: 10px;
    padding: 15px 24px;
    font-size: 13px;
    letter-spacing: 1.2px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brochure-gold, #FCCC60), var(--brochure-gold-deep, #B8872B));
    color: #1A1204;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.25s, transform 0.2s, background 0.35s;
    box-shadow: 0 8px 24px rgba(184, 135, 43, 0.28);
  }

  .brochure-modal-form .form-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #FFE08A, var(--brochure-gold, #FCCC60));
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(184, 135, 43, 0.34);
  }

  .brochure-modal-form .form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
  }

  /* Privacy note */
  .brochure-modal-note {
    text-align: center;
    font-size: 11.5px;
    color: rgba(16, 32, 23, 0.44);
    margin-top: 14px;
    line-height: 1.5;
  }

  /* Divider between icon and gold accent line */
  .brochure-modal-header::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--brochure-gold, #FCCC60), var(--brochure-gold-deep, #B8872B));
    border-radius: 2px;
    margin: 14px auto 0;
  }

  /* Mobile responsiveness */
  @media (max-width: 560px) {
    .brochure-modal-card {
      padding: 36px 22px 32px;
      border-radius: 16px;
      margin: 12px;
    }

    .brochure-modal-form .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .brochure-modal-title {
      font-size: 24px;
    }
  }

  @media (min-width: 768px) {
    .amenities-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .lux-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .amenities-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    .lux-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 768px) {
    .testimonial-card {
      min-width: 100% !important;
    }
  }

  #testimonials .slider-btn {
    color: var(--brochure-emerald-deep);
    border-color: rgba(184, 135, 43, 0.4);
  }
  
  #testimonials .slider-btn:hover {
    color: var(--brochure-ink);
    background: rgba(184, 135, 43, 0.1);
  }
  
  #testimonials .dot {
    background: rgba(184, 135, 43, 0.4);
  }
  
  #testimonials .dot.active {
    background: var(--brochure-emerald-deep);
  }

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

  @media (max-width: 768px) {
    .lux-card, 
    .testimonial-card, 
    .award-feature, 
    .contact-panel, 
    .quote-card, 
    .plan-visual, 
    .stat-item, 
    .project-card-info, 
    .amenity-item,
    .feature-card,
    .plan-card {
      text-align: center;
    }
    
    .lux-icon, 
    .contact-row-icon, 
    .stat-icon, 
    .amenity-icon,
    .testimonial-avatar {
      margin-left: auto !important;
      margin-right: auto !important;
      display: block;
    }
    
    .testimonial-person,
    .contact-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .contact-row-icon {
      margin-bottom: 12px;
    }
  }

/* ─── LIGHTBOX ────────────────────────────────────────────────────────────── */
#lightboxOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: zoom-out;
  padding: 24px;
}

#lightboxOverlay.active {
  display: flex;
  animation: lightboxFadeIn 0.25s ease forwards;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: default;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
}

#lightboxImg {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  animation: lightboxScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes lightboxScaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

#lightboxCaption {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  letter-spacing: 0.04em;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: -8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
  transform: rotate(90deg);
}

/* Zoom hint on plan images */
.plan-visual img,
#floor-plans .project-card {
  cursor: zoom-in;
}

@media (max-width: 768px) {
  .lightbox-inner {
    max-width: 95vw;
  }
  #lightboxImg {
    max-height: 70vh;
  }
  .lightbox-close {
    top: -44px;
    right: 0;
  }
}

@media (max-width: 900px) {
  .nearby-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .nearby-section {
    padding: 58px 5%;
  }

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

  .nearby-item {
    min-height: 150px;
  }
}

/* Amenities page final polish */
.amenity-showcase {
  gap: 28px !important;
}

.amenity-tile {
  min-height: 340px !important;
  border: 0 !important;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.amenity-tile::before {
  background:
    linear-gradient(to top, rgba(4, 21, 13, 0.74), rgba(4, 21, 13, 0.22) 44%, rgba(4, 21, 13, 0.02) 74%) !important;
}

.amenity-tile-content {
  width: calc(100% - 20px);
  padding: 18px 20px;
  background: rgba(6, 26, 16, 0.72);
  border-left: 3px solid var(--brochure-gold);
  backdrop-filter: blur(4px);
}

.amenity-tile h3 {
  color: var(--brochure-ivory) !important;
  font-size: 34px !important;
  line-height: 1 !important;
}

.amenity-tile p {
  color: rgba(248, 240, 222, 0.92) !important;
  margin: 0;
}

.nearby-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(252, 204, 96, 0.16), transparent 26%),
    linear-gradient(145deg, #0e3a25, #061a10 78%) !important;
  color: var(--brochure-ivory) !important;
  padding: 84px 5% !important;
}

.nearby-heading {
  max-width: 820px;
  margin: 0 auto 42px !important;
}

.nearby-heading .section-label {
  color: var(--brochure-gold) !important;
}

.nearby-heading .section-title {
  color: var(--brochure-ivory) !important;
  line-height: 1.05 !important;
}

.nearby-heading .section-title em {
  color: var(--brochure-gold) !important;
}

.nearby-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.nearby-item {
  min-height: 190px !important;
  padding: 24px 14px 22px !important;
  background: linear-gradient(145deg, rgba(255, 250, 238, 0.96), rgba(239, 224, 191, 0.94)) !important;
  border: 1px solid rgba(252, 204, 96, 0.44) !important;
  border-radius: 6px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  justify-content: center !important;
}

.nearby-item svg {
  width: 46px !important;
  height: 46px !important;
  color: var(--brochure-gold-deep) !important;
  stroke: var(--brochure-gold-deep) !important;
  stroke-width: 1.2 !important;
  margin-bottom: 16px !important;
}

.nearby-item h3 {
  max-width: 150px !important;
  color: var(--brochure-emerald-deep) !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

.nearby-item p {
  color: #8a641d !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  margin-top: 10px !important;
}

@media (max-width: 1100px) {
  .nearby-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .nearby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .amenity-tile {
    min-height: 280px !important;
  }
}
