/* ===== PROJECT PAGE STYLES ===== */

/* ── Global white text for parallax sections ── */
.project-summary, .story-section, .villas-section,
.layout-section, .location-section, .why-section {
  color: white;
}

.project-summary h1, .project-summary h2, .project-summary h3,
.project-summary p, .project-summary span { color: white; }

.story-section h1, .story-section h2, .story-section h3, .story-section p,
.villas-section h1, .villas-section h2, .villas-section h3, .villas-section p,
.layout-section h1, .layout-section h2, .layout-section h3, .layout-section p,
.location-section h1, .location-section h2, .location-section h3, .location-section p,
.why-section h1, .why-section h2, .why-section h3, .why-section p,
.why-section div, .why-section span {
  color: white;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}

.project-summary .eyebrow, .story-section .eyebrow,
.villas-section .eyebrow, .layout-section .eyebrow,
.location-section .eyebrow, .why-section .eyebrow {
  color: var(--moss);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.project-summary .summary-cell,
.project-summary .summary-callout {
  background: rgba(6, 12, 6, 0.45);
  border-color: rgba(255,255,255,0.15);
}

.villas-section .villa-card,
.villas-section .villa-tab {
  background: rgba(6, 12, 6, 0.50);
  border-color: rgba(255,255,255,0.15);
  color: white;
}

.location-section .location-detail,
.location-section .location-stat {
  background: rgba(6, 12, 6, 0.45);
  border-color: rgba(255,255,255,0.15);
}

.why-section {
  position: relative;
  padding: 100px 0;
  background-image: url('https://images.unsplash.com/photo-1440342359743-84fcb8c21f21?w=1200&q=60&fit=crop&auto=format&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6, 12, 6, 0.48); z-index: 0;
}
.why-section > .container { position: relative; z-index: 1; }

.why-section h2, .why-section h3,
.why-section p, .why-section div, .why-section span {
  color: white !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.why-section .eyebrow { color: var(--moss) !important; }
.why-section [style*="background:var(--ivory)"] {
  background: rgba(6,12,6,0.45) !important;
}

@media (max-width: 768px) {
  .why-section { background-attachment: scroll; }
}

/* Breadcrumb */
.breadcrumb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 0;
  overflow: visible;
  pointer-events: none;
}

.breadcrumb-inner {
  display: none;
  padding: 8px var(--container-pad);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-2);
  font-family: var(--font-body);
  align-items: center;
  gap: 8px;
  pointer-events: all;
}

.navbar.scrolled + .breadcrumb .breadcrumb-inner,
body.scrolled .breadcrumb-inner {
  display: flex;
}

/* PROJECT HERO */
.project-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.project-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns-project 14s ease-in-out infinite alternate;
}

@keyframes kenburns-project {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07) translate(-0.5%, 0.5%); }
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,16,10,0.4) 0%,
    rgba(10,16,10,0.2) 40%,
    rgba(10,16,10,0.8) 100%
  );
}

.project-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  padding-bottom: 12vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-hero h1 {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 300;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.project-hero .hero-subline {
  color: var(--text-on-dark-2);
  font-size: 16px;
  max-width: 460px;
  line-height: 1.7;
  text-align: center;
}

.project-hero .hero-eyebrow {
  text-align: center;
}

.project-hero .hero-cta-row {
  justify-content: center;
}

/* PROJECT SUMMARY TABLE */
.project-summary {
  position: relative;
  padding: 80px 0;
  background-image: url('https://images.unsplash.com/photo-1425913397330-cf8af2ff40a1?w=1200&q=60&fit=crop&auto=format&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.project-summary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6, 12, 6, 0.78); z-index: 0;
}
.project-summary > .container { position: relative; z-index: 1; }

@media (max-width: 768px) { .project-summary { background-attachment: scroll; } }

.summary-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border-light);
}

.summary-cell {
  padding: 24px 28px;
  border-right: 1px solid var(--border-light);
}

.summary-cell:last-child { border-right: none; }

.summary-cell-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-bottom: 8px;
  display: block;
}

.summary-cell-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--forest-mid);
  line-height: 1.4;
}

.summary-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
}

.summary-callout {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border-light);
}

.summary-callout:last-child { border-right: none; }

.summary-callout-check {
  color: var(--canopy);
  font-size: 16px;
  flex-shrink: 0;
}

.summary-callout-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  max-width: none;
}

/* STORY SECTION */
.story-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?w=1200&q=60&fit=crop&auto=format&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.story-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6, 12, 6, 0.68); z-index: 0;
}
.story-section > .container { position: relative; z-index: 1; }

.story-section h1, .story-section h2, .story-section h3,
.story-section p, .story-section span, .story-section div {
  color: white !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.story-section .eyebrow { color: var(--moss) !important; }

@media (max-width: 768px) { .story-section { background-attachment: scroll; } }

.story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  color: var(--forest-mid);
  line-height: 1.15;
  margin-bottom: 32px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 600px;
}

.story-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
}

.story-stat-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.story-stat-row:last-child { border-bottom: none; }

.story-stat-number {
  font-family: var(--font-mono);
  font-size: 36px;
  color: var(--forest-mid);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}

.story-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: none;
}

/* VILLAS SECTION */
.villas-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1518098268026-4e89f1a2cd8e?w=1200&q=60&fit=crop&auto=format&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.villas-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6, 12, 6, 0.48); z-index: 0;
}
.villas-section > .container { position: relative; z-index: 1; }

@media (max-width: 768px) { .villas-section { background-attachment: scroll; } }

.villas-header {
  margin-bottom: 60px;
}

.villas-tabs {
  display: flex;
  gap: 4px;
  border-bottom: none;
  margin-bottom: 40px;
  background: rgba(216,210,196,0.3);
  padding: 5px;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.villa-tab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 30px;
  cursor: pointer;
  border: none;
  background: none;
  border-radius: 100px;
  border-bottom: none;
  transition: all 0.25s ease;
  position: relative;
  bottom: 0;
}

.villa-tab.active {
  color: white;
  background: var(--forest-deep);
  border-bottom-color: transparent;
  box-shadow: 0 2px 10px rgba(26,42,26,0.25);
}

.villa-tab:hover:not(.active) {
  color: var(--forest-mid);
  background: rgba(26,42,26,0.08);
}

.villa-tab-content {
  display: none;
}

.villa-tab-content.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  animation: tabFadeIn 0.3s ease;
}

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

.villa-spec-card {
  padding: 32px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(216,210,196,0.6);
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(26,42,26,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}

.villa-spec-card:hover {
  box-shadow: 0 6px 32px rgba(26,42,26,0.1);
  transform: translateY(-2px);
}

.villa-spec-card-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(216,210,196,0.8);
}

.villa-spec-row {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(216,210,196,0.35);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: none;
}

.villa-spec-row::before {
  content: '✓';
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--moss);
  line-height: 18px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.villa-spec-row:last-child { border-bottom: none; }

.villa-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 48px;
}

.villa-images-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.3s, transform 0.4s;
}

.villa-images-grid img:hover {
  opacity: 1;
  transform: scale(1.02);
}

.villa-images-grid img:hover { opacity: 0.85; }

/* LIFE AT ZERO AQI */
.life-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=1200&q=60&fit=crop&auto=format&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.life-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 6, 0.65);
  z-index: 0;
}

.life-bg { display: none; }

.life-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .life-section { background-attachment: scroll; }
}

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

.life-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.life-card {
  backdrop-filter: blur(12px);
  background: rgba(10,16,10,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
}

.life-card-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.life-card-item {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-on-dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.life-card-item::before {
  content: '·';
  color: var(--moss);
  flex-shrink: 0;
  font-size: 20px;
  line-height: 0;
  margin-top: 2px;
}

.life-card-item:last-child { border-bottom: none; }

/* INVESTMENT SECTION */
.investment-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1200&q=60&fit=crop&auto=format&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.investment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 6, 0.72);
  z-index: 0;
}

.investment-section > .container { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .investment-section { background-attachment: scroll; }
}

.investment-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.investment-header h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: white;
  margin-bottom: 20px;
  line-height: 1.15;
}

.investment-header p {
  font-size: 16px;
  color: var(--text-on-dark-2);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Revenue table */
.revenue-table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
}

.revenue-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.revenue-table th {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-2);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.revenue-table th.base-col {
  color: var(--moss);
  background: rgba(168,200,128,0.06);
}

.revenue-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-on-dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-body);
}

.revenue-table td.row-label {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.revenue-table td.base-col {
  color: var(--moss);
  background: rgba(168,200,128,0.04);
  font-family: var(--font-mono);
}

.revenue-table tr.total-row td {
  font-family: var(--font-mono);
  font-size: 16px;
  color: white;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: none;
  padding-top: 18px;
  padding-bottom: 18px;
}

.revenue-table tr.total-row td.row-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-on-dark-2);
  font-family: var(--font-body);
}

.revenue-table tr.total-row td.base-col {
  color: var(--moss);
  font-size: 18px;
}

.revenue-disclaimer {
  font-size: 11px;
  color: var(--text-on-dark-2);
  max-width: 600px;
  margin: 16px auto;
  text-align: center;
  font-style: italic;
  line-height: 1.7;
}

/* Ownership cards */
.ownership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.ownership-card {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.ownership-card.highlighted {
  background: rgba(168,200,128,0.08);
  border-color: rgba(168,200,128,0.3);
}

.recommended-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest-deep);
  background: var(--moss);
  padding: 4px 10px;
  font-family: var(--font-body);
}

.ownership-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  font-weight: 400;
  margin-bottom: 16px;
}

.ownership-card p {
  font-size: 14px;
  color: var(--text-on-dark-2);
  line-height: 1.8;
  max-width: none;
}

/* LAYOUT PLAN */
.layout-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1200&q=60&fit=crop&auto=format&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.layout-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6, 12, 6, 0.48); z-index: 0;
}
.layout-section > .container { position: relative; z-index: 1; }

@media (max-width: 768px) { .layout-section { background-attachment: scroll; } }

.layout-plan-img-wrap {
  position: relative;
  margin: 48px 0;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

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

/* Plot tooltip */
.plot-tooltip {
  position: absolute;
  background: var(--forest-deep);
  color: white;
  padding: 12px 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
  min-width: 160px;
  border: 1px solid rgba(168,200,128,0.2);
}

.plot-tooltip.visible { opacity: 1; }

.plot-tooltip-plot {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--moss);
  text-transform: uppercase;
  margin-bottom: 4px;
  max-width: none;
}

.plot-tooltip-area {
  font-family: var(--font-mono);
  font-size: 16px;
  color: white;
  max-width: none;
}

.plot-tooltip-acres {
  font-size: 11px;
  color: var(--text-on-dark-2);
  max-width: none;
}

/* Plot table */
.plot-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
}

.plot-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.plot-table th {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.plot-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.plot-table td:first-child,
.plot-table td:nth-child(2) {
  font-family: var(--font-mono);
  color: white;
}

.plot-status-resort { color: rgba(255,255,255,0.45); }
.plot-status-available { color: var(--moss); font-weight: 400; }

/* LOCATION */
.location-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1200&q=60&fit=crop&auto=format&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.location-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6, 12, 6, 0.62); z-index: 0;
}
.location-section > .container,
.location-section > .location-grid { position: relative; z-index: 1; }

.location-section h1, .location-section h2, .location-section h3,
.location-section p, .location-section span, .location-section div,
.location-section td, .location-section th, .location-section strong {
  color: white !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.location-section .eyebrow { color: var(--moss) !important; }
.location-section .location-gps { color: rgba(255,255,255,0.6) !important; }

@media (max-width: 768px) { .location-section { background-attachment: scroll; } }

.location-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
}

.location-map {
  height: 560px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}

.location-info {
  padding: 48px;
  background: transparent;
}

.location-gps {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-top: 8px;
  margin-bottom: 32px;
  display: block;
  max-width: none;
}

.distance-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.distance-table th {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-body);
}

.distance-table td {
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.distance-table td:nth-child(2),
.distance-table td:nth-child(3) {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.benchmark-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.benchmark-table {
  width: 100%;
  border-collapse: collapse;
}

.benchmark-table td {
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  vertical-align: top;
}

.benchmark-table td:last-child {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-align: right;
}

/* PROJECT ENQUIRE */
.project-enquire-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1508739773434-c26b3d09e071?w=1200&q=60&fit=crop&auto=format&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.project-enquire-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 6, 0.72);
  z-index: 0;
}

.project-enquire-section > .container { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .project-enquire-section {
    background-attachment: scroll;
  }
}

.project-enquire-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.project-enquire-inner h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.project-enquire-inner > p {
  font-size: 16px;
  color: var(--text-on-dark-2);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 48px;
}

.project-enquire-inner .enquiry-form {
  text-align: left;
}

.brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  font-family: var(--font-body);
  transition: color 0.3s;
}

.brochure-link:hover { color: var(--canopy); }

/* RESPONSIVE PROJECT PAGE */
@media (max-width: 1024px) {
  .summary-table {
    grid-template-columns: repeat(3, 1fr);
  }

  .summary-table .summary-cell:nth-child(4) {
    border-top: 1px solid var(--border-light);
  }

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

  .life-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .location-map {
    height: 360px;
  }

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

  .villa-tab-content.active {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .villas-tabs {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
  }

  .villa-tab {
    flex: 1;
    padding: 10px 12px;
    text-align: center;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .project-hero h1 {
    font-size: 52px;
    text-align: center;
  }

  .project-hero-content {
    align-items: center;
    text-align: center;
    padding-bottom: 18vh;
  }

  .project-hero .hero-eyebrow {
    text-align: center;
  }

  .project-hero .hero-subline {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .project-hero .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .project-hero .hero-cta-row a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .summary-table {
    grid-template-columns: 1fr 1fr;
  }

  .summary-callouts {
    grid-template-columns: 1fr;
  }

  .summary-callout {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

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

  .location-info {
    padding: 32px var(--container-pad);
  }
}

/* ── New strategic sections: mobile responsive ── */
@media (max-width: 768px) {
  /* Tiger reserve stats grid */
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* 3-col grids → 1 col */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* 2-col grids → 1 col */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  /* Tiger reserve banner side strip */
  [style*="grid-template-columns:1fr auto 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr auto 1fr"] > [style*="width:1px"] {
    display: none;
  }
  [style*="grid-template-columns:1fr auto 1fr"] > div:last-child {
    justify-content: flex-start !important;
  }
  /* Tribal trail grid */
  [style*="grid-template-columns:1fr 1fr;gap:80px"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  /* Calendar grid */
  [style*="grid-template-columns:repeat(2,1fr);gap:2px"] {
    grid-template-columns: 1fr !important;
  }
  /* Arrival cards */
  [style*="grid-template-columns:1fr 1fr;gap:80px;align-items"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
