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

:root {
  --burgundy: #6B1A2A;
  --burgundy-dark: #4a1120;
  --burgundy-light: #8c2438;
  --white: #fdfaf7;
  --off-white: #f5f0eb;
  --charcoal: #2a2a2a;
  --mid-gray: #6b6b6b;
  --light-gray: #e8e0d8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(253, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--burgundy); }

.nav-cta {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 2px;
}

.nav-cta:hover { background: var(--burgundy-dark); color: var(--white) !important; }

/* ─── SHARED SECTION STYLES ─── */
section { padding: 100px 60px; }

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
}

.section-title strong { font-weight: 700; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--white);
  color: var(--burgundy);
  padding: 14px 36px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 36px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-burgundy {
  background: var(--burgundy);
  color: white;
  padding: 14px 36px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.3s;
}

.btn-burgundy:hover { background: var(--burgundy-dark); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  background: var(--burgundy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  font-weight: 700;
  display: block;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 48px;
  font-weight: 300;
}

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

.hero-right {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 70px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 8px;
}

.hero-quote {
  border-left: 3px solid var(--burgundy);
  padding-left: 24px;
}

.hero-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ─── PRACTICE AREAS ─── */
.practice { background: var(--white); }

.practice-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

.practice-intro {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.9;
  font-weight: 300;
}

.practice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.practice-card {
  background: var(--off-white);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

.practice-card:hover { background: var(--burgundy); }

.practice-card:hover .practice-card-title,
.practice-card:hover .practice-card-text,
.practice-card:hover .practice-card-list li { color: var(--white); }

.practice-card:hover .practice-card-number { color: rgba(255,255,255,0.15); }

.practice-card:hover .practice-card-icon {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.practice-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--light-gray);
  position: absolute;
  top: 20px; right: 30px;
  line-height: 1;
  transition: color 0.4s;
}

.practice-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 20px;
  color: var(--burgundy);
  transition: all 0.4s;
}

.practice-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  transition: color 0.4s;
}

.practice-card-text {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
  transition: color 0.4s;
}

.practice-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.practice-card-list li {
  font-size: 13px;
  color: var(--mid-gray);
  padding-left: 16px;
  position: relative;
  transition: color 0.4s;
}

.practice-card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--burgundy);
}

.practice-card:hover .practice-card-list li::before { color: rgba(255,255,255,0.6); }

/* ─── WHY US ─── */
.why {
  background: var(--burgundy);
  color: var(--white);
}

.why .section-label { color: rgba(255,255,255,0.6); }
.why .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 70px;
}

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.why-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-weight: 300;
}

.why-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-top: 3px solid var(--burgundy);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
}

.testimonial-role {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 4px;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  padding-top: 80px;
}

.about-hero-left {
  background: var(--burgundy);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-right {
  background: var(--off-white);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-body { padding: 100px 60px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.about-credentials { margin-top: 40px; }

.credential-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

.credential-item:last-child { border-bottom: none; }

.credential-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 6px;
}

.credential-value {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.6;
}

.about-content p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

.about-content p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--charcoal);
  font-weight: 400;
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  background: var(--burgundy);
  padding: 140px 60px 60px;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.contact-info {
  background: var(--off-white);
  padding: 80px 70px;
}

.contact-info-item { margin-bottom: 40px; }

.contact-info-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 10px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
}

.contact-form-area {
  background: var(--white);
  padding: 80px 70px;
}

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

.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 10px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-bottom-color: var(--burgundy);
}

.form-textarea { resize: none; height: 100px; }

.form-submit {
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 16px 48px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s;
  width: 100%;
}

.form-submit:hover { background: var(--burgundy-dark); }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.5s ease; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 24px; min-height: 70vh; }
  .hero-right { padding: 60px 24px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }

  .practice-header { grid-template-columns: 1fr; }
  .practice-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .about-hero { grid-template-columns: 1fr; }
  .about-hero-left, .about-hero-right { padding: 60px 24px; }
  .about-body { padding: 60px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-hero { padding: 100px 24px 40px; }
  .contact-body { grid-template-columns: 1fr; }
  .contact-info, .contact-form-area { padding: 60px 24px; }

  footer { flex-direction: column; gap: 16px; text-align: center; }
}