/* ============================================
   LUXURA HABITAT — Global Design System
   Domain: luxurahabitat.projectinformation.in
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Palette */
  --primary-forest: #013220;
  --primary-forest-light: #02472d;
  --primary-forest-dark: #001a10;
  --accent-copper: #B87333;
  --accent-copper-light: #d4944f;
  --accent-copper-dark: #8f5a28;
  --text-charcoal: #2B2B2B;
  --text-muted: #6B6B6B;
  --bg-canvas: #F9F9F6;
  --bg-white: #FFFFFF;
  --bg-cream: #F3F0EB;
  --bg-dark: #0a1f14;
  --border-light: #E5E2DC;
  --border-copper: rgba(184, 115, 51, 0.25);
  --copper: var(--accent-copper);

  /* Typography Scale */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-display: clamp(2.4rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.25rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 76px;
  --topbar-height: 36px;
  --header-total-height: calc(var(--nav-height) + var(--topbar-height));

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.12);
  --shadow-copper: 0 4px 20px rgba(184, 115, 51, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
}

/* --- CSS Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-charcoal);
  background:
    linear-gradient(180deg, rgba(184, 115, 51, 0.035), transparent 420px),
    var(--bg-canvas);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-forest);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
  margin-bottom: var(--space-sm);
  color: var(--text-charcoal);
}

.text-muted {
  color: var(--text-muted);
}

.text-copper {
  color: var(--accent-copper);
}

.text-center { text-align: center; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section--dark {
  background-color: var(--primary-forest);
  color: var(--bg-canvas);
}

.section--dark h2,
.section--dark h3 {
  color: var(--bg-canvas);
}

.section--cream {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(184, 115, 51, 0.06)),
    var(--bg-cream);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-copper), var(--accent-copper-light));
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  
  background: rgba(249, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
  background: rgba(249, 249, 246, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-forest);
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-forest-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.nav-logo span {
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-forest-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo Image — Header */
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-logo:hover .logo-img {
  opacity: 0.85;
  transform: scale(1.02);
}

/* Logo Image — Footer */
.footer-brand .logo-img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  white-space: nowrap;
}

.nav-links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-charcoal);
  position: relative;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-copper);
  transition: width var(--transition-base);
  border-radius: 1px;
}

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

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

/* CTA Button in Nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-copper-light));
  color: var(--bg-white) !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-copper);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184, 115, 51, 0.3);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary-forest);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-canvas);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: var(--fs-body);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary-forest);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .nav-logo {
  color: var(--bg-canvas);
  margin-bottom: var(--space-sm);
}

.footer-brand .nav-logo span {
  background: linear-gradient(135deg, var(--bg-canvas), rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand .nav-logo .logo-icon {
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-copper-light));
  color: var(--bg-white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-small);
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--accent-copper);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small);
  padding: 4px 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-copper-light);
  padding-left: 6px;
}

/* Footer text override — prevent global p color leak */
.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

/* NAP Block */
.nap-block {
  font-size: var(--fs-small);
  line-height: 1.9;
}

.nap-block .nap-name {
  font-weight: 600;
  color: var(--bg-canvas);
}

.nap-block .nap-rera {
  display: inline-block;
  margin-top: var(--space-xs);
  padding: 4px 12px;
  background: rgba(184, 115, 51, 0.15);
  border: 1px solid rgba(184, 115, 51, 0.3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  color: var(--accent-copper-light);
  letter-spacing: 0.04em;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-disclaimer {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
  max-width: 600px;
  text-align: right;
  line-height: 1.6;
}

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer {
    text-align: center;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-forest-light));
  color: var(--bg-canvas);
  box-shadow: 0 4px 15px rgba(1, 50, 32, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(1, 50, 32, 0.35);
}

.btn--copper {
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-copper-light));
  color: var(--bg-white);
  box-shadow: var(--shadow-copper);
}

.btn--copper:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184, 115, 51, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary-forest);
  border: 2px solid var(--primary-forest);
}

.btn--outline:hover {
  background: var(--primary-forest);
  color: var(--bg-canvas);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn--lg {
  padding: 16px 40px;
  font-size: var(--fs-body);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(1, 50, 32, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-copper), var(--primary-forest-light));
  opacity: 0.85;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 115, 51, 0.28);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.1), rgba(184, 115, 51, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--accent-copper);
  border: 1px solid var(--border-copper);
}

.card h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-h3);
}

.card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.8;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-md);
  color: var(--accent-copper);
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.card-link:hover {
  gap: 10px;
  color: var(--accent-copper-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-total-height);
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg-canvas) 0%, var(--bg-cream) 50%, rgba(184, 115, 51, 0.05) 100%);
}

/* Photo-backed hero variant — overrides base .hero background shorthand */
.hero--photo {
  background:
    linear-gradient(to right, rgba(1, 26, 16, 0.90) 0%, rgba(1, 50, 32, 0.72) 48%, rgba(1, 50, 32, 0.32) 100%),
    url('/images/hero/hero_bg.png') center center / cover no-repeat;
}

/* All text inside the photo hero — high specificity to beat global h/p colour rules */
section.hero--photo h1,
section.hero--photo .hero h1 {
  color: #ffffff;
}

section.hero--photo p,
section.hero--photo .hero-subtitle {
  color: rgba(255, 255, 255, 0.80);
}

section.hero--photo .hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

section.hero--photo .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.18);
}

section.hero--photo .hero-stat-item .stat-number {
  color: var(--accent-copper-light);
}

section.hero--photo .hero-stat-item .stat-label {
  color: rgba(255, 255, 255, 0.70);
}

section.hero--photo .btn--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
}

section.hero--photo .btn--outline:hover {
  background: #ffffff;
  color: var(--primary-forest);
}

.hero--photo::before,
.hero--photo::after {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero--photo::before,
.hero--photo::after {
  display: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1, 50, 32, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(1, 50, 32, 0.06);
  border: 1px solid rgba(1, 50, 32, 0.12);
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-forest);
  margin-bottom: var(--space-md);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-copper);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: var(--fs-display);
  line-height: 1.08;
  margin-bottom: var(--space-md);
  color: var(--primary-forest);
  text-wrap: balance;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-copper-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 540px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-forest);
  line-height: 1;
}

.hero-stat-item .stat-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-market-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-lg);
  max-width: 680px;
}

.hero-market-strip span {
  padding: 8px 12px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* ============================================
   HOME: Market Intelligence
   ============================================ */
.market-section {
  background:
    linear-gradient(135deg, rgba(1, 50, 32, 0.98), rgba(10, 31, 20, 0.96)),
    var(--primary-forest);
  color: var(--bg-canvas);
  overflow: hidden;
}

.market-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  pointer-events: none;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: var(--space-sm);
  color: var(--accent-copper-light);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-copy h2 {
  color: #fff;
  margin-bottom: var(--space-md);
  text-wrap: balance;
}

.feature-copy p {
  color: rgba(255,255,255,0.72);
  font-size: 1.03rem;
  max-width: 680px;
}

.insight-list {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.insight-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-left: 3px solid var(--accent-copper);
  background: rgba(255,255,255,0.06);
}

.insight-list strong {
  color: #fff;
}

.insight-list span {
  color: rgba(255,255,255,0.68);
  font-size: var(--fs-small);
}

.market-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.market-panel__header,
.market-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.market-panel__header {
  background: rgba(184, 115, 51, 0.18);
  color: #fff;
}

.market-panel__header span,
.market-row span {
  color: var(--accent-copper-light);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-row strong {
  color: rgba(255,255,255,0.84);
  font-size: var(--fs-small);
  text-align: right;
}

.market-row:last-child {
  border-bottom: 0;
}

/* ============================================
   HOME: Buyer Pathways
   ============================================ */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.pathway-card {
  min-height: 300px;
  padding: var(--space-lg);
  background: var(--bg-white);
  border: 1px solid rgba(1, 50, 32, 0.10);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pathway-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pathway-card--accent {
  background: linear-gradient(145deg, var(--primary-forest), var(--primary-forest-light));
}

.pathway-card--accent h3,
.pathway-card--accent p {
  color: #fff;
}

.pathway-card--accent p {
  color: rgba(255,255,255,0.72);
}

.pathway-kicker {
  color: var(--accent-copper);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.pathway-card h3 {
  margin-bottom: var(--space-sm);
}

.pathway-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-total-height) + var(--space-xl)) 0 var(--space-xl);
  }

  .hero-stats {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }
}

/* ============================================
   PLACEHOLDER IMAGE
   ============================================ */
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-cream) 0%, rgba(184, 115, 51, 0.08) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--fs-small);
  border: 1px dashed var(--border-light);
  overflow: hidden;
  position: relative;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Crect x='14' y='18' width='32' height='24' rx='3' stroke='%23B87333' stroke-width='1.5' stroke-opacity='0.3'/%3E%3Ccircle cx='23' cy='26' r='3' stroke='%23B87333' stroke-width='1.5' stroke-opacity='0.3'/%3E%3Cpath d='M14 36l10-8 6 5 8-10 8 9' stroke='%23B87333' stroke-width='1.5' stroke-opacity='0.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center center no-repeat;
  opacity: 0.6;
}

.img-placeholder--hero {
  aspect-ratio: 4/3;
  min-height: 400px;
}

.img-placeholder--profile {
  width: 200px;
  height: 200px;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
}

.img-placeholder--card {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: calc(-1 * var(--space-lg));
  margin-bottom: var(--space-md);
  width: calc(100% + 2 * var(--space-lg));
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-canvas);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  color: var(--text-charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

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

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-copper);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.15), rgba(1, 50, 32, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-copper);
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: 2px;
}

.testimonial-info .property-type {
  font-size: var(--fs-xs);
  color: var(--accent-copper);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-body h5 {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 6px;
}

.testimonial-body p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.8;
}

.testimonial-body .challenge,
.testimonial-body .outcome {
  margin-bottom: var(--space-sm);
}

.testimonial-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.testimonial-label--challenge {
  color: var(--text-muted);
}

.testimonial-label--outcome {
  color: var(--accent-copper);
}

/* ============================================
   DEVELOPER CARDS
   ============================================ */
.developer-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.developer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.developer-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-forest-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.developer-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,50,32,0.9), rgba(2,71,45,0.8));
}

.developer-card-img .dev-logo-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-copper-light);
  letter-spacing: 0.04em;
}

.developer-card-body {
  padding: var(--space-lg);
}

.developer-card-body h3 {
  margin-bottom: var(--space-xs);
}

.developer-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(184, 115, 51, 0.08);
  color: var(--accent-copper);
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}

.developer-card-body p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.developer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.developer-feature-tag {
  padding: 4px 10px;
  background: rgba(1, 50, 32, 0.05);
  color: var(--primary-forest);
  font-size: var(--fs-xs);
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid rgba(1, 50, 32, 0.1);
}

.featured-project-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  margin: 0 0 var(--space-xl);
  background: var(--bg-white);
  border: 1px solid rgba(1, 50, 32, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(1, 26, 16, 0.12);
}

.featured-project-media {
  min-height: 360px;
  background: var(--primary-forest);
  overflow: hidden;
}

.featured-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-project-card:hover .featured-project-media img {
  transform: scale(1.035);
}

.featured-project-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.featured-project-kicker {
  display: inline-flex;
  color: var(--accent-copper);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.featured-project-copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  margin-bottom: var(--space-sm);
}

.featured-project-copy p {
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.85;
}

.featured-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--space-sm) 0 var(--space-md);
}

.featured-project-meta span {
  padding: 7px 11px;
  color: var(--primary-forest);
  background: rgba(1, 50, 32, 0.06);
  border: 1px solid rgba(1, 50, 32, 0.10);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
}

.featured-project-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin: var(--space-xl) 0 0;
  padding: var(--space-md);
  background:
    linear-gradient(135deg, rgba(1, 50, 32, 0.98), rgba(10, 31, 20, 0.94)),
    var(--primary-forest);
  border: 1px solid rgba(184, 115, 51, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(1, 26, 16, 0.14);
}

.featured-project-banner span {
  display: block;
  color: var(--accent-copper-light);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.featured-project-banner strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.25;
}

.featured-project-banner p {
  color: rgba(255,255,255,0.68);
  margin: 5px 0 0;
  font-size: var(--fs-small);
}

.featured-project-banner .btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-copper-light));
  color: #fff;
  box-shadow: var(--shadow-copper);
}

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

  .featured-project-media {
    min-height: 260px;
  }

  .featured-project-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-card {
  background: var(--primary-forest);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--bg-canvas);
}

.contact-info-card h3 {
  color: var(--bg-canvas);
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(184, 115, 51, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-copper-light);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--accent-copper-light);
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-item-text a:hover {
  color: var(--accent-copper-light);
}

.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

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

/* ============================================
   ZONE / AREA CARDS
   ============================================ */
.zone-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.zone-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.zone-card-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-forest-light));
  color: var(--bg-canvas);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

/* Photo header variant — activated once area images are placed */
.zone-card-header--photo {
  background-size: cover;
  background-position: center;
}

.zone-card-header--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 26, 16, 0.85) 0%, rgba(1, 50, 32, 0.40) 100%);
  z-index: 1;
}

.zone-card-header > * {
  position: relative;
  z-index: 2;
}

.zone-card-header h3 {
  color: var(--bg-canvas);
}

.zone-card-header .zone-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(184, 115, 51, 0.25);
  border-radius: 50px;
  font-size: var(--fs-xs);
  color: var(--accent-copper-light);
  font-weight: 500;
}

.zone-card-body {
  padding: var(--space-lg);
}

.zone-feature {
  margin-bottom: var(--space-md);
}

.zone-feature:last-child {
  margin-bottom: 0;
}

.zone-feature h4 {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zone-feature h4::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent-copper);
  border-radius: 50%;
  flex-shrink: 0;
}

.zone-feature p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 12px;
}

.area-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: 0 0 var(--space-xl);
}

.area-snapshot div {
  padding: var(--space-md);
  background: #fff;
  border: 1px solid rgba(1, 50, 32, 0.10);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.area-snapshot span {
  display: block;
  color: var(--accent-copper);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.area-snapshot strong {
  display: block;
  color: var(--primary-forest);
  line-height: 1.45;
}

.developer-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: 0 0 var(--space-xl);
  padding: var(--space-md);
  background:
    linear-gradient(135deg, rgba(1, 50, 32, 0.98), rgba(10, 31, 20, 0.94)),
    var(--primary-forest);
  border: 1px solid rgba(184, 115, 51, 0.26);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 60px rgba(1, 26, 16, 0.16);
}

.developer-snapshot-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm);
  min-height: 210px;
  padding: var(--space-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.developer-snapshot-card::after {
  content: '';
  position: absolute;
  inset: auto var(--space-md) 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-copper), rgba(212, 148, 79, 0));
}

.developer-snapshot-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper-light);
  background: rgba(184, 115, 51, 0.13);
  border: 1px solid rgba(184, 115, 51, 0.36);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.developer-snapshot span {
  display: block;
  color: var(--accent-copper-light);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.developer-snapshot strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.developer-snapshot p {
  color: rgba(255,255,255,0.66);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .area-snapshot,
  .developer-snapshot {
    grid-template-columns: 1fr;
  }

  .developer-snapshot-card {
    min-height: 0;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 100ms; }
.animate-delay-2 { transition-delay: 200ms; }
.animate-delay-3 { transition-delay: 300ms; }
.animate-delay-4 { transition-delay: 400ms; }

/* ============================================
   PAGE-SPECIFIC: About Page
   ============================================ */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-profile-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-base);
}

.about-profile-img:hover {
  transform: translateY(-4px);
}

.about-narrative {
  max-width: 700px;
}

.about-narrative h2 {
  margin-bottom: var(--space-md);
}

.about-narrative p {
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.credential-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.credential-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  background: linear-gradient(135deg, rgba(1, 50, 32, 0.08), rgba(184, 115, 51, 0.06));
  border: 1px solid var(--border-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
}

.credential-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.credential-card h4 {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 6px;
}

.credential-card p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-profile-img {
    max-width: 480px;
    margin: 0 auto var(--space-md) auto;
  }

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

/* ============================================
   UTILITY: Breadcrumb
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-sm) 0;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent-copper);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================
   Builder Cards (Marquee)
   ============================================ */

.builder-card {
  background: #fff;
  border: 1.5px solid rgba(27, 67, 50, 0.10);
  border-radius: 16px;
  padding: 22px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: center;
  min-width: 190px;
  max-width: 190px;
  height: 130px;
  flex-shrink: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  cursor: default;
  user-select: none;
}

.builder-card:hover {
  box-shadow: 0 12px 36px rgba(27, 67, 50, 0.13);
  transform: translateY(-5px);
  border-color: var(--copper);
}

.builder-logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.builder-logo-wrap img {
  max-width: 140px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter 0.2s ease;
}

.builder-card:hover .builder-logo-wrap img {
  filter: grayscale(0%);
}

.builder-card--dark {
  background: #1a1a2e;
  border-color: transparent;
}

.builder-card--dark .builder-name {
  color: rgba(255,255,255,0.85);
}

.builder-monogram {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-forest);
  line-height: 1;
}

.builder-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* ============================================
   MAIN CONTENT SPACER
   ============================================ */
main {
  padding-top: var(--header-total-height);
}

.page-hero {
  padding: var(--space-xl) 0;
  background:
    linear-gradient(135deg, rgba(1, 50, 32, 0.92), rgba(10, 31, 20, 0.88)),
    url('/images/hero/hero_bg.png') center center / cover no-repeat;
  text-align: center;
  border-bottom: 1px solid rgba(184, 115, 51, 0.32);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-copper), var(--accent-copper-light), var(--primary-forest-light));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
  color: #fff;
  text-wrap: balance;
}

.page-hero p {
  color: rgba(255,255,255,0.74);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-hero .breadcrumb {
  justify-content: center;
  color: rgba(255,255,255,0.66);
}

.page-hero .breadcrumb a {
  color: var(--accent-copper-light);
}

.page-hero .breadcrumb span {
  color: rgba(255,255,255,0.62);
}

@media (max-width: 992px) {
  .feature-split,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .market-panel {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .hero-actions .btn,
  .btn--lg {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-market-strip span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .insight-list div,
  .market-panel__header,
  .market-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .market-row strong {
    text-align: left;
  }

  .pathway-card {
    min-height: 0;
  }
}

/* ============================================
   NAP — Footer SVG icon links
   ============================================ */
.nap-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition-fast);
}

.nap-link:hover {
  color: var(--accent-copper-light);
}

.nap-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.75;
}

/* ============================================
   ACCESSIBILITY & PRINT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .btn,
  .nav-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    text-decoration: underline;
    color: #000;
  }
}


/* ============================================
   TOP BAR & HEADER
   ============================================ */
.top-bar {
  background: var(--primary-forest);
  color: var(--bg-white);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 8px 0;
  transition: height var(--transition-fast), padding var(--transition-fast), opacity var(--transition-fast);
  overflow: hidden;
}

.site-header.scrolled .top-bar {
  height: 0;
  padding: 0;
  opacity: 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.top-bar-left {
  font-weight: 500;
  opacity: 0.9;
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-link {
  color: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: opacity var(--transition-fast);
  text-decoration: none;
}

.top-bar-link:hover {
  opacity: 0.8;
}

.top-bar-link.wa-link {
  color: #25D366;
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  .top-bar-inner {
    justify-content: center;
  }
}
