/* Frandeș Law — custom styles (Tailwind handles the bulk) */

/* Prose text column */
.prose-legal {
  max-width: 65ch;
  line-height: 1.75;
}

/* Accent rule — terracotta horizontal line */
.accent-rule {
  display: block;
  width: 3rem;
  height: 2px;
  background-color: #B8552B;
  margin-bottom: 1.5rem;
}

/* Hero tagline — each line on its own */
.hero-line {
  display: block;
}

/* Nav active language indicator */
.lang-active {
  font-weight: 700;
  color: #1C1C1C;
}
.lang-inactive {
  font-weight: 400;
  color: #4A4A4A;
}

/* Practice card hover accent border */
.practice-card {
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.practice-card:hover {
  border-bottom-color: #B8552B;
}

/* Network card — visually distinct from practice cards */
.network-card {
  border: 1px dashed #B8552B;
  background-color: #FAF7F4;
}

/* Contact form */
.form-field {
  width: 100%;
  border: 1px solid #E5DFD0;
  background: #fff;
  padding: 0.625rem 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1C1C1C;
  outline: none;
  transition: border-color 0.2s;
}
.form-field:focus {
  border-color: #B8552B;
}

/* Coming soon pill */
.pill-soon {
  display: inline-block;
  background: #E5DFD0;
  color: #4A4A4A;
  font-size: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Link hover — terracotta */
a.hover-accent:hover {
  color: #B8552B;
}

/* Fade-in on scroll (intersection observer) */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
