/* Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #1a2332;
  background-color: #f8fafc;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Full-Width Header Navigation */
.header {
  width: 100%;
  padding: 14px 2vw;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.logo {
  flex-shrink: 0;
  padding: 10px 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0f172a;
  border: 2px solid #0f172a;
  border-radius: 6px;
  background: #ffffff;
}

.nav-links {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 8px;
  width: 100%;
}

.nav-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  color: #334155;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

.nav-box:hover {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.cta-box {
  background-color: #1e293b;
  color: #ffffff;
  font-weight: 600;
}

/* Section Layouts */
.section {
  padding: 100px 8vw;
}

.eyebrow,
.section-label,
.platform-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #2563eb;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 140px 8vw 120px;
}

.hero .eyebrow {
  color: #60a5fa;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero .lead {
  font-size: 20px;
  color: #94a3b8;
  max-width: 800px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.button.primary {
  background-color: #2563eb;
  color: #ffffff;
}

.button.primary:hover {
  background-color: #1d4ed8;
}

.button.secondary {
  border: 1px solid #475569;
  color: #ffffff;
}

.button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.block-button {
  width: 100%;
  margin-top: 10px;
}

/* About Section */
.about {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6vw;
  align-items: start;
}

.about-grid h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1.2;
}

.lead-text {
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 16px;
}

/* Practice Cards Section */
.practices-overview {
  background-color: #f8fafc;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

.practice-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.practice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.practice-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 14px;
}

.practice-body p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.feature-list li {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
  border-left: 3px solid #2563eb;
}

/* Contact Section */
.contact {
  background-color: #0f172a;
  color: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 18px;
}

.contact-info p {
  color: #94a3b8;
  font-size: 16px;
  margin-bottom: 24px;
}

.direct-email a {
  color: #60a5fa;
  font-size: 18px;
  font-weight: 600;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 36px;
  color: #0f172a;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background-color: #f8fafc;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: #020617;
  color: #64748b;
  padding: 30px 8vw;
  font-size: 13px;
  border-top: 1px solid #1e293b;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  color: #f8fafc;
}

/* Mobile Responsiveness */
@media (max-width: 800px) {
  .nav {
    flex-direction: column;
  }

  .nav-links {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
