/* ========================================
   Balmoral Law — V2 Skyline Design
   ======================================== */

:root {
  --navy: #0c1a2e;
  --navy-light: #14253d;
  --navy-mid: #1b304f;
  --blue-accent: #2d5b9e;
  --gold: #c9a84c;
  --gold-light: #dfc474;
  --cream: #f7f5f0;
  --white: #ffffff;
  --gray-200: #e4e4e4;
  --gray-400: #999;
  --text: #1c1c1c;
  --text-muted: #5e5e5e;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-family: var(--font-serif); font-style: italic; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

/* ========================================
   Nav
   ======================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(12, 26, 46, 0.95);
  backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
}

.nav-logo { gap: 0.85rem; }
.nav-logo-mark { width: 34px; height: 40px; }

.nav-logo-text {
  font-family: var(--font-serif); font-size: 1.45rem;
  font-weight: 600; color: var(--white); letter-spacing: 0.13em;
}

.nav-logo-sub {
  font-family: var(--font-serif); font-size: 1.45rem;
  font-weight: 600; color: var(--gold); letter-spacing: 0.13em;
  margin-left: 0.3em;
}

.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.04em; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) brightness(0.5);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,26,46,0.85) 0%, rgba(12,26,46,0.5) 40%, rgba(12,26,46,0.75) 100%),
    linear-gradient(90deg, rgba(12,26,46,0.6) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 2rem; max-width: 820px;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 400; color: var(--white);
  line-height: 1.2; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title em {
  color: var(--gold); font-weight: 400;
}

.hero-divider {
  width: 60px; height: 2px; margin: 0 auto 1.5rem;
  background: var(--gold); opacity: 0.6;
  opacity: 0; animation: fadeUp 0.6s 0.55s forwards;
}

.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s 0.75s forwards;
}

.hero-bottom {
  position: absolute; bottom: 2rem; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: space-between;
  padding: 0 3rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  opacity: 0; animation: fadeUp 0.7s 1s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2rem; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; border-radius: 3px;
  transition: all 0.3s var(--ease); cursor: pointer;
  border: none; font-family: var(--font-sans);
}

.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}

.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-full { width: 100%; }

/* ========================================
   Typography
   ======================================== */
.eyebrow {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold); }

.heading-lg {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 1.25rem;
  color: var(--navy);
}
.heading-light { color: var(--white); }

.text-lead {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 1rem;
}
.text-light-muted { color: rgba(255,255,255,0.5); }

/* ========================================
   Sections
   ======================================== */
.section { padding: 7rem 0; }
.section-dark { background: var(--navy); }

/* About */
.about-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; margin-bottom: 4rem;
}

.about-right p { color: var(--text-muted); margin-bottom: 1rem; }

.stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; padding: 2.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 500; color: var(--navy);
  margin-bottom: 0.25rem;
}
.stat-desc { font-size: 0.75rem; color: var(--gray-400); letter-spacing: 0.03em; line-height: 1.5; }
.stat-divider { width: 1px; height: 50px; background: var(--gray-200); }

/* Skyline divider */
.skyline-divider {
  position: relative; height: 280px; overflow: hidden;
}
.skyline-divider img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.6);
}
.skyline-divider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(12,26,46,0.7) 30%, rgba(12,26,46,0.85) 100%);
}
.skyline-quote {
  position: absolute; bottom: 2.5rem; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.3rem; color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* Practice Areas */
.section-dark .text-lead { margin-bottom: 3rem; }

.practice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 1rem;
}

.practice-card {
  padding: 2.5rem 2rem; background: var(--navy);
  transition: all 0.3s var(--ease);
}
.practice-card:hover {
  background: var(--navy-light);
}

.practice-num {
  display: block; font-family: var(--font-serif);
  font-size: 2rem; font-weight: 400;
  color: rgba(201,168,76,0.25); margin-bottom: 1rem;
}

.practice-card h3 {
  font-family: var(--font-serif); font-size: 1.15rem;
  font-weight: 500; color: var(--white); margin-bottom: 0.75rem;
}

.practice-card p {
  font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7;
}

/* Team */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem; margin-top: 3rem;
}

.team-card {
  display: flex; gap: 2rem; align-items: flex-start;
}

.team-photo {
  flex-shrink: 0; width: 120px; height: 140px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}

.team-initials {
  font-family: var(--font-serif); font-size: 2.5rem;
  color: var(--gold); opacity: 0.3;
}

.team-info h3 {
  font-family: var(--font-serif); font-size: 1.2rem;
  font-weight: 500; color: var(--navy); margin-bottom: 0.15rem;
}

.team-role {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

.team-note {
  display: block; margin-top: 0.75rem;
  font-size: 0.72rem; color: var(--gray-400); font-style: italic;
}

/* Contact */
.contact-centered { text-align: center; }

.contact-intro { max-width: 540px; margin: 0 auto 3rem; }

.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  transition: all 0.3s var(--ease);
}

.contact-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.06);
}

.contact-icon { width: 28px; height: 28px; color: var(--gold); }

.contact-card-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.contact-card a, .contact-card span {
  font-size: 0.95rem; color: rgba(255,255,255,0.8);
}

.contact-card a:hover { color: var(--gold); }

/* Team LinkedIn */
.team-linkedin {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.75rem; font-size: 0.8rem; font-weight: 500;
  color: var(--gold); transition: all 0.3s;
}
.team-linkedin svg { width: 14px; height: 14px; }
.team-linkedin:hover { color: var(--gold-light); }

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--navy); padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1.25rem;
}

.footer-brand {
  display: flex; align-items: center; gap: 0.5rem;
}

.footer-brand { gap: 0.6rem; }
.footer-logo-mark { width: 26px; height: 30px; opacity: 0.5; }

.footer-brand-text {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 600; color: var(--white); letter-spacing: 0.13em;
  opacity: 0.6;
}

.footer-brand-sub {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 600; color: var(--gold); letter-spacing: 0.13em;
  margin-left: 0.3em; opacity: 0.6;
}

.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ========================================
   Scroll Reveal
   ======================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(12,26,46,0.98); backdrop-filter: blur(16px);
    padding: 2rem; gap: 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .hero-title { font-size: 2.2rem; }
  .hero-bottom { padding: 0 2rem; }
  .section { padding: 5rem 0; }
  .practice-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; gap: 1.25rem; }
  .team-photo { width: 100%; height: 180px; }
  .stats-bar { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
  .skyline-divider { height: 200px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-badge { font-size: 0.65rem; padding: 0.4rem 1.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section { padding: 4rem 0; }
}
/* deployed Thu Apr  9 17:00:48 EST 2026 */
