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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,11,0.92) 0%,
    rgba(10,10,11,0.65) 50%,
    rgba(10,10,11,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: clamp(40px, 5vw, 100px);
  padding-top: clamp(80px, 10vh, 140px);
  padding-bottom: 40px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  grid-column: 1 / -1;
  animation: fadeInUp 1s var(--ease-out) 0.2s both;
}
.hero-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  max-width: 200px;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  animation: fadeInUp 1s var(--ease-out) 0.4s both;
}
.hero-title-italic {
  font-style: italic;
  color: var(--gold-light);
}
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
  animation: fadeInUp 1s var(--ease-out) 0.6s both;
}
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light);
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: clamp(40px, 5vh, 60px);
  animation: fadeInUp 1s var(--ease-out) 0.8s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--white);
  display: block;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* MARQUEE */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(184,150,90,0.15);
  border-bottom: 1px solid rgba(184,150,90,0.15);
  padding: 18px 0;
  background: var(--deep);
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-dot { color: var(--gold) !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* INTRO */
.intro-section { background: var(--black); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 120px);
  align-items: center;
}
.intro-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
}

/* PRACTICE GRID */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.practice-card {
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.practice-card:hover {
  border-color: rgba(184,150,90,0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.practice-card-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: rgba(184,150,90,0.08);
  line-height: 1;
  padding: 30px 30px 0;
  transition: color 0.3s;
}
.practice-card:hover .practice-card-num { color: rgba(184,150,90,0.15); }
.practice-card-body {
  flex: 1;
  padding: 16px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.practice-card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
.practice-card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--subtle);
  flex: 1;
}
.practice-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.practice-card-img img {
  transition: transform 0.6s var(--ease-out);
  filter: grayscale(30%);
}
.practice-card:hover .practice-card-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* ATTORNEYS PREVIEW */
.attorneys-preview { background: var(--black); }
.attorneys-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.attorneys-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 30px);
}
.attorney-card {
  cursor: pointer;
  display: block;
}
.attorney-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
}
.attorney-img img {
  transition: transform 0.6s var(--ease-out);
  filter: grayscale(20%);
}
.attorney-card:hover .attorney-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.attorney-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,11,0.8) 0%, transparent 60%);
}
.attorney-info { padding: 24px 0 0; }
.attorney-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.attorney-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.attorney-focus {
  font-size: 12px;
  font-weight: 300;
  color: var(--subtle);
  margin-top: 8px;
}

/* RESULTS */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 7vw, 120px);
  align-items: start;
}
.result-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.result-badge {
  display: inline-block;
  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;
  width: fit-content;
}
.result-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--light);
}

/* QUOTE INTERLUDE */
.quote-section {
  position: relative;
  padding: clamp(100px, 12vw, 180px) 0;
  text-align: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-bg img { filter: brightness(0.3) grayscale(30%); }
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,0.7);
}
.quote-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
}
.quote-cite {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 32px;
  font-style: normal;
}

/* INSIGHTS */
.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.insight-card-featured {
  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);
}
.insight-card-featured:hover {
  border-color: rgba(184,150,90,0.2);
  transform: translateY(-3px);
}
.insight-img {
  height: 280px;
  overflow: hidden;
}
.insight-img img {
  transition: transform 0.6s var(--ease-out);
}
.insight-card-featured:hover .insight-img img { transform: scale(1.04); }
.insight-body { padding: 32px; }
.insight-tag {
  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;
}
.insight-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin: 20px 0 16px;
}
.insight-excerpt {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--subtle);
  margin-bottom: 24px;
}
.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  margin-top: 16px;
}
.insights-side { display: flex; flex-direction: column; gap: 2px; }
.insight-card-sm {
  display: block;
  padding: 28px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s var(--ease-out);
}
.insight-card-sm:hover { border-color: rgba(184,150,90,0.2); }
.insight-sm-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin: 12px 0 16px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep) 100%);
  border-top: 1px solid rgba(184,150,90,0.15);
  padding: clamp(80px, 8vw, 130px) 0;
}
.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; }
.cta-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-eyebrow { grid-column: 1; }
  .hero-right { padding-top: 40px; }
  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .results-grid { grid-template-columns: 1fr; gap: 60px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .practice-grid { grid-template-columns: 1fr; }
  .attorneys-preview-grid { grid-template-columns: 1fr 1fr; }
  .attorneys-preview-header { flex-direction: column; align-items: flex-start; gap: 30px; }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
}
@media (max-width: 480px) {
  .attorneys-preview-grid { grid-template-columns: 1fr; }
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 30px; }
  .hero-scroll { display: none; }
}
