/* ===== TOKENS ===== */

:root {
  --ink: #0b1f3a; /* was near-black — now deep navy */
  --ivory: #f4f8fd; /* was warm ivory — now ice blue-white */
  --ivory2: #ebf2fb; /* was warm ivory2 — now sky tint */
  --gold: #2e5fa3; /* was antique gold — now steel blue */
  --gold-lt: #4a7cc7; /* was light gold — now lighter steel blue */
  --gold-bg: rgba(46, 95, 163, 0.07); /* was gold tint bg */
  --slate: #2c3e55; /* stays similar, cooler */
  --muted: #5e7390; /* was warm muted — now cool muted */
  --white: #ffffff;
  --border: rgba(30, 70, 140, 0.1); /* was warm border */
  --shadow: 0 4px 32px rgba(12, 12, 11, 0.08);
  --shadow-lg: 0 16px 56px rgba(12, 12, 11, 0.14);
  --r: 3px;
  --sans: "DM Sans", system-ui, sans-serif;
  --serif: "Cormorant Garant", Georgia, serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--slate);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAV ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(12, 12, 11, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--ink);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.wordmark em {
  color: var(--gold);
  font-style: normal;
}

.nav {
  display: flex;
}

/* links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: var(--r);
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
  background: var(--ivory);
}

.btn-nav {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--ink);
  border: none;
  padding: 10px 22px;
  border-radius: var(--r);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-nav:hover {
  background: var(--slate);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

/* left panel */
.hero-left {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 36px;
}
.hero-h1 em {
  color: var(--gold-lt);
  font-style: italic;
}
.hero-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 95, 163, 0.35);
}
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}

/* right panel */
.hero-right {
  padding: 80px 0 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  padding: 32px;
  backdrop-filter: blur(12px);
}
.hero-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.hero-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.hero-contact-item a:hover {
  color: var(--gold-lt);
}

.practice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.03);
}

/* ===== SECTION DEFAULTS ===== */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--white);
}
.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-label span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-dark .section-h2 {
  color: var(--white);
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}
.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.section-head {
  margin-bottom: 60px;
}
.section-head.center {
  text-align: center;
}
.section-head.center .section-label {
  justify-content: center;
}
.section-head.center .section-sub {
  margin: 0 auto;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-card {
  background: var(--white);
  padding: 40px;
  transition: background 0.25s;
}
.why-card:hover {
  background: var(--ivory);
}
.why-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-bg);
  border: 1px solid rgba(184, 144, 42, 0.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== PRACTICE AREAS ===== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.practice-card {
  background: var(--ivory);
  padding: 36px 32px;
  transition:
    background 0.25s,
    transform 0.2s;
  cursor: default;
}
.practice-card:hover {
  background: var(--ivory2);
}
.practice-icon {
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.practice-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
}
.practice-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.practice-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.values-list {
  list-style: none;
  margin-top: 28px;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--slate);
}
.values-list li:last-child {
  border-bottom: 1px solid var(--border);
}
.val-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--gold-bg);
  border: 1px solid rgba(184, 144, 42, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.val-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aside-quote {
  background: var(--ink);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
}
.aside-quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}
.aside-quote p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.aside-cta-block {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  background: var(--white);
}
.aside-cta-block h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.aside-cta-block p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  z-index: 0;
}
.step {
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.step h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  position: relative;
  transition: box-shadow 0.25s;
}
.testi:hover {
  box-shadow: var(--shadow);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testi-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}
.testi blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid rgba(184, 144, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}
.testi-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.testi-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
details {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  cursor: pointer;
}
details:last-child {
  border-bottom: 1px solid var(--border);
}
details summary {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
details summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ivory2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  transition:
    background 0.2s,
    transform 0.3s,
    color 0.2s;
}
details[open] .faq-plus {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
details p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 14px;
  padding-right: 44px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-body {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--gold-bg);
  border: 1px solid rgba(184, 144, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-item-text span,
.contact-item-text a {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-item-text a:hover {
  color: var(--gold);
}
.office-hours {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--gold-bg);
  border: 1px solid rgba(184, 144, 42, 0.18);
  border-radius: 4px;
}
.office-hours p {
  font-size: 0.875rem;
  color: var(--muted);
}
.office-hours strong {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}
.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--ivory);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 144, 42, 0.12);
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary-form {
  background: var(--ink);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary-form:hover {
  background: var(--slate);
  transform: translateY(-1px);
}
.btn-outline-form {
  background: transparent;
  color: var(--muted);
  padding: 13px 22px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline-form:hover {
  border-color: var(--slate);
  color: var(--ink);
}
#formStatus {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 0.875rem;
  display: none;
}
#formStatus.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand .wordmark {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold-lt);
}
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}
.footer-contact-item a:hover {
  color: var(--gold-lt);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== ANIMATIONS ===== */
.pre-animate {
  opacity: 0;
  transform: translateY(24px);
}
.inview {
  animation: fadeUp 0.55s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ripple */
.btn {
  position: relative;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: ripple-anim 0.55s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 72px 0 48px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .hero-right {
    padding: 48px 0 72px;
  }
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-grid::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    gap: 2px;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .btn-nav {
    display: none;
  }
  .hero-h1 {
    font-size: 2.6rem;
  }
  .why-grid,
  .testi-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .practice-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 0;
  }
}
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 2rem;
  }
  .hero-left {
    padding: 56px 0 40px;
  }
  .hero-right {
    padding: 40px 0 56px;
  }
  .section {
    padding: 56px 0;
  }
  .why-card,
  .practice-card {
    padding: 28px 24px;
  }
  .contact-form {
    padding: 28px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pre-animate,
  .inview {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
