/* ========================================
   Rechtsanwalt Moritz Natterodt — Stylesheet
   Mobile First | Dunkelblau + Weiß + Gold
   ======================================== */

/* --- Self-hosted Fonts (DSGVO-konform) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-700.ttf') format('truetype');
}

/* --- Custom Properties --- */
:root {
  --color-primary: #011742;
  --color-primary-light: #0a2255;
  --color-secondary: #2c4a7c;
  --color-accent: #c9a84c;
  --color-accent-hover: #b8953e;
  --color-text-light: #f5f5f5;
  --color-text-dark: #1a1a1a;
  --color-text-muted: #6b7280;
  --color-bg-white: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-border: #e5e7eb;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  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;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.logo-img {
  height: 38px;
  width: auto;
  border-radius: 3px;
}

.logo-text span {
  color: var(--color-accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-text-light);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font-body);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-active {
  color: var(--color-accent);
}

.lang-inactive {
  opacity: 0.6;
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--color-primary);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  color: var(--color-text-light);
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.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);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg-mobile {
  object-position: center top;
}

.hero-bg-desktop {
  display: none;
  object-position: right center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(1, 23, 66, 0.85) 0%,
    rgba(1, 23, 66, 0.6) 50%,
    rgba(1, 23, 66, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding-top: calc(var(--header-height) + 2rem);
}

.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  border-left: 3px solid var(--color-accent);
  padding-left: 0.75rem;
}

.hero h1 {
  color: var(--color-text-light);
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
  max-width: 600px;
}

.hero p {
  color: rgba(245, 245, 245, 0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
  background: transparent;
  margin-left: 0.75rem;
}

.btn-outline:hover {
  background: var(--color-text-light);
  color: var(--color-primary);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-buttons .btn-outline {
  margin-left: 0;
}

/* ========================================
   ÜBER MICH
   ======================================== */
.about {
  background: var(--color-bg-white);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-image {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.about-image img {
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  z-index: -1;
}

.about-text h2 {
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.about-text p:last-of-type {
  margin-bottom: 1.5rem;
}

.about-highlight {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-highlight-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.about-highlight-item .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}

.about-highlight-item .label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ========================================
   RECHTSGEBIETE
   ======================================== */
.practice-areas {
  background: var(--color-bg-alt);
}

.practice-grid {
  display: grid;
  gap: 1.5rem;
}

.practice-card {
  background: var(--color-bg-white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid transparent;
}

.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.practice-card.featured {
  border-top-color: var(--color-accent);
}

.practice-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
  font-size: 1.3rem;
}

.practice-card.featured .practice-card-icon {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Language-dependent icon visibility */
.lang-es {
  display: none;
}

html[lang="es"] .lang-de {
  display: none;
}

html[lang="es"] .lang-es {
  display: inline;
}

.practice-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.practice-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.practice-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   MANDATIERUNG
   ======================================== */
.process {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.process .section-title {
  color: var(--color-text-light);
}

.process .section-subtitle {
  color: rgba(245, 245, 245, 0.7);
}

.process-steps {
  display: grid;
  gap: 2rem;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding-left: 4rem;
  counter-increment: steps;
}

.process-step::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.process-step h3 {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: rgba(245, 245, 245, 0.75);
  font-size: 0.95rem;
}

/* ========================================
   STANDORTE
   ======================================== */
.locations {
  background: var(--color-bg-alt);
}

.locations-grid {
  display: grid;
  gap: 2rem;
}

.location-card {
  background: var(--color-bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.location-card-body {
  padding: 2rem 1.5rem;
}

.location-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.location-info-item .icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 2px;
}

.location-map {
  width: 100%;
  height: 250px;
  border: none;
}

.map-consent {
  width: 100%;
  height: 250px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-consent-inner {
  padding: 1.5rem;
}

.map-consent-inner p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.map-load-btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
}

/* ========================================
   KONTAKT
   ======================================== */
.contact {
  background: var(--color-bg-white);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: 0.95rem;
}

.contact-detail-text strong {
  display: block;
  color: var(--color-text-dark);
  margin-bottom: 0.15rem;
}

.contact-detail-text span,
.contact-detail-text a {
  color: var(--color-text-muted);
}

.contact-detail-text a:hover {
  color: var(--color-accent);
}

/* Form */
.contact-form {
  background: var(--color-bg-alt);
  padding: 2rem 1.5rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(44, 74, 124, 0.15);
}

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

.form-row {
  display: grid;
  gap: 1.25rem;
}

.form-privacy {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Honeypot */
.hnpt {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Form messages */
.form-message {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer p,
.footer a {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: var(--color-bg-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-white);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  padding-right: 3rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  position: relative;
  list-style: none;
  font-size: 1.05rem;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  background: var(--color-bg-alt);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  background: var(--color-bg-white);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--color-accent);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* SVG icon adjustments */
.location-info-item .icon svg,
.contact-detail .icon svg {
  display: block;
}

.contact-detail .icon {
  color: var(--color-accent);
}

/* ========================================
   FLOATING CTA
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50px;
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.55);
}

.floating-cta i {
  font-size: 1.1rem;
}

/* Mobile: nur Text, kein Icon */
.floating-cta i {
  display: none;
}

@media (min-width: 768px) {
  .floating-cta i {
    display: inline;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   LEGAL PAGES (Impressum, Datenschutz)
   ======================================== */
.legal-page {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  min-height: 100vh;
}

.legal-page .header {
  background: var(--color-primary);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.legal-content h1 {
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.legal-content h2 {
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.legal-content h3 {
  color: var(--color-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.3rem;
}

.legal-content a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE — Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }

  .hero-bg-mobile {
    display: none;
  }

  .hero-bg-desktop {
    display: block;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ========================================
   RESPONSIVE — Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    background: none;
    padding: 0;
    box-shadow: none;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-links a {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
  }

  .nav-cta {
    display: inline-block;
    margin-left: 0.75rem;
  }

  .hamburger {
    display: none;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-bg {
    opacity: 0.5;
    object-position: right center;
  }

  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  section {
    padding: 5rem 0;
  }

  .container {
    padding: 0 2rem;
  }
}

/* ========================================
   RESPONSIVE — Large Desktop (1280px+)
   ======================================== */
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .practice-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
