/* ============================================
   PAGE HERO (shared across inner pages)
   ============================================ */
.page-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) var(--edge) clamp(20px, 4vw, 40px);
}
.page-title {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  max-width: 16ch;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.portrait-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #DED5C2 0%, #C9BFA8 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  opacity: 0.6;
  position: sticky;
  top: 100px;
}
.about-copy .lede {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  margin-bottom: 24px;
  color: var(--ink);
}
.about-copy p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.credentials {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(18,24,31,0.15);
}
.credential-item { display: flex; flex-direction: column; gap: 4px; }
.credential-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
}
.credential-value { font-size: 0.92rem; color: var(--ink); }

.values-section { padding-top: 0; }
.values-list { display: flex; flex-direction: column; }
.value-row {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(18,24,31,0.15);
}
.value-row:last-child { border-bottom: 1px solid rgba(18,24,31,0.15); }
.value-row h3 { font-size: 1.15rem; font-weight: 500; }
.value-row p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.65; }

/* ============================================
   PROJECTS LISTING PAGE
   ============================================ */
.filter-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--edge) 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 9px 18px;
  border: 1px solid rgba(18,24,31,0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  background: transparent;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.filter-chip.active, .filter-chip:hover {
  background: var(--ink);
  color: var(--limestone);
  border-color: var(--ink);
}

.project-grid-full {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--edge) 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.disclaimer-note {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--edge) 60px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.7;
  max-width: 70ch;
}

/* ============================================
   INSIGHTS / BLOG LISTING PAGE
   ============================================ */
.insight-grid-full {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--edge) 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(18,24,31,0.12);
  border-top: 1px solid rgba(18,24,31,0.12);
  border-left: 1px solid rgba(18,24,31,0.12);
}
.insight-grid-full .insight-card {
  background: var(--limestone);
  padding: 40px;
  border: none;
  margin: 0;
}
.insight-grid-full .insight-card:hover { background: var(--white); transform: none; }
.insight-grid-full .insight-card h3 { font-size: 1.3rem; }
.insight-excerpt {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 12px 0 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  border: 1px solid rgba(18,24,31,0.2);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit {
  align-self: flex-start;
  margin-top: 8px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

.contact-side { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: 4px;
}
.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}
.contact-card a.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.2s var(--ease);
}
.contact-card a.contact-link:hover { color: var(--signal); }
.contact-card a.contact-link:last-child { margin-bottom: 0; }
.contact-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

.map-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #DED5C2 0%, #C9BFA8 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: center;
}

/* ============================================
   RESPONSIVE — inner pages
   ============================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .portrait-placeholder { position: static; max-width: 320px; margin: 0 auto; }
  .value-row { grid-template-columns: 1fr; gap: 10px; }
  .project-grid-full { grid-template-columns: 1fr; }
  .insight-grid-full { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
