/* ============================================
   INNER PAGES — inner.css
   Complete CSS for all WordPress inner pages
   ============================================ */

/* ── SHARED LAYOUT ── */
.section { padding: 90px 0; }
.section-white  { background: #fff; }
.section-cream  { background: var(--cream-light); }
.section-navy   { background: var(--navy); color: var(--cream); }

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

/* Typography — see styles.css for .display .btn .rule .eyebrow */


/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(217,179,130,.07) 0%, transparent 60%),
    linear-gradient(135deg, rgba(217,179,130,.04) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217,179,130,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,179,130,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.page-hero-label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 0;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero-rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
  margin: 28px 0;
}
.page-hero-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(246,240,230,.82);
  max-width: 580px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream-light);
  border-bottom: 1px solid var(--line);
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.breadcrumb-inner a {
  color: var(--navy);
  opacity: .55;
  transition: opacity .3s;
}
.breadcrumb-inner a:hover { opacity: 1; color: var(--gold); }
.breadcrumb-sep { color: var(--gold); opacity: .5; }
.breadcrumb-current { color: var(--navy); opacity: .9; }

/* ── CHECKPOINT / CTA BLOCK ── */
.checkpoint {
  background: var(--navy);
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  margin-top: 64px;
}
.checkpoint::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.checkpoint-label {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  opacity: .7;
  margin-bottom: 10px;
}
.checkpoint-title {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 8px;
}
.checkpoint-title em { color: var(--gold); font-style: italic; }
.checkpoint-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246,240,230,.6);
  max-width: 480px;
}
.checkpoint-actions { flex-shrink: 0; }

/* ════════════════════════════════
   ABOUT PAGE
════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text > p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.82;
  margin-bottom: 18px;
}
.about-lead {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--maroon);
  line-height: 1.65;
  margin-bottom: 22px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}
.brand-quote {
  background: var(--navy);
  color: var(--cream);
  padding: 36px;
  margin-top: 36px;
  position: relative;
  overflow: hidden;
}
.brand-quote::before {
  content: "\201C";
  position: absolute;
  top: -15px; left: 18px;
  font-family: var(--display);
  font-size: 110px;
  color: var(--gold);
  line-height: 1;
  opacity: .2;
}
.bq-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.68;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}
.bq-sub {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  font-family: var(--display);
  opacity: .8;
  position: relative;
  z-index: 1;
}
.about-art-box {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,33,71,.13);
}
.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
}
.about-visual:hover .about-main-img { transform: scale(1.03); }
.about-est-pill {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--navy);
  color: var(--cream);
}
.aep-num { font-family: var(--display); font-size: 13px; letter-spacing: 2px; color: var(--gold); opacity: .7; }
.aep-yr  { font-family: var(--display); font-size: 32px; color: var(--gold); letter-spacing: 2px; line-height: 1; }
.aep-lbl { font-size: 10px; letter-spacing: 3px; color: rgba(246,240,230,.6); text-transform: uppercase; font-weight: 700; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(217,179,130,.2);
  margin-top: 56px;
  box-shadow: 0 30px 70px rgba(0,33,71,.18);
}
.team-card {
  background: var(--navy);
  padding: 52px 44px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: background .4s;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}
.team-card:hover { background: var(--navy-deep, #001535); }
.team-avatar {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0,15,35,.85);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.team-name, .team-body h3 { font-family: var(--display); font-size: 26px; color: var(--cream); font-weight: 500; margin-bottom: 6px; line-height: 1.15; }
.team-role { font-family: var(--display); font-style: italic; color: var(--gold); font-size: 14px; margin-bottom: 14px; opacity: 1; }
.team-expertise {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; line-height: 1.6; opacity: .95;
}
.team-bio, .team-body > p { font-size: 14.5px; color: rgba(246,240,230,.92); line-height: 1.8; font-weight: 400; margin-top: 6px; }

/* ════════════════════════════════
   SERVICES PAGE
════════════════════════════════ */
.services-intro {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--maroon);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
  padding: 32px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
  background: var(--line);
}
.service-card {
  background: var(--cream-light);
  padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: all .4s;
}
.service-card:hover {
  background: white;
  border-top-color: var(--maroon);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,33,71,.07);
  z-index: 2;
  position: relative;
}
.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.service-num {
  font-size: 9.5px; font-weight: 700; letter-spacing: 3px;
  color: var(--maroon); text-transform: uppercase; margin-bottom: 18px; opacity: .6;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 21px; color: var(--navy); font-weight: 500; margin-bottom: 14px; line-height: 1.3;
}
.service-card p { font-size: 15px; color: var(--ink); line-height: 1.8; }

/* ════════════════════════════════
   CORRIDORS PAGE
════════════════════════════════ */
.corridor-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.corridor-layout.reverse { direction: rtl; }
.corridor-layout.reverse > * { direction: ltr; }
.corridor-art {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.corridor-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
}
.corridor-layout:hover .corridor-art-img { transform: scale(1.04); }
.corridor-num {
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px; opacity: .8;
}
.corridor-content h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3.8vw, 48px);
  color: var(--navy); font-weight: 400; line-height: 1.1; margin-bottom: 8px;
}
.corridor-content .audience {
  font-family: var(--display);
  font-style: italic; color: var(--maroon); font-size: 14px; margin-bottom: 20px;
}
.corridor-content .rule { margin-bottom: 20px; }
.corridor-headline {
  font-family: var(--display);
  font-style: italic; font-size: 18px; color: var(--maroon); line-height: 1.4; margin-bottom: 20px;
}
.corridor-content p {
  font-size: 15.5px; color: var(--ink); line-height: 1.8; margin-bottom: 18px;
}
.keyfacts {
  background: var(--cream-light);
  border-left: 3px solid var(--gold);
  padding: 26px 30px;
  margin: 28px 0;
}
.keyfacts-title {
  font-size: 9.5px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.kf-row {
  display: flex; gap: 12px; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.kf-row:last-child { border-bottom: none; }
.kf-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy); min-width: 100px; opacity: .65;
}
.kf-val { font-size: 15px; color: var(--ink); font-style: italic; font-family: var(--display); }

/* ════════════════════════════════
   PROJECTS PAGE
════════════════════════════════ */
.listings-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 28px;
}
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 10px 24px; background: transparent;
  border: 1px solid var(--line); color: var(--ink-soft);
  font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; cursor: pointer; transition: all .3s;
}
.chip.active, .chip:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.listings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.listing-card {
  background: white; border: 1px solid var(--line);
  transition: all .4s; overflow: hidden; display: flex; flex-direction: column;
}
.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 55px rgba(0,33,71,.1);
  border-color: var(--gold);
}
.listing-art {
  aspect-ratio: 16/10; overflow: hidden;
  position: relative; flex-shrink: 0; background: var(--navy);
}
.listing-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.listing-card:hover .listing-photo { transform: scale(1.06); }
.listing-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--maroon); color: var(--cream);
  padding: 5px 12px; font-size: 8px; letter-spacing: 2.5px; font-weight: 700; text-transform: uppercase;
}
.listing-corridor-tag {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: rgba(0,21,48,.9); color: var(--gold);
  padding: 5px 12px; font-size: 8px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase;
}
.listing-body { padding: 26px 28px; flex: 1; display: flex; flex-direction: column; }
.listing-body h3 {
  font-family: var(--display); font-size: 20px; color: var(--navy);
  line-height: 1.25; margin-bottom: 8px; font-weight: 500;
}
.listing-loc {
  font-family: var(--display); font-style: italic;
  color: var(--maroon); font-size: 14px; margin-bottom: 16px;
}
.listing-specs {
  display: flex; gap: 18px; padding: 12px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 14px;
}
.lspec { flex: 1; }
.lspec .lbl {
  font-size: 8px; color: var(--maroon); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}
.lspec .val { font-size: 13px; color: var(--navy); font-weight: 700; }
.listing-legal {
  font-size: 9.5px; color: #4a7c3a; letter-spacing: 1.5px;
  font-weight: 700; text-transform: uppercase;
  display: flex; align-items: center; gap: 7px; margin-bottom: 14px;
}
.listing-legal::before {
  content: "✓"; width: 16px; height: 16px; background: #4a7c3a;
  color: white; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0;
}
.listing-actions {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-top: auto; padding-top: 14px;
}
.listing-link {
  font-size: 9.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px;
  transition: all .3s; align-self: flex-start;
}
.listing-link:hover { color: var(--maroon); border-color: var(--maroon); }
.listing-wa {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: #25D366; color: white;
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; transition: background .3s;
}
.listing-wa:hover { background: #1ea355; color: white; }
.listing-no-img {
  width: 100%; height: 100%; min-height: 200px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,240,230,.2); font-size: 12px; font-style: italic;
}
.listings-footer { margin-top: 48px; }
.pricing-note-box {
  padding: 36px 44px; background: var(--navy);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.pricing-note-box p {
  font-family: var(--display); font-style: italic;
  color: rgba(246,240,230,.88); font-size: 15.5px; line-height: 1.65; flex: 1;
}

/* Fallback bg per listing type */
.listing-art-dwarka-apt  { background: #001a3d; }
.listing-art-yeida-apt   { background: #001228; }
.listing-art-hills-apt   { background: #1a0a0a; }

/* ════════════════════════════════
   SINGLE PROPERTY PAGE
════════════════════════════════ */
.property-single-layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start;
}
.property-images {
  position: sticky;
  top: 100px;
}
.property-main-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.property-gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-top: 8px;
}
.property-gallery-img {
  width: 100%;
  height: auto;
  max-height: 160px;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: opacity .3s;
}
.property-gallery-img:hover { opacity: .82; }
.property-no-img {
  background: var(--navy);
  aspect-ratio: 4/3;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,240,230,.3);
  font-style: italic;
  font-size: 14px;
}
.pd-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pd-header h2 {
  font-family: var(--display); font-size: 32px; color: var(--navy); font-weight: 400; margin-bottom: 8px;
}
.pd-facts {
  background: var(--cream-light); border-left: 3px solid var(--gold);
  padding: 24px 28px; margin-bottom: 24px;
}
.pd-fact-row {
  display: flex; gap: 16px; padding: 10px 0;
  border-bottom: 1px solid var(--line); align-items: baseline;
}
.pd-fact-row:last-child { border-bottom: none; }
.pd-fact-label {
  font-family: var(--sans); font-size: 9.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); opacity: .65; min-width: 120px; flex-shrink: 0;
}
.pd-fact-val { font-family: var(--display); font-style: italic; font-size: 15px; color: var(--ink); }
.pd-description { margin-bottom: 24px; }
.pd-description h4 {
  font-family: var(--display); font-size: 18px; color: var(--navy); margin-bottom: 10px; font-weight: 500;
}
.pd-description p { font-size: 15.5px; color: var(--ink); line-height: 1.8; }
.pd-pricing-note {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--display); font-style: italic; font-size: 14px;
  color: var(--ink); line-height: 1.65;
  padding: 16px 20px;
  background: rgba(217,179,130,.08); border: 1px solid rgba(217,179,130,.25);
  margin-bottom: 28px;
}
.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; background: #25D366; color: white;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; transition: all .3s;
}
.pd-whatsapp:hover { background: #1ea355; color: white; }
.pd-consult {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; background: var(--navy); color: var(--gold);
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; transition: all .3s;
}
.pd-consult:hover { background: var(--maroon); color: var(--cream); }

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.contact-info > h2 {
  font-family: var(--display); font-size: clamp(28px,3.5vw,44px);
  color: var(--cream); font-weight: 400; line-height: 1.1; margin-bottom: 0;
}
.cd-items { margin: 28px 0 36px; }
.cd-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px;
  align-items: baseline; padding: 16px 0;
  border-bottom: 1px solid rgba(217,179,130,.12);
}
.cd-item:first-child { border-top: 1px solid rgba(217,179,130,.12); }
.cd-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); opacity: .8;
}
.cd-val {
  color: rgba(246,240,230,.9); font-size: 15px;
  font-family: var(--display); font-style: italic; line-height: 1.6;
}
.cd-val a { color: var(--gold); border-bottom: 1px solid rgba(217,179,130,.3); transition: color .3s; }
.cd-val a:hover { color: var(--cream); }
.contact-form-wrap {
  background: white; padding: 48px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,33,71,.1);
}
.cfh-title {
  font-family: var(--display); font-size: 24px;
  color: var(--navy); font-weight: 500; margin-bottom: 8px;
}
.consult-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--sans); font-size: 9.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--navy); opacity: .75;
}
.req { color: var(--maroon); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--line); background: var(--cream-light);
  font-family: var(--display); font-size: 14px; color: var(--ink);
  outline: none; transition: border-color .3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: white;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,.3); font-style: italic; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }

/* ════════════════════════════════
   FAQ PAGE
════════════════════════════════ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white; border-bottom: 1px solid var(--line);
  overflow: hidden; transition: box-shadow .3s;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item:hover { box-shadow: 0 8px 28px rgba(0,33,71,.06); }
.faq-q {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 32px; cursor: pointer;
  transition: background .3s;
}
.faq-q:hover { background: var(--cream-light); }
.faq-num {
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; color: var(--gold); text-transform: uppercase;
  flex-shrink: 0; margin-top: 5px; opacity: .8;
}
.faq-q h3 {
  font-family: var(--display); font-size: 19px;
  color: var(--navy); font-weight: 500; flex: 1; line-height: 1.4;
}
.faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; transition: all .3s;
  margin-top: 2px;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); content: "–"; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.16,1,.3,1), padding .3s;
  padding: 0 32px 0 80px;
}
.faq-a.open { max-height: 400px; padding: 0 32px 28px 80px; }
.faq-a p { font-size: 15.5px; color: var(--ink); line-height: 1.82; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
/* ══════════════════════════════════════
   TABLET — max 1100px
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-layout            { grid-template-columns: 1fr; gap: 40px; }
  .corridor-layout         { grid-template-columns: 1fr; gap: 32px; }
  .corridor-layout.reverse { direction: ltr; }
  .corridor-art            { aspect-ratio: 16/9; max-height: 420px; }
  .contact-layout          { grid-template-columns: 1fr; gap: 40px; }
  .services-grid           { grid-template-columns: 1fr 1fr; }
  .team-grid               { grid-template-columns: 1fr; }
  .property-single-layout  { grid-template-columns: 1fr; gap: 36px; }
  .listings-grid           { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ══════════════════════════════════════
   MOBILE — max 720px
══════════════════════════════════════ */
@media (max-width: 720px) {

  /* Layout */
  .section             { padding: 52px 0; }
  .container           { padding: 0 18px; }

  /* Page Hero */
  .page-hero           { padding: 90px 0 48px; }
  .page-hero-inner     { padding: 0 18px; }
  .page-hero h1        { font-size: clamp(28px, 8vw, 42px); line-height: 1.1; }
  .page-hero-sub       { font-size: 14px; line-height: 1.65; }
  .page-hero-rule      { margin: 18px 0; }

  /* Breadcrumb */
  .breadcrumb-inner    { padding: 10px 18px; font-size: 10px; letter-spacing: 1px; }

  /* Typography */
  .display.lg          { font-size: clamp(26px, 7.5vw, 38px); }
  .display.md          { font-size: clamp(22px, 6.5vw, 32px); }
  .eyebrow             { font-size: 9px; letter-spacing: 3px; }

  /* Checkpoint */
  .checkpoint          { padding: 28px 18px; flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 40px; }
  .checkpoint-title    { font-size: 20px; }
  .checkpoint-sub      { font-size: 13px; }
  .checkpoint-actions .btn { width: 100%; justify-content: center; }

  /* ── ABOUT PAGE ── */
  .about-layout        { grid-template-columns: 1fr; gap: 32px; }
  .about-text > p      { font-size: 15px; }
  .about-lead          { font-size: 17px; padding-left: 14px; }
  .brand-quote         { padding: 24px 20px; }
  .bq-text             { font-size: 15px; }
  .about-art-box       { aspect-ratio: 4/3; }
  .about-est-pill      { padding: 14px 18px; gap: 12px; }
  .aep-yr              { font-size: 26px; }
  .team-grid           { grid-template-columns: 1fr; gap: 2px; }
  .team-card           { flex-direction: column; padding: 28px 18px; gap: 20px; }
  .team-name, .team-body h3 { font-size: 21px; }
  .team-bio, .team-body > p { font-size: 14px; }

  /* ── SERVICES PAGE ── */
  .services-intro      { font-size: 16px; padding: 22px 16px; margin-bottom: 40px; }
  .services-grid       { grid-template-columns: 1fr; gap: 2px; }
  .service-card        { padding: 32px 20px; }
  .service-card h3     { font-size: 18px; }
  .service-card p      { font-size: 14px; }

  /* ── CORRIDORS PAGE ── */
  .corridor-layout        { grid-template-columns: 1fr; gap: 28px; }
  .corridor-layout.reverse { direction: ltr; }
  .corridor-art           { aspect-ratio: 3/2; max-height: 280px; }
  .corridor-content h2    { font-size: clamp(22px, 6vw, 32px); }
  .corridor-headline      { font-size: 15px; }
  .corridor-content p     { font-size: 14.5px; }
  .keyfacts               { padding: 18px 16px; }
  .kf-row                 { flex-direction: column; gap: 2px; padding: 8px 0; }
  .kf-label               { min-width: unset; font-size: 9px; }
  .kf-val                 { font-size: 13px; }
  .corridor-num           { font-size: 9px; }

  /* ── PROJECTS PAGE ── */
  .listings-head          { flex-direction: column; align-items: flex-start; gap: 18px; }
  .listings-head h2       { font-size: 28px; }
  .filter-chips           { flex-wrap: wrap; gap: 8px; }
  .chip                   { padding: 8px 16px; font-size: 9px; }
  .listings-grid          { grid-template-columns: 1fr; gap: 16px; }
  .listing-body           { padding: 20px 18px; }
  .listing-body h3        { font-size: 18px; }
  .listing-specs          { flex-direction: column; gap: 8px; }
  .listing-actions        { flex-direction: column; align-items: flex-start; gap: 10px; }
  .listing-link           { font-size: 9px; }
  .listing-wa             { font-size: 9px; padding: 8px 14px; }
  .pricing-note-box       { padding: 20px 18px; flex-direction: column; gap: 16px; }
  .pricing-note-box p     { font-size: 14px; }
  .listings-footer        { margin-top: 32px; }

  /* ── SINGLE PROPERTY ── */
  .property-single-layout { grid-template-columns: 1fr; gap: 28px; }
  .property-images        { position: static; }
  .property-main-img,
  .property-no-img        { max-height: 260px; aspect-ratio: 3/2; }
  .property-gallery       { grid-template-columns: 1fr 1fr; gap: 6px; }
  .property-gallery-img   { max-height: 130px; }
  .pd-header h2           { font-size: 24px; }
  .pd-facts               { padding: 16px 14px; }
  .pd-fact-row            { flex-direction: column; gap: 2px; padding: 8px 0; }
  .pd-fact-label          { min-width: unset; font-size: 9px; }
  .pd-fact-val            { font-size: 13px; }
  .pd-pricing-note        { font-size: 12.5px; padding: 12px 14px; }
  .pd-actions             { flex-direction: column; gap: 10px; }
  .pd-whatsapp, .pd-consult { width: 100%; justify-content: center; }

  /* ── CONTACT PAGE ── */
  .contact-layout         { grid-template-columns: 1fr; gap: 32px; }
  .contact-info > h2      { font-size: clamp(22px, 6vw, 32px); }
  .cd-item                { grid-template-columns: 1fr; gap: 3px; padding: 12px 0; }
  .cd-label               { font-size: 9px; letter-spacing: 1.5px; }
  .cd-val                 { font-size: 14px; }
  .contact-form-wrap      { padding: 24px 18px; }
  .cfh-title              { font-size: 20px; }
  .consult-form           { gap: 14px; }
  .form-group label       { font-size: 9px; }
  .form-group input,
  .form-group select,
  .form-group textarea    { padding: 12px 14px; font-size: 14px; }
  .btn[type="submit"]     { padding: 14px 20px; font-size: 9.5px; }

  /* ── FAQ PAGE ── */
  .faq-wrap               { max-width: 100%; }
  .faq-q                  { padding: 18px 16px; gap: 12px; }
  .faq-q h3               { font-size: 16px; line-height: 1.35; }
  .faq-num                { font-size: 8.5px; }
  .faq-toggle             { width: 24px; height: 24px; font-size: 16px; flex-shrink: 0; }
  .faq-a                  { padding: 0 16px 0 16px; }
  .faq-a.open             { padding: 0 16px 20px 16px; }
  .faq-a p                { font-size: 14.5px; line-height: 1.78; }

  /* ── FOOTER ── */
  .footer-brand-col       { gap: 0; }
  .fb-tagline             { font-size: 13px; }
  .fb-brand-tags          { flex-wrap: wrap; gap: 6px; }
  .fb-brand-tags span     { font-size: 8px; padding: 4px 8px; }
  .fb-phone, .fb-email    { font-size: 12px; }
  .fc-h                   { font-size: 9px; letter-spacing: 2.5px; margin-bottom: 14px; }
  .fc-ul a                { font-size: 13.5px; }
  .footer-disclaimer p    { font-size: 13px; }
  .footer-bottom          { flex-direction: column; gap: 8px; padding: 16px 0 24px; }
  .fb-tags                { font-size: 8.5px; letter-spacing: 2px; }
  .fb-legal               { font-size: 11px; }
  .fn-p                   { font-size: 13px; }
}

/* ══════════════════════════════════════
   SMALL MOBILE — max 400px
══════════════════════════════════════ */
@media (max-width: 400px) {
  .container              { padding: 0 14px; }
  .page-hero-inner        { padding: 0 14px; }
  .page-hero h1           { font-size: clamp(24px, 7.5vw, 32px); }
  .display.lg             { font-size: 24px; }
  .display.md             { font-size: 20px; }
  .section                { padding: 44px 0; }
  .corridor-content h2    { font-size: 20px; }
  .listing-body h3        { font-size: 16px; }
  .faq-q h3               { font-size: 15px; }
  .pd-header h2           { font-size: 20px; }
  .pd-actions             { gap: 8px; }
  .checkpoint-title       { font-size: 18px; }
  .keyfacts               { padding: 14px 12px; }
  .service-card           { padding: 26px 16px; }
  .contact-form-wrap      { padding: 20px 14px; }
}

/* ════════════════════════════════════════
   MISSING CLASSES — Fix for inner pages
════════════════════════════════════════ */

/* ── ABOUT PAGE — Team Cards ── */
.t-initials {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.5px;
  line-height: 1;
}
.team-body {
  flex: 1;
  min-width: 0;
}

/* ── SERVICES PAGE — Service Card ── */
.svc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--maroon);
}
.svc-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--maroon);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--maroon);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: .65;
}

/* ── CONTACT PAGE — Layout ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-left { color: var(--cream); }
.contact-right { width: 100%; }
.contact-details {
  margin: 28px 0 32px;
}
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(217,179,130,.18);
}
.contact-tags span {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(217,179,130,.3);
  padding: 6px 12px;
  opacity: .85;
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: white;
  padding: 44px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,33,71,.1);
}
.cfh-title {
  font-family: var(--display);
  font-size: 26px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px;
}
.cfh-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.6;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--navy);
  color: var(--gold);
  border: 1.5px solid var(--navy);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--cream);
}
.form-submit .arrow {
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.form-submit:hover .arrow { transform: translateX(6px); }

/* Form success state */
.form-success {
  display: none;
  background: #f0f8ed;
  border: 1px solid #4a7c3a;
  border-left: 4px solid #4a7c3a;
  padding: 24px 28px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.form-success.show {
  display: flex;
}
.form-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4a7c3a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
}
.form-success h4 {
  font-family: var(--display);
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
}
.form-success p {
  font-family: var(--display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── PRICING NOTE BOX ── */
.pnb-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(217,179,130,.12);
  border: 1px solid rgba(217,179,130,.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}

/* ── CORRIDORS — Specialised Block ── */
.specialised-block {
  background: var(--cream-light);
  border-left: 3px solid var(--maroon);
  padding: 22px 26px;
  margin: 22px 0;
}
.specialised-title {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 10px;
}
.specialised-block p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.75;
  margin: 0;
}

/* ── FAQ PAGE ── */
.faq-intro {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.65;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: all .3s;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

/* ── BUTTON — General .btn-outline missing fix ── */
.btn .arrow {
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.btn:hover .arrow { transform: translateX(6px); }

/* ── EYEBROW MODIFIERS ── */
.eyebrow.gold { color: var(--gold); }
.eyebrow.cream { color: var(--cream); }

/* ════════════════════════════════════════
   RESPONSIVE — Inner page fixes
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .contact-grid          { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .contact-grid          { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap     { padding: 26px 20px; }
  .cfh-title             { font-size: 22px; }
  .cfh-sub               { font-size: 13.5px; }
  .form-row              { grid-template-columns: 1fr; gap: 14px; }
  .svc-icon              { width: 46px; height: 46px; font-size: 20px; }
  .t-initials            { font-size: 19px; }
  .contact-tags span     { font-size: 8.5px; padding: 5px 10px; }
  .specialised-block     { padding: 18px 18px; }
  .specialised-block p   { font-size: 14px; }
  .faq-intro             { font-size: 15px; margin-bottom: 36px; }
  .faq-icon              { width: 24px; height: 24px; font-size: 16px; }
  .pnb-icon              { width: 38px; height: 38px; font-size: 17px; }
}

/* ════════════════════════════════════════
   PROPERTY PAGINATION
════════════════════════════════════════ */
.property-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.property-pagination .pp-item a,
.property-pagination .pp-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all .3s;
}
.property-pagination .pp-item a:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.property-pagination .pp-item .current {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.property-pagination .pp-item .dots {
  background: transparent;
  border: none;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .property-pagination { gap: 6px; }
  .property-pagination .pp-item a,
  .property-pagination .pp-item span {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 1px;
  }
}

/* ════════════════════════════════════════
   BLOG / INSIGHTS
════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: white;
  border: 1px solid var(--line);
  transition: all .4s;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 55px rgba(0,33,71,.1);
  border-color: var(--gold);
}
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-body { padding: 26px 28px; }
.blog-card-date {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: .85;
}
.blog-card-title {
  font-family: var(--display);
  font-size: 21px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
}
.blog-card-excerpt {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.blog-card-read {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color .3s;
}
.blog-card:hover .blog-card-read { color: var(--maroon); }

/* Single post */
.single-post { max-width: 760px; margin: 0 auto; }
.single-post-image {
  margin-bottom: 36px;
  max-width: 100%;
  max-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-light);
  border-radius: 0;
}
.single-post-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.single-post-content { font-size: 16px; line-height: 1.85; color: var(--ink); }
.single-post-content p { margin-bottom: 22px; }
.single-post-content h2 {
  font-family: var(--display);
  font-size: 30px;
  color: var(--navy);
  margin: 40px 0 16px;
  font-weight: 500;
}
.single-post-content h3 {
  font-family: var(--display);
  font-size: 24px;
  color: var(--navy);
  margin: 32px 0 12px;
  font-weight: 500;
}
.single-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 18px 28px;
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--maroon);
  margin: 30px 0;
  background: var(--cream-light);
}
.single-post-content a { color: var(--maroon); border-bottom: 1px solid var(--gold); }
.single-post-content img,
.single-post-content figure img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 600px;
  margin: 24px auto;
  display: block;
  object-fit: contain;
}
.single-post-content figure {
  margin: 24px 0;
  max-width: 100%;
  text-align: center;
}
.single-post-content figcaption {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  text-align: center;
}
.single-post-content .alignwide,
.single-post-content .alignfull {
  max-width: 100%;
}
.single-post-content .aligncenter { margin-left: auto; margin-right: auto; }
.single-post-content .alignleft  { float: left; margin: 8px 24px 16px 0; max-width: 50%; }
.single-post-content .alignright { float: right; margin: 8px 0 16px 24px; max-width: 50%; }

/* Default page content (Elementor / Gutenberg) */
.page-content { max-width: 820px; margin: 0 auto; font-size: 16px; line-height: 1.8; color: var(--ink); }
.page-content > * { margin-bottom: 22px; }

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card-body { padding: 20px 18px; }
  .blog-card-title { font-size: 18px; }
  .single-post-content { font-size: 15px; }
  .single-post-content h2 { font-size: 24px; }
  .single-post-content h3 { font-size: 20px; }
  .single-post-content blockquote { padding: 14px 18px; font-size: 16px; }
}

/* ════════════════════════════════════════
   POST NAVIGATION (prev/next on single post)
════════════════════════════════════════ */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 26px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all .3s;
}
.post-nav-link:hover {
  background: white;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.post-nav-link.next { text-align: right; }
.pn-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.pn-title {
  font-family: var(--display);
  font-size: 15px;
  color: var(--navy);
  line-height: 1.35;
}

/* Ensure single post content elements don't overflow footer */
.single-post-content,
.single-post,
.blog-card,
.page-content { max-width: 100%; box-sizing: border-box; }
.single-post-content * { max-width: 100%; }

@media (max-width: 720px) {
  .post-nav { grid-template-columns: 1fr; gap: 10px; }
  .post-nav-link.next { text-align: left; }
}


/* ── Single post images — mobile ── */
@media (max-width: 720px) {
  .single-post-image,
  .single-post-image img { max-height: 280px; }
  .single-post-content img,
  .single-post-content figure img { max-height: 360px; margin: 18px auto; }
  .single-post-content .alignleft,
  .single-post-content .alignright {
    float: none; margin: 18px auto; max-width: 100%;
  }
}