/* ============================================
   BLACKTHORNE & VALE — INTERIOR PAGE STYLES
   ============================================ */

/* ABOUT */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 7vw, 120px);
  align-items: start;
}
.about-story-img {
  margin-top: 50px;
  height: 360px;
  overflow: hidden;
  background: var(--charcoal);
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.value-item {
  padding: clamp(32px, 4vw, 60px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.value-item:hover { background: var(--charcoal); }
.value-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(184,150,90,0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

/* DIFFERENTIATORS */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 7vw, 120px);
  align-items: start;
}
.diff-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.diff-icon {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-item-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}

/* STATS BAND */
.stats-band {
  background: var(--charcoal);
  border-top: 1px solid rgba(184,150,90,0.15);
  border-bottom: 1px solid rgba(184,150,90,0.15);
  padding: clamp(60px, 7vw, 100px) 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 4vw, 60px);
}

/* PRACTICE AREAS PAGE */
.pa-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 7vw, 120px);
  align-items: center;
}
.pa-list { margin-top: 80px; }
.pa-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 3vw, 50px);
  align-items: start;
  padding: clamp(32px, 4vw, 50px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.pa-item:hover .pa-item-title { color: var(--gold-light); }
.pa-item-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  padding-top: 6px;
  min-width: 30px;
}
.pa-item-content { flex: 1; }
.pa-item-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  transition: color 0.3s;
  line-height: 1.1;
}
.pa-item-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--subtle);
  max-width: 600px;
}
.pa-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pa-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
}
.pa-item-img {
  width: clamp(120px, 12vw, 180px);
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.pa-item:hover .pa-item-img { opacity: 1; }

/* ATTORNEYS PAGE */
.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  margin-top: 60px;
}
.attorney-profile {
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.attorney-profile:hover {
  border-color: rgba(184,150,90,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.attorney-profile-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.attorney-profile-img img {
  transition: transform 0.6s var(--ease-out);
  filter: grayscale(15%);
}
.attorney-profile:hover .attorney-profile-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.attorney-profile-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 0%, transparent 50%);
}
.attorney-profile-body {
  padding: 28px;
  flex: 1;
}
.attorney-profile-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.attorney-profile-role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 8px 0 16px;
}
.attorney-profile-bio {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--subtle);
  margin-bottom: 20px;
}
.attorney-profile-cred {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* RESULTS PAGE */
.results-filter {
  display: flex;
  gap: 4px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--subtle);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.results-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.result-card {
  background: var(--charcoal);
  padding: clamp(28px, 3.5vw, 50px);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease-out);
}
.result-card:hover::before { height: 100%; }
.result-card:hover { border-color: rgba(184,150,90,0.15); }
.result-card-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.3);
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 20px;
}
.result-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.result-card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--subtle);
  margin-bottom: 20px;
}
.result-card-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.result-meta-item {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.result-meta-item span { color: var(--light); }

/* INSIGHTS PAGE */
.insights-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 30px);
}
.insight-page-card {
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.insight-page-card:hover {
  border-color: rgba(184,150,90,0.2);
  transform: translateY(-3px);
}
.insight-page-img {
  height: 220px;
  overflow: hidden;
}
.insight-page-img img { transition: transform 0.5s var(--ease-out); }
.insight-page-card:hover .insight-page-img img { transform: scale(1.04); }
.insight-page-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.insight-page-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin: 14px 0 12px;
  flex: 1;
}
.insight-page-excerpt {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--subtle);
  margin-bottom: 20px;
}
.insight-page-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  margin-top: auto;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.testimonial-card {
  background: var(--charcoal);
  padding: clamp(32px, 4vw, 60px);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(184,150,90,0.08);
  line-height: 0.8;
  margin-bottom: -20px;
  font-style: italic;
}
.testimonial-text {
  font-family: var(--font-editorial);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  color: var(--light);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author-divider {
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.testimonial-author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.testimonial-author-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(60px, 7vw, 120px);
  align-items: start;
}
.contact-info-item {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}
.contact-form-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 40px;
}
.form-submit-btn {
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  margin-top: 8px;
}
.form-submit-btn:hover { background: var(--gold-light); }

/* CTA INNER reused */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0;
}
.cta-right { text-align: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 60px; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .attorneys-grid { grid-template-columns: 1fr 1fr; }
  .results-masonry { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .insights-page-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .pa-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .attorneys-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .insights-page-grid { grid-template-columns: 1fr; }
  .pa-item { grid-template-columns: auto 1fr; }
  .pa-item-img { display: none; }
}

/* INSIGHTS FEATURED WIDE */
.insight-card-featured-wide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  margin-bottom: 3px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.insight-card-featured-wide:hover { border-color: rgba(184,150,90,0.2); }
.insight-card-featured-wide .insight-img { height: 100%; min-height: 360px; }
.insight-card-featured-wide .insight-img img { transition: transform 0.5s var(--ease-out); }
.insight-card-featured-wide:hover .insight-img img { transform: scale(1.03); }
.insight-card-featured-wide .insight-body { padding: clamp(32px,4vw,60px); display: flex; flex-direction: column; justify-content: center; }
.insight-card-featured-wide .insight-title { font-family: var(--font-display); font-size: clamp(20px,2.5vw,30px); font-weight: 400; color: var(--white); line-height: 1.25; margin: 20px 0; }
.insight-card-featured-wide .insight-meta { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
@media (max-width: 900px) {
  .insight-card-featured-wide { grid-template-columns: 1fr; }
  .insight-card-featured-wide .insight-img { min-height: 260px; }
}

/* RECOGNITION BAND responsive */
@media (max-width: 768px) {
  div[style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
}
