/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --navy-deep: #080808;
  --navy: #0f0f0f;
  --navy-light: #181818;
  --navy-mid: #202020;
  --charcoal: #272727;
  --crimson: #cc1122;
  --crimson-dark: #aa000f;
  --crimson-light: #e01f30;
  --gold: #b0b0b0;
  --gold-light: #cccccc;
  --gold-dark: #909090;
  --off-white: #f8f6f3;
  --warm-gray: #e8e4df;
  --text-light: #c9d1d9;
  --text-muted: #64748b;
  --text-dark: #1e2025;
  --text-dark-secondary: #4b5563;
  --white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-dark: 0 4px 32px rgba(0,0,0,0.12);
  --border-radius: 4px;
  --max-width: 1200px;
  --header-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

::selection {
  background: var(--crimson);
  color: var(--white);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-dark);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.section-heading--dark {
  color: var(--text-dark);
}

.section-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtext--dark {
  color: var(--text-dark-secondary);
}

/* Fade-in animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.35s var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(144, 144, 144, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 30px rgba(144, 144, 144, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(30, 32, 37, 0.3);
}

.btn-ghost:hover {
  border-color: var(--text-dark);
  background: rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.btn-crimson {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(204, 17, 34, 0.3);
}

.btn-crimson:hover {
  background: var(--crimson-light);
  box-shadow: 0 6px 30px rgba(204, 17, 34, 0.45);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s var(--transition-smooth);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 48px;
  width: auto;
  transition: opacity 0.3s;
}

.header-logo .logo-white {
  display: none;
}

.header-logo .logo-dark {
  display: block;
}

.header-logo:hover img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(30, 32, 37, 0.8);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--crimson);
  transition: width 0.3s var(--transition-smooth);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Active nav link for current page */
.nav-links a.active { color: var(--text-dark); }
.nav-links a.active::after { width: 100%; background: var(--crimson); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.header-phone svg {
  width: 14px;
  height: 14px;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s var(--transition-smooth);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--crimson);
}

.mobile-menu .mobile-phone {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--crimson);
  margin-top: 24px;
  letter-spacing: 1px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--off-white);
}

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

/* Light cinematic gradient background */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(204, 17, 34, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(144, 144, 144, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(232, 228, 223, 1) 0%, transparent 50%),
    linear-gradient(180deg, var(--off-white) 0%, #f0ede9 50%, var(--off-white) 100%);
}

/* Subtle grid pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

/* Animated gradient orb */
.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  animation: orbFloat 20s ease-in-out infinite;
  z-index: 0;
}

.hero-orb--1 {
  background: var(--crimson);
  top: 10%;
  left: 10%;
}

.hero-orb--2 {
  background: var(--gold-dark);
  bottom: 10%;
  right: 10%;
  animation-delay: -10s;
  opacity: 0.07;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--transition-smooth) forwards;
}

.hero-heading {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--transition-smooth) forwards;
}

.hero-heading em {
  font-style: italic;
  color: var(--crimson);
}

.hero-subtext {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-dark-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s var(--transition-smooth) forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--transition-smooth) forwards;
}

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

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--transition-smooth) forwards;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.10);
}

.trust-item {
  text-align: center;
}

.trust-item-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.trust-item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s var(--transition-smooth) forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--crimson), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   PRACTICE AREAS OVERVIEW
   ============================================ */
.practice-overview {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.practice-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.practice-overview-header {
  text-align: center;
  margin-bottom: 72px;
}

.practice-overview-header .section-subtext {
  margin: 0 auto;
}

.practice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.practice-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 48px 36px;
  transition: all 0.5s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  opacity: 0;
  transition: opacity 0.4s;
}

.practice-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,0,0,0.14);
  box-shadow: var(--shadow-card-hover);
}

.practice-card:hover::before {
  opacity: 1;
}

.practice-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  color: var(--crimson);
}

.practice-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.practice-card p {
  color: var(--text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.practice-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--crimson);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.practice-card-link:hover {
  gap: 14px;
}

.practice-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.practice-card:hover .practice-card-link svg {
  transform: translateX(4px);
}

/* ============================================
   ABOUT / BIO SECTION
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--off-white);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 144, 144, 0.06), transparent 70%);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.02) brightness(1.01);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--crimson);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: var(--shadow-card);
}

.about-image-badge .badge-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-badge .badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-content .section-label {
  color: var(--crimson);
}

.about-content .section-label::before {
  background: var(--crimson);
}

.about-content .section-heading {
  color: var(--text-dark);
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--crimson);
  font-style: italic;
  margin-bottom: 24px;
}

.about-text {
  color: var(--text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.about-cta {
  margin-top: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================
   DETAILED PRACTICE AREAS
   ============================================ */
.detail-section {
  padding: 100px 0;
  position: relative;
}

.detail-section--dark {
  background: var(--white);
}

.detail-section--light {
  background: var(--off-white);
  color: var(--text-dark);
}

.detail-section--alt {
  background: var(--off-white);
}

/* Subtle accent line */
.detail-section--dark::before,
.detail-section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.07), transparent);
}

.detail-section--light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}

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

.detail-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.detail-content--light h2 {
  color: var(--text-dark);
}

.detail-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.detail-intro--dark {
  color: var(--text-dark-secondary);
}

.detail-intro--light {
  color: var(--text-dark-secondary);
}

.services-list {
  margin-top: 32px;
}

.services-list h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services-list--dark h4 {
  color: var(--gold-dark);
}

.services-list--light h4 {
  color: var(--crimson);
}

.service-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: flex-start;
}

.detail-section--light .service-item {
  border-bottom-color: rgba(0,0,0,0.06);
}

.service-item svg {
  width: 18px;
  height: 18px;
  color: var(--crimson);
  flex-shrink: 0;
  margin-top: 3px;
}

.detail-section--light .service-item svg {
  color: var(--crimson);
}

.service-item span {
  font-size: 0.95rem;
}

.service-item--dark span {
  color: var(--text-dark-secondary);
}

.service-item--light span {
  color: var(--text-dark-secondary);
}

/* Detail visual side */
.detail-visual {
  position: relative;
}

.detail-feature-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 24px;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.detail-feature-box:hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.detail-section--light .detail-feature-box {
  background: var(--white);
  border-color: rgba(0,0,0,0.08);
  box-shadow: var(--shadow-card);
}

.detail-section--light .detail-feature-box:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon--gold {
  background: rgba(144, 144, 144, 0.12);
  color: var(--gold-dark);
}

.feature-icon--crimson {
  background: rgba(204, 17, 34, 0.08);
  color: var(--crimson);
}

.detail-feature-box h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.detail-section--light .detail-feature-box h4 {
  color: var(--text-dark);
}

.detail-feature-box p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.feature-box-text--dark {
  color: var(--text-dark-secondary);
}

.feature-box-text--light {
  color: var(--text-dark-secondary);
}

/* ============================================
   WHY PREMIER SECTION
   ============================================ */
.why-section {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 17, 34, 0.025), transparent 60%);
}

.why-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-header .section-subtext {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 44px 40px;
  display: flex;
  gap: 24px;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.why-card:hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(204, 17, 34, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--crimson);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 50%, var(--crimson-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(176, 176, 176, 0.1), transparent),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(0,0,0,0.2), transparent);
}

.cta-band-content {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-primary {
  font-size: 1rem;
  padding: 16px 40px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.contact-header {
  text-align: center;
  margin-bottom: 72px;
}

.contact-header .section-subtext {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--border-radius);
  outline: none;
  transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(204, 17, 34, 0.08);
  background: var(--white);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--white);
  color: var(--text-dark);
}

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

.form-group .error-msg {
  font-size: 0.75rem;
  color: var(--crimson-light);
  margin-top: 6px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--crimson-light);
}

.form-group.has-error .error-msg {
  display: block;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--crimson);
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Contact info side */
.contact-info {
  padding-top: 20px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(204, 17, 34, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--crimson);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1.05rem;
  color: var(--text-dark);
}

.contact-info-value a {
  transition: color 0.3s;
}

.contact-info-value a:hover {
  color: var(--crimson);
}

/* Tampa skyline decorative */
.tampa-visual {
  margin-top: 48px;
  padding: 40px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.tampa-visual svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  opacity: 0.2;
  margin: 0 auto 20px;
}

.tampa-visual p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(139, 148, 158, 0.55);
  max-width: 680px;
  line-height: 1.65;
  text-align: center;
  margin: 28px auto 0;
  border-top: 1px solid rgba(139, 148, 158, 0.15);
  padding-top: 20px;
}
.footer-disclaimer p {
  margin: 0 0 8px;
}
.footer-disclaimer p:last-child {
  margin-bottom: 0;
}
.footer-disclaimer-title {
  font-weight: 600;
  color: rgba(139, 148, 158, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  margin-bottom: 10px !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.78rem; }
  .header-phone { display: none; }
  .header-cta .btn { padding: 9px 18px; font-size: 0.75rem; }
}

@media (max-width: 1024px) {
  .practice-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav-links,
  .header-cta .btn,
  .header-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-cta {
    display: flex;
    align-items: center;
  }

  .hero-content {
    padding: 80px 16px 0;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 6.5vw, 2.8rem);
  }

  .trust-bar-inner {
    gap: 24px;
  }

  .trust-item-value {
    font-size: 1.1rem;
  }

  .practice-card {
    padding: 36px 28px;
  }

  .about-image-badge {
    right: 8px;
    bottom: 16px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .about-stat-value {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .detail-section {
    padding: 80px 0;
  }

  .practice-overview,
  .about,
  .why-section,
  .contact {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-card {
    flex-direction: column;
    padding: 32px 28px;
  }
}

/* ============================================
   SMOOTH LOADING
   ============================================ */
.page-loaded .hero-content {
  visibility: visible;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   SUB-PAGE HERO (shorter than homepage)
   ============================================ */
.page-hero {
  padding: 180px 0 80px;
  background: var(--off-white);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(204, 17, 34, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(144, 144, 144, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--off-white) 0%, #f0ede9 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.page-hero h1 em { font-style: italic; color: var(--crimson); }
.page-hero .hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb {
  padding: 0 0 24px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.breadcrumb a { color: var(--crimson); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--crimson-light); }
.breadcrumb .sep { margin: 0 10px; color: var(--text-muted); opacity: 0.5; }
.breadcrumb .current { color: var(--text-muted); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-section .section-heading { text-align: center; margin-bottom: 16px; }
.faq-section .section-subtext { text-align: center; margin: 0 auto 60px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--crimson); }
.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--crimson);
  transition: transform 0.3s var(--transition-smooth);
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth);
}
.faq-answer-inner {
  padding: 0 0 28px;
  color: var(--text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.faq-answer-inner a { color: var(--crimson); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================
   RELATED PRACTICE AREAS CROSS-LINK
   ============================================ */
.related-practices { padding: 100px 0; background: var(--off-white); }
.related-practices .section-heading { text-align: center; margin-bottom: 16px; }
.related-practices .section-subtext { text-align: center; margin: 0 auto 60px; }
.related-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) { .related-cards { grid-template-columns: 1fr; } }

/* ============================================
   CONTENT SECTION (practice area pages)
   ============================================ */
.content-section { padding: 100px 0; }
.content-section--dark { background: var(--white); }
.content-section--light { background: var(--off-white); color: var(--text-dark); }
.content-section--alt { background: var(--off-white); }
.content-section--deep { background: var(--white); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 1024px) { .content-grid { grid-template-columns: 1fr; gap: 48px; } }
.content-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}
.content-text--light h2 { color: var(--text-dark); }
.content-text--dark h2 { color: var(--text-dark); }
.content-text p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }
.content-text--dark p { color: var(--text-dark-secondary); }
.content-text--light p { color: var(--text-dark-secondary); }

/* ============================================
   WHO WE SERVE GRID
   ============================================ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.serve-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: var(--shadow-card);
}
.serve-item:hover {
  border-color: rgba(204, 17, 34, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.serve-item svg { width: 36px; height: 36px; color: var(--crimson); margin: 0 auto 16px; display: block; }
.serve-item h4 { font-size: 0.95rem; color: var(--text-dark); font-family: var(--font-body); font-weight: 600; }
@media (max-width: 768px) { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .serve-grid { grid-template-columns: 1fr; } }

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.timeline { margin-top: 48px; }
.timeline-item { display: flex; gap: 24px; margin-bottom: 32px; }
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--crimson);
  flex-shrink: 0;
  width: 80px;
}
.timeline-text { color: var(--text-dark-secondary); line-height: 1.7; }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.credential-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.credential-item h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--crimson);
  margin-bottom: 8px;
}
.credential-item p { color: var(--text-dark-secondary); font-size: 0.95rem; }
@media (max-width: 768px) { .credentials-grid { grid-template-columns: 1fr; } }

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  padding: 60px 0;
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.stats-band-inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.stats-band-item { text-align: center; }
.stats-band-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-band-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .stats-band-inner { gap: 32px; }
  .stats-band-value { font-size: 1.8rem; }
}

/* ============================================
   CONTACT PAGE MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--warm-gray);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  margin-top: 48px;
}
.map-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.map-placeholder p { font-size: 0.9rem; }

/* ============================================
   NO-JS FALLBACK (critical for SEO)
   ============================================ */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .faq-answer { max-height: none; }
