/* =========================================================
   project.css
   Property Specific Modules (RPS Palm Drive)
   ========================================================= */

/* =========================================================
   HERO
   Background elevation image + readable overlay + enquiry card
   ========================================================= */

   .project-hero {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    padding-top: 148px;
    padding-bottom: 76px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-deep);
  }
  
  /* Background elevation image */
  .project-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: url("../../images/rps-palm-drive/elevationrps.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 48%;
  }
  
  /*
    Readability overlay:
    darker behind the written content on the left,
    softer on the right so the building remains visible.
  */
  .project-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(22, 26, 30, 0.45) 0%,
        rgba(22, 26, 30, 0.40) 45%,
        rgba(22, 26, 30, 0.20) 69%,
        rgba(22, 26, 30, 0.00) 100%
      ),
      linear-gradient(
        180deg,
        rgba(22, 26, 30, 0.20) 0%,
        rgba(22, 26, 30, 0.20) 100%
      );
  }
  
  
  
  /* Keep the project-page navigation readable above the hero image */
  .nav {
    background: rgba(245, 242, 237, 0.92);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: saturate(140%) blur(12px);
  }
  
  .project-hero-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    align-items: center;
    gap: 76px;
  }
  
  .project-hero-copy {
    max-width: 700px;
  }
  
  .project-eyebrow-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
  }
  
  .project-status,
  .project-type {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 12px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  
  .project-status {
    background: var(--accent-sand);
    color: var(--bg-deep);
  }
  
  .project-type {
    border: 1px solid rgba(226, 229, 224, 0.42);
    color: rgba(255, 255, 255, 0.86);
  }
  
  .project-hero h1 {
    max-width: 680px;
    margin-bottom: 18px;
    font-family: var(--serif);
    font-size: clamp(68px, 7.4vw, 118px);
    font-weight: 400;
    line-height: 0.91;
    letter-spacing: -0.045em;
    color: #ffffff;
  }
  
  .project-hero h1 em {
    display: block;
    font-weight: 400;
    color: #c2d2be;
  }
  
  .project-location {
    margin-bottom: 20px;
    font-family: var(--serif);
    font-size: 27px;
    color: rgba(255, 255, 255, 0.94);
  }
  
  .project-location::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    margin-right: 12px;
    vertical-align: middle;
    background: var(--accent-sand);
  }
  
  .project-intro {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: 17px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.80);
  }
  
  .project-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .project-hero .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.68);
  }
  
  .project-hero .btn-secondary:hover {
    color: var(--bg-deep);
    border-color: var(--accent-sand);
    background: var(--accent-sand);
  }
  
  .project-price-note {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 250px;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
  
  .project-price-note span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-sand);
  }
  
  .project-price-note strong {
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
    color: #ffffff;
  }
  
  /* =========================================================
     HERO ENQUIRY CARD
     ========================================================= */
  
  .project-enquiry-card {
    width: 100%;
    padding: 28px;
    background: rgba(248, 246, 241, 0.95);
    border-top: 3px solid var(--accent-sand);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
  }
  
  .project-enquiry-card-head {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .project-enquiry-card-head > span {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-sage);
  }
  
  .project-enquiry-card-head h2 {
    margin-bottom: 7px;
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--text-primary);
  }
  
  .project-enquiry-card-head p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
  }
  
  .project-enquiry-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 13px;
  }
  
  .project-enquiry-field label {
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent-sage);
  }
  
  .project-enquiry-field input,
  .project-enquiry-field select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--border-subtle);
    outline: none;
    background: rgba(255, 255, 255, 0.78);
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text-primary);
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  
  .project-enquiry-field input:focus,
  .project-enquiry-field select:focus {
    border-color: var(--accent-sage);
    background: #ffffff;
  }
  
  .project-enquiry-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
  
  .project-enquiry-submit:disabled {
    cursor: wait;
    opacity: 0.72;
  }
  
  .project-enquiry-status {
    min-height: 19px;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.45;
  }
  
  .project-enquiry-status.ok {
    color: var(--accent-sage);
  }
  
  .project-enquiry-status.err {
    color: #a33b3b;
  }
  
  .project-enquiry-whatsapp {
    display: block;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--accent-sage);
    transition: color 0.2s ease;
  }
  
  .project-enquiry-whatsapp:hover {
    color: var(--accent-sand-hover);
  }
  
  .project-enquiry-consent {
    margin: 10px 0 0;
    font-size: 10.5px;
    line-height: 1.5;
    color: var(--text-muted);
  }
  
  .project-honeypot {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .project-enquiry-card {
    scroll-margin-top: 120px;
  }
/* Sticky Nav */
.project-section-nav { position: sticky; top: 88px; z-index: 70; overflow-x: auto; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: rgba(245, 242, 237, 0.96); backdrop-filter: blur(12px); }
.project-section-nav-inner { display: flex; align-items: center; justify-content: center; gap: 36px; min-width: max-content; }
.project-section-nav a { position: relative; padding: 17px 0; font-size: 12px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-primary); transition: color 0.2s ease; }
.project-section-nav a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--accent-sand); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.project-section-nav a:hover { color: var(--accent-sage); }
.project-section-nav a:hover::after { transform: scaleX(1); }

/* Quick Details */
.project-quick-details { padding: 0; background: var(--bg-card); border-bottom: 1px solid var(--border-subtle); }
.project-quick-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.project-quick-item { min-height: 126px; padding: 24px 18px; border-right: 1px solid var(--border-subtle); display: flex; flex-direction: column; justify-content: center; gap: 7px; }
.project-quick-item:first-child { border-left: 1px solid var(--border-subtle); }
.project-quick-item span { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-sage); }
.project-quick-item strong { font-family: var(--serif); font-size: 21px; font-weight: 500; line-height: 1.2; color: var(--text-primary); }

/* Overview */
.project-overview { background: var(--bg-alt); }
.project-overview-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 88px; align-items: start; }
.project-overview-heading h2 { max-width: 560px; font-family: var(--serif); font-size: clamp(42px, 4.6vw, 64px); line-height: 1.02; color: var(--text-primary); }
.project-overview-copy { max-width: 720px; }
.project-overview-copy p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; color: var(--text-body); }
.project-overview-copy .project-overview-lead { font-family: var(--serif); font-size: 27px; line-height: 1.3; color: var(--text-primary); }
.project-overview-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }
.project-overview-highlight { min-height: 176px; padding: 22px; background: var(--bg-card); border: 1px solid var(--border-subtle); transition: transform 0.25s ease, border-color 0.25s ease; }
.project-overview-highlight:hover { transform: translateY(-3px); border-color: var(--accent-sage); }
.project-overview-highlight span { display: block; margin-bottom: 18px; font-family: var(--serif); font-size: 24px; line-height: 1; color: var(--accent-sand); }
.project-overview-highlight strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.2; color: var(--text-primary); }
.project-overview-highlight p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* Floor Options */
.project-floor-options { background: var(--bg-base); }
.project-floor-head { display: grid; grid-template-columns: 1fr 0.8fr; gap: 70px; align-items: end; }
.project-floor-head h2 { max-width: 680px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 62px); line-height: 1.02; color: var(--text-primary); }
.project-floor-head p { max-width: 560px; margin: 0; font-size: 16px; color: var(--text-body); }
.project-floor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.project-floor-card { display: flex; flex-direction: column; min-height: 470px; padding: 28px; background: var(--bg-card); border: 1px solid var(--border-subtle); transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.project-floor-card:hover { transform: translateY(-4px); border-color: var(--accent-sage); box-shadow: 0 20px 34px -24px rgba(34,37,42,0.3); }
.project-floor-card-featured { border-top: 3px solid var(--accent-sand); }
.project-floor-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 30px; }
.project-floor-card-top span { font-family: var(--serif); font-size: 34px; line-height: 1; color: var(--accent-sand); }
.project-floor-card-top small { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-sage); }
.project-floor-card h3 { margin-bottom: 20px; font-family: var(--serif); font-size: 27px; font-weight: 500; color: var(--text-primary); }
.project-floor-card ul { display: flex; flex-direction: column; gap: 10px; margin: 0 0 30px; padding: 0; list-style: none; }
.project-floor-card li { position: relative; padding-left: 17px; font-size: 14px; color: var(--text-body); }
.project-floor-card li::before { content: ""; position: absolute; top: 9px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-sage); }
.project-floor-price { display: flex; flex-direction: column; gap: 3px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--border-subtle); }
.project-floor-price span { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-sage); }
.project-floor-price strong { font-family: var(--serif); font-size: 31px; font-weight: 500; color: var(--text-primary); }
.project-floor-link { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-subtle); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-sage); transition: color 0.2s ease; }
.project-floor-link:hover { color: var(--accent-sand); }
.project-floor-link:hover span { transform: translateX(4px); }
.project-delivery-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; background: var(--bg-deep); }
.project-delivery-strip div { min-height: 118px; padding: 24px; border-right: 1px solid rgba(226,229,224,0.15); display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.project-delivery-strip div:last-child { border-right: 0; }
.project-delivery-strip span { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-sand); }
.project-delivery-strip strong { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--text-light); }

/* Gallery & Progress */
.project-gallery { background: var(--bg-deep); color: var(--text-light); }
.project-gallery .section-label { color: var(--accent-sand); }
.project-gallery .section-label::before { background: var(--accent-sand); }
.project-gallery-head { display: grid; grid-template-columns: 1fr 0.75fr; gap: 72px; align-items: end; }
.project-gallery-head h2 { max-width: 720px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 62px); color: var(--text-light); line-height: 1.02;}
.project-gallery-head p { max-width: 560px; font-size: 16px; color: rgba(226,229,224,0.74); }
.project-gallery-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; grid-template-rows: repeat(2, 260px); gap: 16px; margin-top: 50px; }
.project-gallery-main, .project-gallery-card { position: relative; overflow: hidden; background: var(--bg-deep-card); margin: 0;}
.project-gallery-main { grid-row: 1 / 3; }
.project-gallery-main img, .project-gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.project-gallery-main:hover img, .project-gallery-card:hover img { transform: scale(1.04); }
.project-gallery-main::after, .project-gallery-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(34,37,42,0) 48%, rgba(34,37,42,0.78) 100%); }
.project-gallery figcaption { position: absolute; z-index: 2; right: 22px; bottom: 20px; left: 22px; display: flex; flex-direction: column; gap: 4px; }
.project-gallery figcaption span { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-sand); }
.project-gallery figcaption strong { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--text-light); }
.project-progress-panel { display: grid; grid-template-columns: 1fr 0.82fr; margin-top: 22px; border: 1px solid rgba(226,229,224,0.14); background: var(--bg-deep-card); }
.project-progress-copy { padding: 34px; }
.project-progress-copy > span { display: block; margin-bottom: 12px; font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-sand); }
.project-progress-copy h3 { max-width: 520px; margin-bottom: 16px; font-family: var(--serif); font-size: 34px; color: var(--text-light); }
.project-progress-copy p { max-width: 620px; margin-bottom: 24px; font-size: 15px; color: rgba(226,229,224,0.72); }
.project-progress-stats { display: grid; grid-template-columns: 1fr; border-left: 1px solid rgba(226,229,224,0.14); }
.project-progress-stats div { display: flex; flex-direction: column; justify-content: center; gap: 5px; min-height: 104px; padding: 20px 26px; border-bottom: 1px solid rgba(226,229,224,0.14); }
.project-progress-stats div:last-child { border-bottom: 0; }
.project-progress-stats span { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-sand); }
.project-progress-stats strong { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--text-light); }

/* Floor Plan & Specs */
.project-floor-plan { background: var(--bg-card); }
.project-floor-plan-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 72px; align-items: center; }
.project-floor-plan-copy h2 { max-width: 620px; margin-bottom: 22px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 62px); color: var(--text-primary); line-height: 1.02;}
.project-floor-plan-copy > p { max-width: 590px; margin-bottom: 26px; font-size: 16px; color: var(--text-body); }
.project-floor-plan-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 30px 0; background: var(--border-subtle); border: 1px solid var(--border-subtle); }
.project-floor-plan-facts div { min-height: 106px; padding: 18px; background: var(--bg-base); display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.project-floor-plan-facts span { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-sage); }
.project-floor-plan-facts strong { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--text-primary); }
.project-floor-plan-note { padding-left: 15px; border-left: 2px solid var(--accent-sand); font-size: 13px !important; color: var(--text-muted) !important; }
.project-floor-plan-visual { padding: 18px; background: var(--bg-base); border: 1px solid var(--border-subtle); }
.project-floor-plan-visual img { width: 100%; height: auto; background: #fff; }
.project-floor-plan-visual figcaption { padding-top: 14px; font-size: 12px; letter-spacing: 0.08em; text-align: center; text-transform: uppercase; color: var(--text-muted); }
.project-specifications { background: var(--bg-alt); }
.project-specifications-head { display: grid; grid-template-columns: 1fr 0.78fr; gap: 72px; align-items: end; }
.project-specifications-head h2 { max-width: 700px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 62px); color: var(--text-primary); line-height: 1.02;}
.project-specifications-head p { max-width: 570px; font-size: 16px; color: var(--text-body); }
.project-specifications-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.project-specification-card { min-height: 238px; padding: 23px; background: var(--bg-card); border: 1px solid var(--border-subtle); transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.project-specification-card:hover { transform: translateY(-3px); border-color: var(--accent-sage); box-shadow: 0 18px 30px -24px rgba(34,37,42,0.28); }
.project-specification-number { display: block; margin-bottom: 26px; font-family: var(--serif); font-size: 26px; color: var(--accent-sand); }
.project-specification-card h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--text-primary); }
.project-specification-card p { font-size: 14px; color: var(--text-muted); }
.project-specifications-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-top: 24px; padding: 24px 28px; background: var(--bg-deep); }
.project-specifications-footer div { display: flex; flex-direction: column; gap: 5px; }
.project-specifications-footer span { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-sand); }
.project-specifications-footer strong { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--text-light); }
.project-specifications-footer p { font-size: 13px; color: rgba(226,229,224,0.68); }

/* Society & Location */
.project-society-layout { background: var(--bg-base); }
.project-society-layout-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 72px; align-items: center; }
.project-society-layout-copy h2 { max-width: 620px; margin-bottom: 22px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 62px); color: var(--text-primary); line-height: 1.02;}
.project-society-layout-copy > p { max-width: 590px; margin-bottom: 26px; font-size: 16px; color: var(--text-body); }
.project-society-layout-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 30px 0; background: var(--border-subtle); border: 1px solid var(--border-subtle); }
.project-society-layout-facts div { min-height: 102px; padding: 18px; background: var(--bg-card); display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.project-society-layout-facts span { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-sage); }
.project-society-layout-facts strong { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--text-primary); }
.project-society-layout-note { padding-left: 15px; border-left: 2px solid var(--accent-sand); font-size: 13px !important; color: var(--text-muted) !important; }
.project-society-layout-visual { margin:0;padding: 18px; background: var(--bg-card); border: 1px solid var(--border-subtle); }
.project-society-layout-visual img { width: 100%; height: auto; }
.project-society-layout-visual figcaption { padding-top: 14px; font-size: 12px; letter-spacing: 0.08em; text-align: center; text-transform: uppercase; color: var(--text-muted); }
.project-location-section { background: var(--bg-alt); }

.project-location-head {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 72px;
  align-items: end;
}

.project-location-head h2 { max-width: 700px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 62px); color: var(--text-primary); font-weight: 400 ; line-height: 1.02 ;letter-spacing: -0.025em; color: var(--text-primary);}

.project-location-head p { max-width: 560px; font-size: 16px; color: var(--text-body); line-height: 1.75;}

/* .project-location-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 24px; margin-top: 52px; align-items: stretch; } */
.project-location-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr; /* Matches the head ratio exactly */
  gap: 72px;                         /* Matches the head gap exactly */
  margin-top: 52px;
  align-items: stretch;
}

/* .project-location-map { padding: 16px; background: var(--bg-card); border: 1px solid var(--border-subtle); } */
.project-location-map {
  margin: 0;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;              /* Added */
  flex-direction: column;     /* Added */
  justify-content: center;    /* Vertically centers the map inside the box */
}
.project-location-map img { width: 100%; height: auto; }
.project-location-map figcaption { padding-top: 13px; font-size: 11px; letter-spacing: 0.07em; text-align: center; text-transform: uppercase; color: var(--text-muted); }
.project-location-details { display: grid; grid-template-columns: 1fr; border: 1px solid var(--border-subtle); background: var(--bg-card); }
.project-location-highlight { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; min-height: 94px; padding: 15px 20px; border-bottom: 1px solid var(--border-subtle); }
.project-location-highlight:last-child { border-bottom: 0; }
.project-location-highlight > span { font-family: var(--serif); font-size: 24px; color: var(--accent-sand); }
.project-location-highlight strong { display: block; margin-bottom: 3px; font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--text-primary); }
.project-location-highlight p { font-size: 13px; color: var(--text-muted); }
.project-location-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 20px; padding: 23px 26px; background: var(--bg-card); border: 1px solid var(--border-subtle); }
.project-location-footer div { display: flex; flex-direction: column; gap: 4px; }
.project-location-footer span { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-sage); }
.project-location-footer strong { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--text-primary); }

/* Project FAQ */
.project-faq { background: var(--bg-base); }
.project-faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 86px; align-items: start; }
.project-faq-heading h2 { max-width: 520px; margin-bottom: 18px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 62px); color: var(--text-primary); line-height: 1.02;}
.project-faq-heading p { max-width: 460px; margin-bottom: 26px; font-size: 15px; color: var(--text-body); }
.project-faq-list { border-top: 1px solid var(--border-subtle); }
.project-faq-item { border-bottom: 1px solid var(--border-subtle); }
.project-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 22px; color: var(--text-primary); transition: color 0.2s ease; }
.project-faq-item summary::-webkit-details-marker { display: none; }
.project-faq-item summary:hover { color: var(--accent-sage); }
.project-faq-item summary span { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid var(--border-subtle); border-radius: 50%; font-family: var(--sans); font-size: 18px;line-height: 1; color: var(--text-primary); transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease; }
.project-faq-item[open] summary { color: var(--accent-sage); }
.project-faq-item[open] summary span { transform: rotate(45deg); background: var(--accent-sand); color: var(--bg-deep); }
.project-faq-item p { max-width: 740px; padding: 0 48px 22px 0; font-size: 15px; color: var(--text-body); line-height: 1.72;}

/* Responsive Overrides (Project Only) */
@media (max-width: 1000px) {
  .project-hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 68px;
  }

  .project-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-enquiry-card {
    max-width: 560px;
  }
  .project-quick-grid { grid-template-columns: repeat(3, 1fr); }
  .project-quick-item:nth-child(4) { border-left: 1px solid var(--border-subtle); }
  .project-section-nav { top: 66px; }
  .project-section-nav-inner { justify-content: flex-start; gap: 26px; }
  .project-specifications-grid { grid-template-columns: repeat(2, 1fr); }
  .project-location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .project-overview-grid,
  .project-floor-head,
  .project-floor-grid,
  .project-floor-plan-grid,
  .project-specifications-head,
  .project-society-layout-grid,
  .project-location-head,
  .project-faq-grid {
  grid-template-columns: 1fr;
  gap: 34px;
}
  .project-gallery-head { grid-template-columns: 1fr; gap: 18px; }
  .project-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 220px; }
  .project-gallery-main { grid-column: 1 / -1; grid-row: auto; }
  .project-progress-panel { grid-template-columns: 1fr; }
  .project-progress-stats { grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(226,229,224,0.14); border-left: 0; }
  .project-progress-stats div { border-right: 1px solid rgba(226,229,224,0.14); border-bottom: 0; }
  .project-progress-stats div:last-child { border-right: 0; }
  .project-floor-card { min-height: auto; }
}
@media (max-width: 640px) {
  .project-hero {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .project-hero::before {
    background-position: 56% center;
  }

  .project-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(22, 26, 30, 0.62) 0%,
        rgba(22, 26, 30, 0.52) 56%,
        rgba(22, 26, 30, 0.42) 100%
      );
  }

  .project-hero h1 {
    font-size: 72px;
    line-height: 0.9;
  }

  .project-intro {
    font-size: 15px;
  }

  .project-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .project-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .project-enquiry-card {
    max-width: none;
    padding: 21px;
  }

  .project-enquiry-card-head h2 {
    font-size: 26px;
  }
  .project-section-nav { top: 58px; }
  .project-section-nav-inner { gap: 22px; padding-right: 22px; }
  .project-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .project-quick-item { min-height: 104px; padding: 17px 14px; }
  .project-quick-item:nth-child(3), .project-quick-item:nth-child(5) { border-left: 1px solid var(--border-subtle); }
  .project-overview-heading h2, .project-floor-head h2, .project-gallery-head h2, .project-floor-plan-copy h2, .project-specifications-head h2, .project-society-layout-copy h2, .project-location-head h2, .project-faq-heading h2 { font-size: 42px; }
  .project-overview-highlights, .project-delivery-strip, .project-specifications-grid, .project-floor-plan-facts, .project-society-layout-facts, .project-progress-stats, .project-gallery-grid { grid-template-columns: 1fr; }
  .project-gallery-grid { grid-template-rows: 340px 210px 210px; }
  .project-gallery-main { grid-column: auto; }
  .project-progress-stats div, .project-delivery-strip div { border-right: 0; border-bottom: 1px solid rgba(226,229,224,0.15); min-height: 88px; }
  .project-progress-stats div:last-child, .project-delivery-strip div:last-child { border-bottom: 0; }
  .project-location-footer { flex-direction: column; align-items: flex-start; padding: 20px; }
  .project-location-footer .btn { width: 100%; justify-content: center; }
  .project-faq-item p { padding-right: 0; }

  /* Floor Plan Mobile Fix */
  .project-floor-plan {
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
}

  .project-floor-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

  .project-floor-plan-copy {
  width: 100%;
  max-width: none;
}

  .project-floor-plan-copy h2 {
  max-width: 100%;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

  .project-floor-plan-copy > p {
  max-width: 100%;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}

  .project-floor-plan-facts {
  grid-template-columns: 1fr;
  margin: 24px 0;
}

  .project-floor-plan-facts div {
  min-height: auto;
  padding: 20px 18px;
}

  .project-floor-plan-facts strong {
  font-size: 21px;
}

  .project-floor-plan-note {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: 14px !important;
  line-height: 1.7;
}

  .project-floor-plan-copy .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

  .project-floor-plan-visual {
  width: 100%;
  margin: 0;
  padding: 12px;
}

  .project-floor-plan-visual img {
  width: 100%;
  height: auto;
  display: block;
}

  .project-floor-plan-visual figcaption {
  font-size: 10.5px;
  line-height: 1.5;
  padding-top: 12px;
}

}