/* === CSS VARIABLES (legacy support) === */
:root {
  --navy: #0B0A07;
  --navy-deep: #0B0A07;
  --cream: #F4F0E8;
  --gold: #0B0A07;
  --blue: rgba(237,232,222,0.6);
  --white: #EDE8DE;
  --text: #0B0A07;
  --text-light: rgba(11,10,7,0.6);
  --border: rgba(11,10,7,0.08);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; margin: 0; padding: 0; background: #0B0A07; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #0B0A07; color: #EDE8DE; -webkit-font-smoothing: antialiased; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* === CUSTOM CURSOR === */
.cursor { position: fixed; width: 10px; height: 10px; border-radius: 50%; background: #EDE8DE; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); opacity: 0; transition: transform 0.2s ease, opacity 0.15s ease; }
.cursor.visible { opacity: 1; }
.cursor.hover { transform: translate(-50%, -50%) scale(2); }
@media (max-width: 768px) { .cursor { display: none; } }

/* === NAV === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #0B0A07; padding: 20px 36px; display: flex; align-items: center; justify-content: space-between; transition: padding 0.4s ease; }
.nav.scrolled { padding: 14px 36px; }
.nav-brand { font-family: Georgia, serif; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: #EDE8DE; }
.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.nav-link { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(237,232,222,0.75); transition: color 0.3s; }
.nav-link:hover { color: #EDE8DE; }
.nav-cta-btn { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: #EDE8DE; color: #0B0A07; padding: 10px 24px; border-radius: 2px; transition: background 0.3s; }
.nav-cta-btn:hover { background: #d4cfc6; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: #EDE8DE; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(3px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(3px, -4px); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 999; background: #0B0A07; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner { text-align: center; }
.mobile-menu-link { display: block; font-family: Georgia, serif; font-size: 28px; color: #EDE8DE; margin-bottom: 16px; opacity: 0; transform: translateY(16px); transition: all 0.4s ease; }
.mobile-menu.active .mobile-menu-link { opacity: 1; transform: none; }
.mobile-menu-link:hover { color: #EDE8DE; }
.mobile-menu-footer { margin-top: 40px; }
.mobile-menu-footer a { font-size: 13px; color: rgba(237,232,222,0.6); }

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

/* === HERO === */
.hero { position: relative; height: 100vh; overflow: hidden; display: flex; align-items: flex-end; }
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; will-change: transform; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: #0B0A07; opacity: 0.55; z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 48px; width: 100%; }
.hero-eyebrow { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(237,232,222,0.45); display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.hero-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(237,232,222,0.08); }
.hero-headline { font-family: Georgia, serif; font-size: 88px; line-height: 0.92; letter-spacing: -0.025em; color: #EDE8DE; margin-bottom: 20px; }
.hero-headline-italic { font-style: italic; color: #EDE8DE; display: block; }
.hero-sub { font-size: 14px; color: rgba(237,232,222,0.65); max-width: 240px; line-height: 1.55; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; }
.btn-primary { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: #EDE8DE; color: #0B0A07; padding: 12px 28px; border-radius: 2px; transition: background 0.3s; }
.btn-primary:hover { background: #fff; }
.btn-ghost { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(237,232,222,0.65); padding: 12px 0; transition: color 0.3s; }
.btn-ghost:hover { color: #EDE8DE; }
.scroll-indicator { position: absolute; bottom: 36px; right: 48px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-indicator-text { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(237,232,222,0.4); writing-mode: vertical-rl; }
.scroll-indicator-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(237,232,222,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

@media (max-width: 768px) {
  .hero-headline { font-size: 48px; }
  .hero-content { padding: 28px; }
  .hero-actions { flex-direction: column; }
  .scroll-indicator { display: none; }
}

/* === STATS BAND === */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); background: #0B0A07; border-top: 1px solid rgba(237,232,222,0.05); }
.stat { padding: 28px 36px; border-right: 1px solid rgba(237,232,222,0.05); text-align: center; }
.stat:last-child { border-right: none; }
.stat-number { font-family: Georgia, serif; font-size: 32px; color: #EDE8DE; line-height: 1.4; }
.stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(237,232,222,0.5); margin-top: 4px; }

@media (max-width: 768px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid rgba(237,232,222,0.05); }
}

/* === SAGE TICKER === */
.ticker { background: #1A1916; padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: tickerScroll 28s linear infinite; }
.ticker-text { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(237,232,222,0.5); padding-right: 0; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === MANIFESTO TEXT — light on dark photo === */
.manifesto,
.manifesto h2,
.manifesto h3,
.manifesto p,
.manifesto blockquote,
.manifesto a {
  color: #EDE8DE;
}

/* === LIGHT SECTION TEXT FIX === */
.credentials-band,
.credentials-band h3,
.credentials-band p,
.credentials-band span,
.testimonials,
.testimonials h2,
.testimonials p,
.testimonials .testimonial-card,
.cta,
.cta h2,
.cta p {
  color: #0B0A07;
}

/* === MANIFESTO === */
.manifesto {
  background-image:
    linear-gradient(rgba(11,10,7,0.78), rgba(11,10,7,0.78)),
    url('https://res.cloudinary.com/dpwcyrxkz/image/upload/v1775872291/patrick-lalonde-IqKYnIzrjh0-unsplash_mptxqj.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 56px 36px;
}
.section-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(11,10,7,0.6); display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.section-label::after { content: ''; flex: 1; height: 1px; background: rgba(11,10,7,0.08); }
.manifesto-quote { font-family: Georgia, serif; font-style: italic; font-size: 26px; line-height: 1.45; color: #0B0A07; max-width: 640px; margin-bottom: 24px; }
.manifesto-quote .sage { color: #0B0A07; font-style: italic; }
.manifesto-bio { font-size: 13px; color: rgba(11,10,7,0.6); line-height: 1.65; max-width: 460px; margin-bottom: 20px; }
.link-sage { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(11,10,7,0.6); transition: opacity 0.3s; }
.link-sage:hover { opacity: 0.7; }

/* === CREDENTIALS BAND === */
.credentials-band { background: #EDE8DE; display: grid; grid-template-columns: repeat(4, 1fr); }
.credential { padding: 24px 28px; border-right: 1px solid rgba(11,10,7,0.06); }
.credential:first-child { border-left: 2px solid #0B0A07; }
.credential:last-child { border-right: none; }
.credential-title { font-size: 12px; font-weight: 500; color: #0B0A07; margin-bottom: 3px; }
.credential-sub { font-size: 11px; color: rgba(11,10,7,0.55); }

@media (max-width: 768px) {
  .credentials-band { grid-template-columns: 1fr 1fr; }
  .credential { border-bottom: 1px solid rgba(11,10,7,0.06); }
}

/* === PORTFOLIO SCROLL === */
.portfolio-scroll { background: #0B0A07; padding: 100px 0 0 0; overflow: hidden; }
.portfolio-scroll-header { display: flex; align-items: flex-end; justify-content: space-between; padding: 0 60px 48px 60px; }
.portfolio-scroll-header h2 { font-size: clamp(36px, 5vw, 64px); color: #EDE8DE; font-family: Georgia, serif; font-weight: 400; margin: 0; line-height: 1.1; }
.portfolio-scroll-header h2 em { font-style: italic; }
.scroll-hint { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(237,232,222,0.4); font-family: -apple-system, sans-serif; padding-bottom: 8px; }
.portfolio-track-wrapper { overflow-x: auto; overflow-y: hidden; cursor: grab; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 60px; }
.portfolio-track-wrapper::-webkit-scrollbar { display: none; }
.portfolio-track-wrapper:active { cursor: grabbing; }
.portfolio-track { display: flex; gap: 24px; padding: 0 60px; width: max-content; }
.portfolio-card { width: 420px; flex-shrink: 0; background: #141210; border: 1px solid rgba(237,232,222,0.08); overflow: hidden; transition: transform 0.4s ease, border-color 0.4s ease; }
.portfolio-card:hover { transform: translateY(-8px); border-color: rgba(237,232,222,0.2); }
.portfolio-card-img { width: 100%; height: 280px; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.portfolio-card:hover .portfolio-card-img { transform: scale(1.04); }
.portfolio-card-info { padding: 28px 32px 32px; }
.portfolio-tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(237,232,222,0.4); font-family: -apple-system, sans-serif; display: block; margin-bottom: 12px; }
.portfolio-card-info h3 { font-size: 22px; color: #EDE8DE; font-family: Georgia, serif; font-weight: 400; margin-bottom: 8px; }
.portfolio-card-info p { font-size: 13px; color: rgba(237,232,222,0.45); line-height: 1.5; margin-bottom: 16px; }
.portfolio-price { font-family: Georgia, serif; font-size: 28px; color: #EDE8DE; }

@media (max-width: 768px) {
  .portfolio-scroll-header { padding: 0 28px 32px; }
  .portfolio-track { padding: 0 28px; gap: 16px; }
  .portfolio-card { width: 320px; }
  .portfolio-card-img { height: 200px; }
}

/* === TESTIMONIALS === */
.testimonials { background: #F4F0E8; padding: 52px 36px; }
.testimonials-heading { font-family: Georgia, serif; font-size: 24px; color: #0B0A07; margin-bottom: 28px; }
.testimonials-heading em { font-style: italic; color: rgba(11,10,7,0.4); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.testimonial-card { padding: 28px; }
.testimonial-card:nth-child(odd) { background: #EDE8DE; }
.testimonial-card:nth-child(even) { background: #E8E3D8; }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-avatar { width: 32px; height: 32px; border-radius: 50%; background: #2A2825; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: #EDE8DE; flex-shrink: 0; }
.testimonial-name { font-size: 12px; font-weight: 500; color: #0B0A07; }
.testimonial-role { font-size: 11px; color: rgba(11,10,7,0.55); }
.testimonial-text { font-family: Georgia, serif; font-style: italic; font-size: 13px; color: rgba(11,10,7,0.6); line-height: 1.6; }

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

/* === NEIGHBORHOODS === */
.neighborhoods { background: #0B0A07; padding: 52px 36px; }
.neighborhoods-heading { font-family: Georgia, serif; font-size: 26px; color: #EDE8DE; margin-bottom: 28px; }
.neighborhoods-heading em { font-style: italic; color: #EDE8DE; }
.neighborhoods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.neighborhood-card { background: #131109; padding: 24px; border-top: 0.5px solid rgba(237,232,222,0.08); transition: background 0.3s; }
.neighborhood-card:first-child { border-top: 1px solid rgba(237,232,222,0.25); }
.neighborhood-card:hover { background: #1a1710; }
.neighborhood-name { font-family: Georgia, serif; font-size: 14px; color: #EDE8DE; margin-bottom: 4px; }
.neighborhood-sub { font-size: 11px; color: rgba(237,232,222,0.5); }

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

/* === PRESS === */
.press { background: #0B0A07; padding: 32px 36px; text-align: center; }
.press-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(237,232,222,0.4); margin-bottom: 20px; }
.press-row { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; }
.press-pub { font-family: Georgia, serif; font-style: italic; font-size: 12px; color: rgba(237,232,222,0.45); padding: 0 20px; transition: color 0.3s; }
.press-pub:hover { color: rgba(237,232,222,0.5); }
.press-divider { width: 1px; height: 14px; background: rgba(237,232,222,0.15); }

/* === CTA === */
.cta { background: #F4F0E8; padding: 52px 36px; display: flex; justify-content: space-between; align-items: center; }
.cta-heading { font-family: Georgia, serif; font-size: 28px; color: #0B0A07; }
.cta-heading em { font-style: italic; color: rgba(11,10,7,0.4); }
.cta-right { text-align: right; }
.btn-dark { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: #0B0A07; color: #EDE8DE; padding: 14px 32px; border-radius: 2px; display: inline-block; transition: background 0.3s; margin-bottom: 10px; }
.btn-dark:hover { background: #1a1710; }
.cta-phone { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(11,10,7,0.6); }

@media (max-width: 768px) {
  .cta { flex-direction: column; gap: 28px; text-align: center; }
  .cta-right { text-align: center; }
}

/* === FOOTER === */
.footer { background: #0B0A07; padding: 32px 36px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
.footer-brand { font-family: Georgia, serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #EDE8DE; margin-bottom: 10px; }
.footer-address { font-size: 11px; color: rgba(237,232,222,0.5); line-height: 1.6; }
.footer-col-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(237,232,222,0.35); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 12px; color: rgba(237,232,222,0.5); margin-bottom: 6px; transition: color 0.3s; }
.footer-col a:hover { color: #EDE8DE; }
.footer-bar { margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(237,232,222,0.04); display: flex; justify-content: space-between; }
.footer-bar span { font-size: 10px; color: rgba(237,232,222,0.65); }
.footer-bar em { font-style: italic; color: rgba(237,232,222,0.15); }

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

/* === GSAP REVEAL === */
.reveal { opacity: 0; transform: translateY(30px); }

/* === LEGACY PAGE SUPPORT === */
/* Shared classes used by about, search, neighborhoods, calculator, vendor, contact pages */

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 36px; }
.section { padding: clamp(52px,8vw,80px) 0; }
.section-cream { background: #F4F0E8; color: #0B0A07; }
.section-white { background: #EDE8DE; color: #0B0A07; }
.section-navy { background: #0B0A07; color: #EDE8DE; }

/* Legacy nav (used by sub-pages) */
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 36px; display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; }
.nav-logo-dark { display: none; }
.nav-dark { background: #0B0A07; }
.nav-dark .nav-logo-light { display: block !important; }
.nav-dark .nav-logo-dark { display: none !important; }
.nav-dark .nav-link, .nav-dark .nav-dropdown .nav-link { color: rgba(237,232,222,0.85); }
.nav-dark .nav-link:hover { color: #EDE8DE; }
.nav-dark .nav-cta, .nav-dark .nav-cta-btn { background: #EDE8DE; color: #F4F0E8; }
.nav.scrolled .nav-logo-light { display: block; }
.nav.scrolled .nav-logo-dark { display: none; }
.nav.scrolled { background: #0B0A07; }
.nav.scrolled .nav-link { color: rgba(237,232,222,0.65); }
.nav.scrolled .nav-link:hover { color: #EDE8DE; }
.nav.scrolled .nav-cta, .nav.scrolled .nav-cta-btn { background: #EDE8DE; color: #F4F0E8; }
.nav-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: #EDE8DE; color: #F4F0E8; padding: 10px 24px; border-radius: 2px; transition: all 0.3s; }
.nav-cta:hover { background: #d4cfc6; }

/* Dropdown nav (used by calculator/vendor pages) */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 12px; opacity: 0; visibility: hidden; transition: all 0.3s ease; pointer-events: none; }
.nav-dropdown-menu-inner { background: #1a1710; border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); padding: 8px 0; min-width: 200px; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-size: 12px; color: rgba(237,232,222,0.5); transition: all 0.2s; }
.nav-dropdown-menu a:hover { color: #EDE8DE; background: rgba(237,232,222,0.04); }
.nav-dropdown-arrow { display: inline-block; margin-left: 4px; font-size: 8px; opacity: 0.4; }

/* Typography */
.heading-lg { font-family: Georgia, serif; font-size: clamp(28px,4vw,42px); font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; color: #0B0A07; margin-bottom: 20px; }
.heading-lg em { font-style: italic; color: rgba(11,10,7,0.4); }
.heading-white { color: #EDE8DE; }
.heading-white em { color: #EDE8DE; }
.label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(11,10,7,0.3); margin-bottom: 16px; display: block; }
.label-light { color: rgba(237,232,222,0.6); }
.body-lg { font-size: 17px; color: rgba(11,10,7,0.55); line-height: 1.7; margin-bottom: 16px; }
.body-text { font-size: 14px; color: rgba(11,10,7,0.6); line-height: 1.7; margin-bottom: 20px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; border-radius: 2px; transition: all 0.3s; }
.btn-gold { background: #EDE8DE; color: #F4F0E8; }
.btn-gold:hover { background: #d4cfc6; }
.btn-ghost { color: rgba(237,232,222,0.4); border: 1px solid rgba(237,232,222,0.4); padding: 12px 28px; }

/* Links */
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(11,10,7,0.5); transition: opacity 0.3s; }
.link-arrow:hover { opacity: 0.7; }

/* Grids */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.split-left { position: sticky; top: 120px; }
.section-header-center { text-align: center; margin-bottom: 40px; }

/* Page Hero (sub-pages) */
.page-hero { padding: clamp(140px,18vw,200px) 0 clamp(40px,5vw,60px); background: #0B0A07; }
.page-hero-heading { font-family: Georgia, serif; font-size: clamp(32px,5vw,52px); font-weight: 400; line-height: 1.1; color: #EDE8DE; margin-bottom: 12px; }
.page-hero-heading em { font-style: italic; color: #EDE8DE; }
.page-hero-sub { font-size: 15px; color: rgba(237,232,222,0.4); max-width: 500px; line-height: 1.6; }

/* About page */
.about-editorial { background: #EDE8DE; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.about-image-wrap { position: sticky; top: 100px; border-radius: 12px; overflow: hidden; }
.about-image { width: 100%; display: block; }
.about-image-caption { font-size: 11px; color: rgba(11,10,7,0.3); margin-top: 12px; }
.about-lead { font-family: Georgia, serif; font-size: 20px; font-weight: 400; line-height: 1.5; color: #0B0A07; margin-bottom: 20px; }
.about-body { font-size: 14px; color: rgba(11,10,7,0.5); line-height: 1.7; margin-bottom: 16px; }
.about-body p { margin-bottom: 14px; }

/* Philosophy */
.philosophy-section { background: #0B0A07; text-align: center; }
.philosophy-heading { font-family: Georgia, serif; font-size: clamp(22px,3vw,32px); font-weight: 400; font-style: italic; color: #0B0A07; max-width: 600px; margin: 0 auto; line-height: 1.4; }

/* Credentials (sub-pages) */
.credentials-section { background: #F4F0E8; }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.credential-item { display: flex; gap: 20px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(11,10,7,0.06); }
.credential-year { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(11,10,7,0.4); white-space: nowrap; padding-top: 2px; }
.credential-title { font-size: 14px; font-weight: 500; color: #0B0A07; margin-bottom: 2px; }
.credential-source { font-size: 12px; color: rgba(11,10,7,0.6); }

/* Press bar (sub-pages) */
.press-bar { border-top: 1px solid rgba(11,10,7,0.08); border-bottom: 1px solid rgba(11,10,7,0.08); padding: clamp(32px,4vw,48px) 0; }
.press-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.press-item { text-decoration: none; display: flex; flex-direction: column; gap: 6px; }
a.press-item:hover .press-logo { color: #EDE8DE; }
.press-logo { display: block; font-size: 16px; font-weight: 700; color: #0B0A07; transition: color 0.3s; }
.press-desc { display: block; font-size: 12px; font-style: italic; color: rgba(11,10,7,0.6); line-height: 1.5; }

/* CTA block (sub-pages) */
.cta-block { position: relative; border-radius: 16px; overflow: hidden; padding: clamp(52px,8vw,100px) clamp(28px,4vw,60px); text-align: center; background: #0B0A07; }
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media video { width: 100%; height: 100%; object-fit: cover; }
.cta-media-overlay { position: absolute; inset: 0; background: #0B0A07; opacity: 0.7; }
.cta-content { position: relative; z-index: 1; }
.cta-text { font-family: Georgia, serif; font-size: clamp(22px,3vw,32px); font-weight: 400; font-style: italic; color: #EDE8DE; max-width: 500px; margin: 0 auto 28px; line-height: 1.4; }

/* Legacy footer (sub-pages) */
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-logo { height: 32px; width: auto; margin-bottom: 12px; }
.footer-logo-jsir { height: 24px; width: auto; margin-bottom: 12px; margin-left: 12px; }
.footer-addr { font-size: 11px; color: rgba(237,232,222,0.5); line-height: 1.5; }
.footer-nav-title { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(237,232,222,0.4); margin-bottom: 10px; }
.footer-nav a { display: block; font-size: 12px; color: rgba(237,232,222,0.6); margin-bottom: 6px; transition: color 0.3s; }
.footer-nav a:hover { color: #EDE8DE; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); }
.contact-detail-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(11,10,7,0.3); margin-bottom: 6px; }
.contact-detail-value { font-size: 15px; font-weight: 500; color: #0B0A07; margin-bottom: 20px; display: block; }
a.contact-detail-value:hover { color: #EDE8DE; }

/* Hood grid (homepage legacy) */
.hood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.hood-card { position: relative; aspect-ratio: 3/4; overflow: hidden; display: block; }
.hood-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hood-card:hover img { transform: scale(1.05); }
.hood-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,10,7,0.7), transparent); display: flex; align-items: flex-end; padding: 20px; }
.hood-card-overlay h3 { font-family: Georgia, serif; font-size: 16px; color: #EDE8DE; }

/* Responsive */
@media (max-width: 1100px) {
  .split-grid, .about-grid, .credentials-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-left, .about-image-wrap { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .press-items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hood-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .press-items { grid-template-columns: 1fr; }
}

/* === CLOSING COST / CALCULATOR PAGE STYLES === */
/* These pages have their own inline <style> tags so they mostly self-style,
   but they need the shared nav, footer, container, and section classes above */
