/*
Theme Name: Health Law Offices — Premium
Theme URI: https://healthlawoffices.com
Author: Health Law Offices
Description: A luxury legal design theme for Health Law Offices — refined, authoritative, and memorable.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: hlo
*/

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --ink:       #0c0f14;
  --ink-soft:  #1e2535;
  --gold:      #c9a96e;
  --gold-light:#e8d5b0;
  --gold-pale: #faf5ec;
  --cream:     #f7f4ef;
  --white:     #ffffff;
  --mist:      #8c929e;
  --border:    rgba(201,169,110,.18);
  --shadow-sm: 0 2px 12px rgba(12,15,20,.06);
  --shadow-md: 0 8px 32px rgba(12,15,20,.10);
  --shadow-lg: 0 24px 64px rgba(12,15,20,.14);
  --radius:    3px;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --trans:      .3s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.display-xl {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.display-lg {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
}
.display-md {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content:'';
  position:absolute; inset:0;
  background: rgba(255,255,255,.08);
  opacity:0;
  transition: opacity var(--trans);
}
.btn:hover::after { opacity:1; }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: #b8924a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.35);
}

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  color: var(--ink-soft);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── HEADER ─────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--trans);
}
#site-header.at-top {
  background: transparent;
  padding: 1.5rem 0;
}
#site-header.scrolled {
  background: rgba(12,15,20,.96);
  backdrop-filter: blur(12px);
  padding: .9rem 0;
  box-shadow: 0 1px 0 rgba(201,169,110,.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.site-logo .logo-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .01em;
}
.site-logo .logo-tagline {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.site-nav a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--trans);
  position: relative;
}
.site-nav a::after {
  content:'';
  position:absolute;
  bottom:-.3rem; left:0;
  width:0; height:1px;
  background: var(--gold);
  transition: width var(--trans);
}
.site-nav a:hover { color: var(--gold); }
.site-nav a:hover::after { width:100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-phone {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,169,110,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,169,110,.04) 0%, transparent 50%),
    linear-gradient(160deg, #0c0f14 0%, #141b28 40%, #0c0f14 100%);
}

/* Decorative lines */
.hero-lines {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-lines::before {
  content:'';
  position:absolute;
  top: 8%; right: 8%;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,169,110,.1);
  border-radius: 50%;
  animation: rotateSlow 30s linear infinite;
}
.hero-lines::after {
  content:'';
  position:absolute;
  top: 12%; right: 12%;
  width: 280px; height: 280px;
  border: 1px solid rgba(201,169,110,.07);
  border-radius: 50%;
  animation: rotateSlow 20s linear infinite reverse;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeUp .8s ease both;
}
.hero-eyebrow .line {
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp .8s .3s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201,169,110,.15);
  padding-top: 2.5rem;
  animation: fadeUp .8s .4s ease both;
}
.hero-stat {
  padding-right: 2rem;
  border-right: 1px solid rgba(201,169,110,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.hero-stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

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

/* ─── SECTION COMMON ─────────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--ink); }
.section-gold-pale { background: var(--gold-pale); }

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .eyebrow { margin-bottom: .75rem; }
.section-header h2 { color: var(--ink); margin-bottom: .75rem; }
.section-header p { color: var(--mist); font-size: 1.05rem; max-width: 520px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,.5); }

/* ─── DIVIDER ─────────────────────────────────────────────────── */
.gold-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.gold-divider.center { margin: 1.25rem auto; }

/* ─── PRACTICE AREAS ─────────────────────────────────────────── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.practice-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}
.practice-card:hover { background: var(--gold-pale); }
.practice-card:hover::before { transform: scaleX(1); }
.practice-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.practice-card h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .5rem;
}
.practice-card p {
  font-size: .85rem;
  color: var(--mist);
  line-height: 1.6;
}

/* ─── WHY US ─────────────────────────────────────────────────── */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.whyus-card {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all var(--trans);
}
.whyus-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.whyus-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  margin-bottom: .75rem;
}
.whyus-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .75rem;
}
.whyus-card p { font-size: .9rem; color: var(--mist); line-height: 1.7; }

/* ─── TEAM ─────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}
.team-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform var(--trans), opacity var(--trans);
  filter: grayscale(20%);
}
.team-card:hover .team-img {
  transform: scale(1.04);
  opacity: .85;
}
.team-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(12,15,20,.95) 0%, transparent 100%);
}
.team-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .2rem;
}
.team-title {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.team-spec {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* ─── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
}
.testimonial-mark {
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: .7;
  color: var(--gold);
  opacity: .25;
  margin-bottom: .5rem;
  font-weight: 300;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { font-weight: 600; font-size: .9rem; color: var(--ink); }
.testimonial-role { font-size: .8rem; color: var(--mist); }

/* ─── BLOG CARDS ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--trans);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.blog-thumb {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: transform var(--trans);
}
.blog-card:hover .blog-thumb { transform: scale(1.04); }
.blog-thumb-wrap { overflow: hidden; }
.blog-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.blog-title-link {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: .75rem;
  transition: color var(--trans);
}
.blog-card:hover .blog-title-link { color: var(--gold); }
.blog-excerpt { font-size: .875rem; color: var(--mist); line-height: 1.7; margin-bottom: 1.25rem; flex:1; }
.blog-meta { font-size: .75rem; color: var(--mist); margin-bottom: 1.25rem; }
.read-more {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--trans);
}
.read-more:hover { gap: .7rem; }

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-block { }
.contact-info-block h2 { color: var(--white); margin-bottom: 1rem; }
.contact-info-block p { color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.contact-detail-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.contact-detail a { color: rgba(255,255,255,.7); transition: color var(--trans); }
.contact-detail a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: .9rem;
  color: var(--ink);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: #080b10;
  color: rgba(255,255,255,.5);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,169,110,.1);
  margin-bottom: 2rem;
}
.footer-logo-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .3rem;
}
.footer-logo-tagline {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-about { font-size: .875rem; line-height: 1.8; max-width: 320px; }
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: .6rem;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── SINGLE POST ─────────────────────────────────────────────── */
.post-hero {
  background: var(--ink);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(201,169,110,.06) 0%, transparent 60%);
}
.post-hero-inner { position: relative; z-index:1; }
.post-breadcrumb {
  font-size: .75rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.post-breadcrumb a { color: var(--gold); }
.post-breadcrumb span { margin: 0 .5rem; }
.post-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.post-byline {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.post-byline strong { color: rgba(255,255,255,.8); }

.post-body { padding: 4rem 0; }
.post-featured-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 3rem;
}
.post-content h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.post-content p { font-size: 1rem; color: #3d4452; line-height: 1.85; margin-bottom: 1.5rem; }
.post-content ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.post-content ul li { font-size: .95rem; color: #3d4452; margin-bottom: .5rem; line-height: 1.7; }

.post-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.5rem; }
.post-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: #8b6740;
  padding: .3rem .9rem;
  border-radius: 20px;
  border: 1px solid rgba(201,169,110,.3);
}

.post-cta {
  background: var(--ink);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  margin-top: 3.5rem;
}
.post-cta h3 { color: var(--white); margin-bottom: .75rem; font-family: var(--ff-display); font-size: 1.6rem; }
.post-cta p { color: rgba(255,255,255,.55); margin-bottom: 1.5rem; font-size: .95rem; }

/* ─── ARCHIVE / BLOG PAGE ─────────────────────────────────────── */
.archive-hero {
  background: var(--ink);
  padding: 8rem 0 4rem;
  text-align: center;
}
.archive-hero h1 { color: var(--white); margin-bottom: .75rem; }
.archive-hero p { color: rgba(255,255,255,.55); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

.pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 4rem;
}
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--trans);
  color: var(--ink-soft);
}
.pagination a:hover, .pagination .current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ─── PAGE 404 ─────────────────────────────────────────────────── */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
}
.page-404 h1 {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 300;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 1rem;
}
.page-404 h2 { margin-bottom: .75rem; }
.page-404 p { color: var(--mist); margin-bottom: 2rem; }

/* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .site-nav { display: none; }
  .header-phone { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .practice-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
}
