/* ========================================================
   SOLANJI CONSTRUCTION — SHARED STYLES
   ======================================================== */

/* ── DESIGN TOKENS ────────────────────────────────────── */
:root {
  --black:       #080808;
  --surface:     #0f0f0f;
  --elevated:    #191919;
  --card:        #161616;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dim:    rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.22);
  --text:        #f0ebe0;
  --text-mid:    rgba(240, 235, 224, 0.55);
  --text-muted:  #7a7464;
  --radius:      2px;
}

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

/* ── NOISE TEXTURE ────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ── UTILITY ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}
.section-wrap { max-width: 1220px; margin: 0 auto; padding: 0 2.5rem; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--black); box-shadow: 0 12px 48px rgba(201,168,76,0.28); }
.btn-primary:active { transform: scale(0.985); }
.btn-primary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-ghost:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ── NAV ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.35s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.125rem 2.5rem;
  border-bottom-color: var(--gold-border);
}
.nav-logo img { height: 120px; width: auto; margin: -36px 0; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.75rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.6563rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.58);
  text-decoration: none;
  transition: color 0.22s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ── Nav Dropdown ─────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: default; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--gold-border);
  padding: 0.625rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 950;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.55);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── Hamburger ────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile Nav Overlay ───────────────────────────────── */
#mobileNav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  overflow-y: auto;
  padding: 6rem 2rem;
}
#mobileNav.open { display: flex; }
#mobileNav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.22s ease, transform 0.22s ease;
}
#mobileNav a:hover { color: var(--gold); transform: translateX(8px); }
.mobile-sub-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mobile-sub-links a {
  font-size: 1.5rem !important;
  color: var(--text-mid) !important;
}

/* ── HERO (Homepage) ──────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.06);
  transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hero-bg.animate { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(8,8,8,0.98) 0%,
      rgba(8,8,8,0.85) 25%,
      rgba(8,8,8,0.55) 50%,
      rgba(8,8,8,0.30) 75%,
      rgba(8,8,8,0.15) 100%
    );
}
.hero-color {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.05);
  mix-blend-mode: multiply;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 5.5rem;
  max-width: 820px;
}
.hero-content h1 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p {
  font-size: 1rem;
  color: rgba(240,235,224,0.65);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 3rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-cue span {
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  margin-bottom: 0.75rem;
}
.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: linePulse 2.4s ease-in-out infinite;
}
@keyframes linePulse {
  0%,100% { opacity: 0.25; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* ── SUBPAGE HERO ─────────────────────────────────────── */
.subpage-hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 6rem;
}
.subpage-hero .hero-bg {
  transform: scale(1.02);
}
.subpage-hero .hero-overlay {
  background:
    linear-gradient(to top,
      rgba(8,8,8,0.98) 0%,
      rgba(8,8,8,0.88) 30%,
      rgba(8,8,8,0.65) 60%,
      rgba(8,8,8,0.45) 100%
    );
}
.subpage-hero .hero-content {
  padding-bottom: 4rem;
}
.subpage-hero .hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
}

/* ── Breadcrumb ───────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.22s ease;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }

/* ── STATS BAR ────────────────────────────────────────── */
#stats {
  background: var(--surface);
  border-bottom: 1px solid var(--gold-border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--gold-border);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

/* ── ABOUT ────────────────────────────────────────────── */
#about, .about-section { padding: 7rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-image-frame {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid var(--gold-border);
  pointer-events: none;
}
.about-text h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  color: var(--text);
  margin-bottom: 0;
}
.about-text .lead {
  font-size: 1.0625rem;
  color: rgba(240,235,224,0.62);
  line-height: 1.85;
  margin-bottom: 1.125rem;
}
.about-text .body-copy {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.owner-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
}
.owner-line { width: 32px; height: 1px; background: var(--gold); }
.owner-tag p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.owner-tag strong { color: var(--text); font-weight: 500; }

/* ── SERVICES ─────────────────────────────────────────── */
#services, #custom-homes, .services-section {
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  color: var(--text);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gold-border);
  gap: 0;
}
.service-card {
  padding: 3rem 2.25rem;
  border-right: 1px solid var(--gold-border);
  transition: background 0.3s ease;
  cursor: default;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--elevated); }
.service-icon { margin-bottom: 1.75rem; }
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  opacity: 0.8;
}
.service-card h3 {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-card a {
  text-decoration: none;
}

/* ── FEATURED PROJECTS ────────────────────────────────── */
#projects, .projects-section { padding: 7rem 0; }
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.projects-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  color: var(--text);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 0.65s cubic-bezier(0.33, 0, 0.1, 1);
  will-change: opacity, transform;
}
.project-card img.active { opacity: 1; }
.project-card:hover img.active { transform: scale(1.05); }
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.15) 40%, transparent 100%);
  transition: background 0.35s ease;
}
.project-card:hover .proj-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.2) 45%, rgba(201,168,76,0.04) 100%);
}
.proj-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 2rem;
  z-index: 2;
}
.proj-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.proj-loc {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── WHY CHOOSE US ────────────────────────────────────── */
#why, .why-section {
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-text h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  color: var(--text);
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.why-marker {
  flex-shrink: 0;
  width: 1px;
  height: 44px;
  background: var(--gold);
  margin-top: 3px;
}
.why-item-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.why-item-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.why-image { position: relative; }
.why-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.why-image-frame {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid var(--gold-border);
  pointer-events: none;
  z-index: -1;
}

/* ── PROCESS ──────────────────────────────────────────── */
#process, .process-section {
  padding: 7rem 0;
  border-top: 1px solid var(--gold-border);
}
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  color: var(--text);
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 1.1875rem;
  left: calc(12.5% + 1.25rem);
  right: calc(12.5% + 1.25rem);
  height: 1px;
  background: var(--gold-border);
}
.process-step { padding: 0 2rem; text-align: center; }
.step-circle {
  width: 2.375rem;
  height: 2.375rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--gold);
  background: var(--black);
  position: relative;
  z-index: 1;
}
.step-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA / CONTACT ────────────────────────────────────── */
#contact, .cta-section {
  padding: 7rem 0;
  background: var(--elevated);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
#contact::before, .cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.contact-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-inner h2 {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}
.contact-inner h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.contact-inner > p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.cta-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  max-width: 780px;
  margin: 4rem auto 0;
}
.contact-card {
  background: var(--elevated);
  padding: 2.25rem 2rem;
  text-align: center;
}
.contact-card-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}
.contact-card-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
}
.contact-card-val a {
  text-decoration: none;
  color: inherit;
  transition: color 0.22s ease;
}
.contact-card-val a:hover { color: var(--gold); }
.contact-card-val a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ── FAQ SECTION ──────────────────────────────────────── */
.faq-section {
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
}
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  color: var(--text);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gold-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--gold-border);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.22s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 200;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1.5rem;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--gold); }
.faq-answer {
  padding: 0 0 1.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
}
.faq-answer a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  transition: border-color 0.22s ease;
}
.faq-answer a:hover { border-color: var(--gold); }

/* ── INTRO / CONTENT SECTION ──────────────────────────── */
.intro-section {
  padding: 7rem 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.intro-text h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  color: var(--text);
  margin-bottom: 0;
}
.intro-text .lead {
  font-size: 1.0625rem;
  color: rgba(240,235,224,0.62);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.intro-text .body-copy {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.intro-text .body-copy a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  transition: border-color 0.22s ease;
}
.intro-text .body-copy a:hover { border-color: var(--gold); }
.intro-image-wrap { position: relative; }
.intro-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ── BLOG / LONG-FORM CONTENT ─────────────────────────── */
.blog-section {
  padding: 7rem 0;
}
.blog-content {
  max-width: 780px;
  margin: 0 auto;
}
.blog-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
  margin: 3.5rem 0 1.25rem;
}
.blog-content h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text);
  margin: 2.75rem 0 1rem;
  font-weight: 400;
}
.blog-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.blog-content ul, .blog-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.blog-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0.5rem;
}
.blog-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  transition: border-color 0.22s ease;
}
.blog-content a:hover { border-color: var(--gold); }
.blog-content strong { color: var(--text); font-weight: 500; }
.blog-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: var(--gold-dim);
}
.blog-content blockquote p {
  color: rgba(240,235,224,0.7);
  margin-bottom: 0;
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border: 1px solid var(--gold-border);
}
.cost-table th {
  background: var(--elevated);
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--gold-border);
}
.cost-table td {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gold-border);
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:hover td { background: var(--gold-dim); }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  padding: 4rem 2.5rem 2.5rem;
}
.footer-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gold-border);
}
.footer-brand img { height: 120px; margin: -36px 0 -20px -36px; }
.footer-brand p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.75;
}
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.22s ease;
}
.footer-col ul a:hover { color: var(--text); }
.footer-col ul a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.footer-col address { font-style: normal; }
.footer-col address p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-bottom {
  max-width: 1220px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.22s ease;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .about-grid, .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap, .intro-image-wrap { order: -1; }
  .why-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .why-image   { order: -1; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
  .process-track::before { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .projects-grid { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  #about, #services, #custom-homes, #projects, #why, #process, #contact,
  .about-section, .services-section, .projects-section, .why-section,
  .process-section, .cta-section, .faq-section, .intro-section,
  .blog-section { padding: 5rem 0; }
}

@media (max-width: 540px) {
  .section-wrap { padding: 0 1.25rem; }
  footer { padding: 3rem 1.25rem 2rem; }
  #navbar { padding: 1.25rem 1.25rem; }
  #navbar.scrolled { padding: 1rem 1.25rem; }
  .hero-content { padding: 0 1.25rem 3.5rem; }
  .scroll-cue { display: none; }
  .process-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .stat-cell:last-child { border-bottom: none; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .subpage-hero { height: 100svh; min-height: 520px; }
}
