/* ============================================
   CYK Law — Styles
   Reference: enyolaw.com
   Design: Dark navy + gold accent, Montserrat
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- Tokens ---- */
:root {
  --color-primary: #051739;
  --color-primary-light: #0A2550;
  --color-accent: #FFFFFF;
  --color-accent-hover: rgba(255,255,255,0.8);
  --color-bg: #051739;
  --color-bg-alt: #0A1628;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F5F5F5;
  --color-text: #FFFFFF;
  --color-text-on-light: #051739;
  --color-text-muted: #C1C1C1;
  --color-text-muted-dark: rgba(255,255,255,0.7);
  --color-border: rgba(255,255,255,0.15);
  --color-border-light: rgba(5,23,57,0.12);
  --color-overlay: rgba(5,23,57,0.85);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --container-max-width: 1200px;
  --grid-gap: 30px;
  --nav-height: 80px;

  --border-radius: 0px;
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-accent); }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 30px;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: var(--color-primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-logo img {
  height: 40px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.3s ease;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}
.header-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.header-cta:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,23,57,0.75) 0%, rgba(5,23,57,0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 30px;
  margin-left: 8%;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}
.hero-content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-content .btn {
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #FFFFFF;
  color: var(--color-primary);
}
.btn-primary:hover {
  background: rgba(255,255,255,0.85);
  color: var(--color-primary);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-text-on-light);
  border: 1px solid var(--color-border-light);
}
.btn-outline-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-link {
  background: none;
  padding: 0;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
}
.btn-link::after {
  content: ' →';
}
.btn-link:hover {
  color: var(--color-accent-hover);
}

/* ---- Section Shared ---- */
.section {
  padding: var(--section-padding) 0;
}
.section-dark {
  background: var(--color-bg);
  color: var(--color-text);
}
.section-light {
  background: var(--color-surface);
  color: var(--color-text-on-light);
}
.section-light .section-label {
  color: var(--color-primary);
  opacity: 0.6;
}
.section-light .btn-link {
  color: var(--color-primary);
}
.section-light .btn-link:hover {
  color: var(--color-primary-light);
}
.section-alt {
  background: var(--color-surface-alt);
  color: var(--color-text-on-light);
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* ---- Testimonials Section (on dark) ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.testimonial-card {
  padding: 40px 36px 36px;
  border: 1px solid var(--color-border);
  border-top: 3px solid rgba(255,255,255,0.6);
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 40%);
  transition: var(--transition-slow);
}
.testimonial-card:hover {
  border-color: rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 60%);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.testimonial-card blockquote {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card blockquote::before {
  content: '"';
  font-size: 56px;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 0.8;
  display: block;
  margin-bottom: 16px;
  opacity: 0.7;
}
.testimonial-source {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Parallax Image Divider ---- */
.parallax-section {
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img {
  transform: scale(1.05);
}
.about-text h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ---- Practice Areas — Infinite Marquee ---- */
.practice-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-top: 40px;
}
.practice-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.practice-marquee:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.practice-card {
  flex: 0 0 280px;
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  border-top: 2px solid transparent;
  transition: var(--transition-slow);
  position: relative;
  background: rgba(255,255,255,0.02);
}
.practice-card:hover {
  border-color: rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(5,23,57,0.4) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.practice-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.practice-card:hover h3 {
  color: var(--color-accent);
}
.practice-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted-dark);
  line-height: 1.7;
}

/* ---- Team Section ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}
.team-card {
  text-align: center;
  transition: transform 0.4s ease;
}
.team-card:hover {
  transform: translateY(-6px);
}
.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  background: var(--color-primary-light);
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,23,57,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card:hover .team-photo::after {
  opacity: 1;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.08);
}
.team-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.team-card:hover .team-name {
  color: var(--color-accent);
}
.team-role {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

/* ---- News Section ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.news-card {
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover {
  border-color: var(--color-accent);
}
.news-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}
.news-card-body {
  padding: 24px;
}
.news-card-body h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}
.news-card-body .news-source {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- CTA Banner ---- */
.cta-banner {
  text-align: center;
  padding: 80px 30px;
  background: var(--color-primary-light);
}
.cta-banner h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 15px;
  color: var(--color-text-muted-dark);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-bg-alt);
  padding: 60px 0 30px;
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--color-text-muted-dark);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-text);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted-dark);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: var(--color-accent);
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--color-border);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--color-text-muted-dark);
}
.footer-bottom a {
  color: var(--color-text-muted-dark);
}
.footer-bottom a:hover {
  color: var(--color-accent);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger:nth-child(2) { transition-delay: 150ms; }
.reveal-stagger:nth-child(3) { transition-delay: 300ms; }
.reveal-stagger:nth-child(4) { transition-delay: 450ms; }

/* Cascading card entrance — testimonial cards */
.testimonial-card.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.testimonial-card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.testimonial-card.reveal-stagger:nth-child(1) { transition-delay: 0ms; }
.testimonial-card.reveal-stagger:nth-child(2) { transition-delay: 200ms; }
.testimonial-card.reveal-stagger:nth-child(3) { transition-delay: 400ms; }

/* Testimonial card — subtle pulsating hover glow */
@keyframes testimonialPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.05); transform: translateY(-4px) scale(1); }
  50% { box-shadow: 0 8px 40px rgba(255,255,255,0.08); transform: translateY(-4px) scale(1.015); }
}
.testimonial-card:hover {
  animation: testimonialPulse 2.4s ease-in-out infinite;
}

/* About text — slide in from right */
.reveal-from-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-from-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Service cards — burst in from sides */
.reveal-burst-left {
  opacity: 0;
  transform: translateX(-140px) scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-burst-left.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.reveal-burst-right {
  opacity: 0;
  transform: translateX(140px) scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-burst-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
/* Stagger within each row */
.burst-delay-0 { transition-delay: 0ms; }
.burst-delay-1 { transition-delay: 120ms; }
.burst-delay-2 { transition-delay: 240ms; }

/* ---- Page Hero (Subpages) ---- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
}
.page-hero-short {
  min-height: 40vh;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,23,57,0.5) 0%, rgba(5,23,57,0.85) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 30px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-top: 12px;
}

/* ---- Services Grid (full page) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 36px 30px;
  border: 1px solid var(--color-border);
  border-top: 2px solid transparent;
  transition: var(--transition-slow);
  background: rgba(255,255,255,0.02);
}
.service-card:hover {
  border-color: rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(5,23,57,0.4) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.service-card:hover h3 {
  color: var(--color-accent);
}
.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted-dark);
  line-height: 1.7;
}

/* ---- Team Grid Full (about page) ---- */
.team-grid-full {
  grid-template-columns: repeat(3, 1fr);
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 36px;
}
.contact-detail {
  margin-bottom: 28px;
}
.contact-detail h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.contact-detail p,
.contact-detail a {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}
.contact-detail a:hover {
  color: var(--color-accent);
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.map-section {
  line-height: 0;
}
.map-section iframe {
  filter: grayscale(1) contrast(1.1) brightness(0.6);
}

/* ---- Responsive ---- */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 70px;
  }
  .header-logo img {
    height: 32px;
  }
  .header-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--color-primary);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-top: 1px solid var(--color-border);
  }
  .header-nav.open {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-content h1 { font-size: 42px; }
  .hero-content { margin-left: 5%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid[style*="direction: rtl"] { direction: ltr !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .practice-card { flex: 0 0 240px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid-full { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .page-hero-content h1 { font-size: 36px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-padding: 50px;
  }
  .container { padding: 0 20px; }
  .header-logo img { height: 28px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content { margin-left: 0; padding: 0 20px; }
  .section-title { font-size: 28px; }
  .practice-card { flex: 0 0 220px; padding: 24px 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-grid-full { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-content h1 { font-size: 28px; }
  .page-hero { min-height: 40vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .parallax-section { min-height: 300px; background-attachment: scroll; }
  .testimonial-card { padding: 24px; }
  .cta-banner { padding: 50px 20px; }
  .cta-banner h2 { font-size: 28px; }
}
