/* ============================================================
   S.S PROPERTIES · Editorial Architecture Monograph
   Deep forest green · cream · brass · refined typography
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --forest: #1f3328;
  --forest-deep: #14201a;
  --moss: #2d4a3a;
  --brass: #b8924a;
  --brass-light: #d4b274;
  --cream: #f4ede0;
  --cream-soft: #faf6ec;
  --ivory: #fffcf5;
  --paper: #f9f5ea;
  --ink: #1a1a1a;
  --ink-soft: #5a5a5a;
  --rule: #ddd2b8;
  --rule-soft: #e8e0cd;
  --max-width: 1280px;
  --frame-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TYPOGRAPHY · editorial scale
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.display {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1;
}

p { margin-bottom: 1rem; color: var(--ink); }

a { color: var(--forest); text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.frame {
  width: 100%;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Eyebrow · small caps index label */
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}

.eyebrow.no-line::before { display: none; }

/* Indexed number · like an editorial issue number */
.index-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--brass);
}

/* Section numerals */
.numeral {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--brass);
  opacity: 0.35;
  line-height: 1;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--cream-soft);
  border: 1px solid var(--forest);
  cursor: pointer;
}
.btn::after { content: '→'; font-size: 14px; letter-spacing: 0; }
.btn:hover { background: var(--moss); border-color: var(--moss); }

.btn-outline {
  background: transparent;
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--cream-soft); }

.btn-light {
  background: var(--cream-soft);
  color: var(--forest);
  border-color: var(--cream-soft);
}
.btn-light:hover { background: var(--brass-light); border-color: var(--brass-light); }

.btn-ghost {
  background: transparent;
  color: var(--cream-soft);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: var(--cream-soft); color: var(--forest); border-color: var(--cream-soft); }

/* ============================================================
   HEADER · slim, refined
   ============================================================ */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  padding-right: 15px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.logo-img { /*height: 56px;*/ width: auto; }

.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-left: 10px;
}

.logo-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 2px;
  white-space: nowrap;
}

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

.nav-list a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--forest);
}

.nav-list a.active::after,
.nav-list a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brass);
}

.nav-cta {
  background: var(--forest);
  color: var(--cream-soft) !important;
  padding: 12px 22px !important;
  letter-spacing: 0.18em !important;
}
.nav-cta:hover { background: var(--moss); }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--forest);
  cursor: pointer;
  letter-spacing: 0.1em;
}

/* ============================================================
   HERO · asymmetric editorial
   ============================================================ */
.hero {
  background: var(--paper);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text .display {
  font-size: clamp(54px, 8vw, 108px);
  color: var(--forest);
  margin: 24px 0 32px;
}

.hero-text .display em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
}

.hero-text p.lead {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.hero-meta-item .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}

.hero-meta-item .value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--forest);
  line-height: 1;
}

.hero-image {
  position: relative;
  aspect-ratio: 2/1;
  background: var(--cream);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--brass);
  z-index: -1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page header (inner pages) */
.page-header {
  background: var(--paper);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--rule);
}

.page-header-inner {
  text-align: center;
}

.page-header .breadcrumb {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.page-header .breadcrumb a {
  color: var(--brass);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  color: var(--forest);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

.page-header p.lead {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 110px 0; }

.section-light { background: var(--paper); }
.section-cream { background: var(--cream-soft); }
.section-ivory { background: var(--ivory); }

.section-dark {
  background: var(--forest);
  color: var(--cream-soft);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--cream-soft);
}
.section-dark p { color: rgba(244,237,224,0.78); }

/* Section head · editorial style */
.section-head {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
}

.section-head-single {
  text-align: center;
  margin-bottom: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.section-head-single h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 68px);
  color: var(--forest);
  font-weight: 400;
  line-height: 1;
}

.section-head .head-right p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.section-head-single p {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 20px;
}

/* Decorative horizontal rule with diamond */
.rule-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 50px 0;
}
.rule-ornament::before,
.rule-ornament::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--brass);
}
.rule-ornament .diamond {
  width: 6px;
  height: 6px;
  background: var(--brass);
  transform: rotate(45deg);
}

/* ============================================================
   INTRO BLOCK · magazine 2/3 split with image overlap
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: stretch;
}

.intro-grid.reverse {
  grid-template-columns: 7fr 5fr;
}

.intro-grid > div:not(.image-wrap) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-grid .image-wrap {
  position: relative;
  background: var(--cream);
  min-height: 500px;
  height: 100%;
}

.intro-grid .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.intro-grid h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.8vw, 58px);
  color: var(--forest);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 30px;
}

.intro-grid h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  margin: 36px 0 14px;
}

.intro-grid p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

/* ============================================================
   PROJECT INDEX · editorial spread layout
   ============================================================ */
.project-index {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}

.project-spread:first-child { padding-top: 0; }
.project-spread:last-child { border-bottom: none; padding-bottom: 0; }

.project-spread.reverse .project-image { order: 2; }
.project-spread.reverse .project-info { order: 1; }

.project-image {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--cream);
}

.project-image img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}

.project-image .project-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--paper);
  color: var(--brass);
  padding: 8px 16px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  border: 1px solid var(--brass);
}

.project-info .status-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 6px 14px;
  border: 1px solid var(--brass);
  margin-bottom: 24px;
}

.project-info .status-pill.ongoing { background: var(--brass); color: var(--ivory); }

.project-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.5vw, 56px);
  color: var(--forest);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
}

.project-info p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.project-meta {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.project-meta-item .label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.project-meta-item .value {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--forest);
}

/* ============================================================
   VISION / MISSION · twin columns with rule between
   ============================================================ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.vm-card {
  padding: 70px 60px;
  position: relative;
}

.vm-card:first-child {
  border-right: 1px solid var(--rule);
}

.vm-card .numeral {
  margin-bottom: 16px;
}

.vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--forest);
  margin-bottom: 24px;
  font-weight: 400;
}

.vm-card p {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   VALUES / PRINCIPLES · 4-up minimal grid
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.value-item {
  padding: 50px 30px 50px 0;
  border-right: 1px solid var(--rule);
}

.value-item:last-child { border-right: none; padding-right: 0; }
.value-item:not(:last-child) { padding-right: 30px; }
.value-item:not(:first-child) { padding-left: 30px; }
.value-item:first-child { padding-left: 0; }

.value-item .value-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--brass);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.value-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.25;
}

.value-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================================
   PROJECT (PRATHAM DWARKA) · luxury detail page
   ============================================================ */
.project-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream-soft);
  overflow: hidden;
}

.project-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.project-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,32,26,0.3) 0%, rgba(20,32,26,0.85) 100%);
  z-index: 2;
}

.project-hero-inner {
  position: relative;
  z-index: 3;
  padding: 100px 0;
  width: 100%;
}

.project-hero .eyebrow { color: var(--brass-light); }
.project-hero .eyebrow::before { background: var(--brass-light); }

.project-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 400;
  color: var(--cream-soft);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.project-hero .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--brass-light);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.project-hero p.intro {
  font-size: 19px;
  color: rgba(244,237,224,0.85);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ============================================================
   AMENITY FEATURES · alternating editorial spreads
   ============================================================ */
.amenity-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.amenity-feature:last-child { margin-bottom: 0; }
.amenity-feature.reverse .amenity-image { order: 2; }
.amenity-feature.reverse .amenity-text { order: 1; }

.amenity-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: visible;
}

.amenity-image::before {
  content: '';
  position: absolute;
  top: -28px;
  left: -28px;
  width: 55%;
  height: 75%;
  background: var(--brass);
  opacity: 0.18;
  z-index: 0;
}

.amenity-feature.reverse .amenity-image::before {
  left: auto;
  right: -28px;
  top: auto;
  bottom: -28px;
  background: var(--forest);
  opacity: 0.12;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.amenity-text {
  position: relative;
  padding: 36px 40px;
  isolation: isolate;
}

.amenity-text::before {
  content: '';
  position: absolute;
  top: 12px;
  right: -24px;
  bottom: -24px;
  width: 60%;
  background: var(--forest);
  opacity: 0.08;
  z-index: -1;
}

.amenity-feature.reverse .amenity-text::before {
  right: auto;
  left: -24px;
  top: -24px;
  bottom: 12px;
  background: var(--brass);
  opacity: 0.15;
}

.amenity-text .numeral { margin-bottom: 8px; font-size: 60px; }

.amenity-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--forest);
  font-weight: 400;
  line-height: 1;
  margin: 16px 0 24px;
}

.amenity-text p.tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--brass);
  margin-bottom: 16px;
}

.amenity-text p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ============================================================
   AMENITIES INDEX · typographic list
   ============================================================ */
.amenities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 60px;
}

.amenities-list .item {
  padding: 26px 20px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.amenities-list .item:nth-child(3n) { border-right: none; }

.amenities-list .item .num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.amenities-list .item .label {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--forest);
}

/* ============================================================
   SPECS · newspaper-column style
   ============================================================ */
.specs-columns {
  columns: 2;
  column-gap: 80px;
  margin-top: 40px;
}

.specs-group {
  break-inside: avoid;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.specs-group:last-child { border-bottom: none; }

.specs-group h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

.specs-group ul {
  list-style: none;
  padding: 0;
}

.specs-group li {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.specs-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--brass);
}

/* ============================================================
   UNIT PLAN INDEX
   ============================================================ */
.unit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
  font-family: 'Playfair Display', serif;
}

.unit-table thead th {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--brass);
}

.unit-table tbody td {
  padding: 22px 24px;
  border-bottom: 1px solid var(--rule);
  font-size: 20px;
  color: var(--ink);
}

.unit-table tbody td:first-child {
  font-family: 'Playfair Display', serif;
  color: var(--forest);
  font-size: 22px;
}

.unit-table tbody td.num {
  text-align: right;
  font-feature-settings: 'tnum';
}

.unit-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.unit-plan-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
}

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

.unit-plan-card .label {
  padding: 18px 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.unit-plan-card .label .name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--forest);
}

.unit-plan-card .label .size {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ============================================================
   LOCATION DISTANCES · typographic ledger
   ============================================================ */
.distance-ledger {
  max-width: 680px;
  margin: 60px auto 0;
}

.distance-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px dotted var(--rule);
}

.distance-row .place {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--forest);
}

.distance-row .dist {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ============================================================
   TESTIMONIALS · pull-quote style
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 40px;
}

.testimonial {
  padding: 0;
  position: relative;
}

.testimonial .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  line-height: 1;
  color: var(--brass);
  margin-bottom: -20px;
  display: block;
}

.testimonial p.quote {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 30px;
}

.testimonial .attribution {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.testimonial .attribution::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brass);
}

.testimonial .author {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--forest);
  letter-spacing: 0.03em;
}

.testimonial .role {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   FAQ · academic / editorial
   ============================================================ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

.faq-item .faq-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--brass);
  line-height: 1;
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 20px;
}

.faq-item p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.faq-item ul {
  padding-left: 24px;
  margin: 14px 0;
  color: var(--ink-soft);
}

.faq-item ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--forest);
  color: var(--cream-soft);
  padding: 130px 0;
  text-align: center;
  position: relative;
}

.cta-strip::before,
.cta-strip::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--brass);
}

.cta-strip::before { top: 50px; }
.cta-strip::after { bottom: 50px; }

.cta-strip .eyebrow { color: var(--brass-light); }
.cta-strip .eyebrow::before { background: var(--brass-light); }

.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  color: var(--cream-soft);
  margin-bottom: 28px;
  font-weight: 400;
  line-height: 1;
}

.cta-strip p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(244,237,224,0.8);
  font-size: 22px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CONTACT LEDGER STRIP
   ============================================================ */
.contact-ledger {
  background: var(--cream-soft);
  padding: 70px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.contact-ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

.contact-ledger-item .label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}

.contact-ledger-item .value {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--forest);
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest-deep);
  color: rgba(244,237,224,0.65);
  padding: 90px 0 40px;
}

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

.footer-col .footer-logo img {
  height: 64px;
  width: auto;
  margin-bottom: 24px;
  opacity: 0.92;
}

.footer-col .signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--brass-light);
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 24px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244,237,224,0.6);
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
  font-family: 'Playfair Display', serif;
  color: rgba(244,237,224,0.75);
  font-size: 18px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--brass-light); }

.footer-bottom {
  border-top: 1px solid rgba(244,237,224,0.12);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(244,237,224,0.4);
  letter-spacing: 0.08em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .amenities-list { grid-template-columns: repeat(2, 1fr); }
  .amenities-list .item:nth-child(3n) { border-right: 1px solid var(--rule); }
  .amenities-list .item:nth-child(2n) { border-right: none; }
}

@media (max-width: 900px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 8px 0;
    box-shadow: 0 16px 32px rgba(20,32,26,0.12);
  }
  .nav-list.open { display: flex; }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 16px 24px;
    font-size: 13px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .nav-list li:last-child a { border-bottom: none; }
  .nav-list a.active::after,
  .nav-list a:hover::after { display: none; }
  .nav-cta {
    margin: 8px 24px;
    text-align: center;
    width: calc(100% - 48px);
  }
  .site-header { position: relative; }
  .menu-toggle { display: block; }
  .container, .frame { padding: 0 24px; }

  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-image { aspect-ratio: 4/3; max-width: 500px; margin: 0 auto; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }

  section { padding: 70px 0; }

  .section-head { grid-template-columns: 1fr; gap: 30px; }

  .intro-grid, .intro-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-grid .image-wrap {
    min-height: 0;
    height: auto;
    aspect-ratio: 4/3;
    max-width: 100%;
    margin: 0;
  }

  .project-spread, .project-spread.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0;
  }
  .project-spread.reverse .project-image { order: 1; }
  .project-spread.reverse .project-info { order: 2; }

  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 50px 30px; }
  .vm-card:first-child { border-right: none; border-bottom: 1px solid var(--rule); }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-item { padding: 40px 20px; border-right: 1px solid var(--rule); }
  .value-item:nth-child(2n) { border-right: none; }
  .value-item:not(:last-child):not(:nth-last-child(2)) { border-bottom: 1px solid var(--rule); }

  .amenity-feature, .amenity-feature.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 70px;
  }
  .amenity-feature.reverse .amenity-image { order: 1; }
  .amenity-feature.reverse .amenity-text { order: 2; }
  /* Disable decorative offset patches on mobile (they cause horizontal overflow) */
  .amenity-image::before,
  .amenity-feature.reverse .amenity-image::before,
  .amenity-text::before,
  .amenity-feature.reverse .amenity-text::before {
    display: none;
  }
  .amenity-image { overflow: hidden; }
  .amenity-text { padding: 0; }

  .specs-columns { columns: 1; }

  .unit-plans-grid { grid-template-columns: 1fr; gap: 24px; }

  .testimonial-grid { grid-template-columns: 1fr; gap: 50px; }

  .faq-item { grid-template-columns: 1fr; gap: 12px; }

  .contact-ledger-grid { grid-template-columns: 1fr; gap: 30px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cta-strip { padding: 80px 0; }
}

@media (max-width: 600px) {
  .container, .frame { padding: 0 20px; }
  .header-inner { padding: 16px 0; }
  .amenities-list { grid-template-columns: 1fr; }
  .amenities-list .item:nth-child(n) { border-right: none; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item:nth-child(n) { border-right: none; border-bottom: 1px solid var(--rule); }
  .value-item:last-child { border-bottom: none; }
  .unit-table tbody td { padding: 14px 12px; font-size: 14px; }
  .unit-table tbody td:first-child { font-size: 17px; }

  /* Headings scale down so they never overflow */
  section { padding: 56px 0; }
  .section-head h2,
  .section-head-single h2 { font-size: clamp(30px, 8vw, 40px); }
  .intro-grid h2 { font-size: clamp(28px, 7.5vw, 38px); }
  .project-info h3 { font-size: clamp(28px, 8vw, 40px); }
  .amenity-text h3 { font-size: clamp(26px, 7.5vw, 36px); }
  .cta-strip h2 { font-size: clamp(30px, 8vw, 42px); }
  .lead-form-text h2 { font-size: clamp(28px, 7.5vw, 38px); }

  /* Lead form fits small screens */
  .lead-form { padding: 28px 20px; }
  .lead-form-wrap { gap: 36px; }

  /* Action cards spacing */
  .action-card { padding: 36px 24px; }

  /* Walkthrough play button smaller */
  .play-button { width: 56px; height: 56px; }

  /* Footer tighten */
  .site-footer { padding: 60px 0 32px; }
  .cta-strip { padding: 64px 0; }

  /* Prevent any horizontal overflow */
  body { overflow-x: hidden; }
}

/* ============================================================
   PAGE BANNER · image hero for inner pages
   ============================================================ */
.page-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  color: var(--cream-soft);
  overflow: hidden;
}

.page-banner img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,32,26,0.25) 0%, rgba(20,32,26,0.78) 100%);
  z-index: 2;
}

.page-banner-inner {
  position: relative;
  z-index: 3;
  padding: 90px 22px 70px;
  width: 100%;
}

.page-banner .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,237,224,0.7);
  margin-bottom: 28px;
}

.page-banner .breadcrumb a {
  color: var(--brass-light);
  border-bottom: 1px solid rgba(212,178,116,0.4);
  padding-bottom: 2px;
}

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 104px);
  color: var(--cream-soft);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

.page-banner p.lead {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-style: italic;
  color: rgba(244,237,224,0.85);
  margin-top: 28px;
  max-width: 620px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .page-banner { min-height: 340px; }
  .page-banner-inner {
    padding: 50px 24px 40px;
  }
  .page-banner h1 { font-size: clamp(40px, 9vw, 60px); }
  .page-banner .breadcrumb { margin-bottom: 18px; font-size: 10px; }
  .page-banner p.lead { font-size: 17px; margin-top: 18px; }
}

/* Logo text lockup - responsive */
@media (max-width: 700px) {
  .logo-tagline { font-size: 11px; }
  .logo-img { height: 44px; }
}

/* ============================================================
   HOME BANNER · full-width hero image with overlay
   ============================================================ */
.home-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--cream-soft);
  isolation: isolate;
}

.home-banner img.bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}

/* Sizer to keep natural 2:1 ratio without cropping */
.home-banner::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 50%;
}

/* Right-side gradient overlay only · keeps left half (building) bright */
.home-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(20,32,26,0) 0%,
    rgba(20,32,26,0) 38%,
    rgba(20,32,26,0.55) 75%,
    rgba(20,32,26,0.75) 100%);
  z-index: 2;
}

/* Text container · positioned on right half */
.home-banner-inner {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  width: 50%;
  padding: 0 6vw 0 3vw;
}

.home-banner h1.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 88px);
  color: var(--cream-soft);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: 0.005em;
  font-weight: 500;
}

.home-banner p.lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 24px);
  color: var(--brass-light);
  letter-spacing: 0.05em;
  max-width: none;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .home-banner { display: block; }
  .home-banner::before { padding-top: 60%; }
  .home-banner::after {
    background: linear-gradient(180deg,
      rgba(20,32,26,0) 0%,
      rgba(20,32,26,0.2) 45%,
      rgba(20,32,26,0.78) 100%);
  }
  .home-banner-inner {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    width: 100%;
    padding: 40px 24px;
    text-align: left;
  }
  .home-banner h1.display { font-size: clamp(34px, 8vw, 54px); }
  .home-banner p.lead { font-size: 17px; }
}

@media (max-width: 600px) {
  .home-banner::before { padding-top: 90%; }
  .home-banner-inner { padding: 30px 20px; }
  .home-banner h1.display { font-size: 32px; }
  .home-banner p.lead { font-size: 15px; }
}
}

/* ============================================================
   ACTION CARDS · 3-up lead/floor-plans/brochure
   ============================================================ */
.action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.action-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brass);
  padding: 50px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s;
}

.action-card:hover {
  border-top-color: var(--forest);
  transform: translateY(-3px);
}

.action-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  margin-bottom: 24px;
}

.action-icon svg {
  width: 100%;
  height: 100%;
}

.action-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 14px;
  line-height: 1.2;
}

.action-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 12px 24px;
  border: 1px solid var(--forest);
  transition: background 0.2s, color 0.2s;
}

.action-link::after { content: '→'; letter-spacing: 0; }

.action-link:hover {
  background: var(--forest);
  color: var(--cream-soft);
}

/* ============================================================
   LEAD FORM · two-column with form on right
   ============================================================ */
.lead-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.lead-form-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--forest);
  font-weight: 400;
  line-height: 1.05;
  margin: 16px 0 24px;
}

.lead-form-text p {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.55;
}

.lead-form-contact {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.contact-row {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dotted var(--rule);
}

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

.contact-row .label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  flex-shrink: 0;
  width: 60px;
}

.contact-row .value {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--forest);
}

.lead-form {
  background: var(--ivory);
  padding: 48px 44px;
  border: 1px solid var(--rule);
}

.form-row {
  margin-bottom: 22px;
}

.form-row label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--forest);
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
  font-family: 'Poppins', sans-serif;
}

.lead-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .action-cards { grid-template-columns: 1fr; gap: 20px; }
  .action-card { padding: 40px 30px; }
  .lead-form-wrap { grid-template-columns: 1fr; gap: 50px; }
  .lead-form { padding: 36px 28px; }
}

/* ============================================================
   PROJECT LOGO · Pratham Dwarka in hero
   ============================================================ */
.project-logo {
  display: block;
  max-width: 480px;
  width: 100%;
  height: auto;
  margin: 16px 0 32px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}

@media (max-width: 700px) {
  .project-logo { max-width: 320px; margin: 12px 0 24px; }
}

/* ============================================================
   WALKTHROUGH · YouTube thumbnail with play button
   ============================================================ */
.walkthrough-wrap {
  max-width: 980px;
  margin: 40px auto 0;
  position: relative;
}

.walkthrough-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--forest-deep);
  border: 1px solid rgba(212,178,116,0.3);
  cursor: pointer;
}

.walkthrough-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s, transform 0.6s;
}

.walkthrough-thumb:hover img {
  filter: brightness(0.95);
  transform: scale(1.02);
}

.walkthrough-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,32,26,0.1) 0%, rgba(20,32,26,0.5) 100%);
  pointer-events: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  z-index: 2;
  transition: transform 0.25s;
}

.walkthrough-thumb:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-button svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}

.walkthrough-label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-soft);
  z-index: 2;
}

@media (max-width: 700px) {
  .play-button { width: 64px; height: 64px; }
  .walkthrough-label { bottom: 18px; font-size: 10px; }
}

/* ============================================================
   SECTION LOGO · Pratham Dwarka logo in section heads
   ============================================================ */
.section-logo {
  display: block;
  max-width: 420px;
  width: 100%;
  height: auto;
  margin-top: 16px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.25));
}

@media (max-width: 700px) {
  .section-logo { max-width: 300px; }
}

/* Pratham Dwarka logo on light/cream sections */
.section-logo-light {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 28px;
}

@media (max-width: 700px) {
  .section-logo-light { max-width: 240px; margin-bottom: 20px; }
}

/* ============================================================
   PROJECT HERO · image-only variant (no text overlay)
   Matches homepage banner height (2:1 ratio)
   ============================================================ */
.project-hero-image-only {
  min-height: 0;
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.project-hero-image-only::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 50%;
}

.project-hero-image-only img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.project-hero-image-only::after {
  display: none;
}

@media (max-width: 900px) {
  .project-hero-image-only::before { padding-top: 60%; }
}

@media (max-width: 600px) {
  .project-hero-image-only::before { padding-top: 90%; }
}
