/* ===== AWN LEGAL SERVICES — Stylesheet ===== */

:root {
  --navy: #0c2a4d;
  --navy-deep: #081d36;
  --navy-light: #15457a;
  --gold: #c5a253;
  --gold-light: #d9bd7a;
  --ink: #1a2433;
  --muted: #5c6b7e;
  --line: #e4e8ee;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --white: #ffffff;
  --radius: 10px;
  --shadow-sm: 0 4px 16px rgba(12, 42, 77, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 42, 77, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1180px;
  --header-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(197, 162, 83, 0.35); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
  backdrop-filter: blur(8px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; line-height: 0; }
.brand-logo, .brand .custom-logo { height: 40px; width: auto; filter: brightness(0) invert(1); transition: filter 0.3s ease; }
.site-header.scrolled .brand-logo, .site-header.scrolled .brand .custom-logo { filter: none; }
.brand a { display: inline-flex; line-height: 0; }

.nav-list { display: flex; gap: 34px; }
.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 0;
  transition: color 0.25s ease;
}
.site-header.scrolled .nav-link { color: var(--ink); }
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.28s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.site-header.scrolled .nav-link.active, .site-header.scrolled .nav-link:hover { color: var(--navy); }

.nav-cta { padding: 11px 22px; font-size: 0.78rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--navy); }

/* ===== Hero (Home) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.05);
  animation: slowZoom 18s ease-out forwards;
}
@keyframes slowZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 29, 54, 0.84) 0%, rgba(12, 42, 77, 0.6) 45%, rgba(8, 29, 54, 0.38) 100%);
}
.hero::after {
  content: "\00A7";
  position: absolute;
  right: -40px; bottom: -70px;
  font-family: var(--serif);
  font-size: 26rem;
  color: rgba(197, 162, 83, 0.10);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 120px 24px 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 42px; height: 2px; background: var(--gold); display: inline-block; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 24px; } }

/* ===== Page Hero (subpages) ===== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(8, 29, 54, 0.82) 0%, rgba(12, 42, 77, 0.6) 60%, rgba(8, 29, 54, 0.45) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 150px 24px 70px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 14px;
}
.breadcrumb { font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); letter-spacing: 0.02em; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--gold); }
.kicker.light { color: var(--gold); }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-head.center .kicker { justify-content: center; }
.kicker::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
}
.section-lead { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }

/* ===== About / Intro (with image) ===== */
.intro { background: var(--bg); }
.intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.intro-media { position: relative; }
.intro-media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.2; object-fit: cover;
}
.intro-media .media-accent {
  position: absolute; left: -22px; bottom: -22px;
  width: 60%; aspect-ratio: 16/10;
  border-radius: var(--radius);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}
.intro-media .badge {
  position: absolute; top: 22px; right: -18px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.intro-media .badge strong { display: block; font-family: var(--serif); font-size: 2rem; line-height: 1; }
.intro-media .badge span { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.intro-text p { margin-bottom: 18px; color: #3c4a5c; font-size: 1.06rem; }
.intro-text p.lead { font-size: 1.18rem; color: var(--ink); font-weight: 400; }
.intro-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Vision / Values ===== */
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 8px; }
.vision-card, .values-card {
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.vision-card {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.vision-card::after {
  content: "\00A7";
  position: absolute; right: -10px; bottom: -40px;
  font-family: var(--serif); font-size: 11rem;
  color: rgba(197,162,83,0.12); line-height: 1;
}
.card-icon { color: var(--gold); font-size: 1.4rem; }
.vision-card h3, .values-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 8px 0 12px;
}
.vision-card p { color: rgba(255, 255, 255, 0.85); position: relative; z-index: 1; }
.values-card { background: var(--bg-alt); border: 1px solid var(--line); }
.values-card h3 { color: var(--navy); }
.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin-top: 8px; }
.values-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 500;
  color: var(--ink);
}
.values-list li::before {
  content: "\25C6";
  position: absolute; left: 0; top: 1px;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== Stats ===== */
.stats { position: relative; color: var(--white); background: var(--navy-deep); overflow: hidden; }
.stats-bg {
  position: absolute; inset: 0;
  background-image: url("../img/bookshelf.jpg");
  background-size: cover; background-position: center;
  opacity: 0.14;
}
.stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item .stat-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label { margin-top: 10px; font-size: 0.92rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.82); }

/* ===== Practice Areas ===== */
.practice { background: var(--bg-alt); }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.practice.cols-2 .practice-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
.practice-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.practice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.practice-card:hover::before { transform: scaleX(1); }
.practice-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(197,162,83,0.12);
  border-radius: 12px;
  margin-bottom: 18px;
}
.practice-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.practice-num {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
}
.practice-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.practice-card p { font-size: 0.92rem; color: var(--muted); }

/* ===== Why choose us ===== */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.why-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.why-media img { width: 100%; aspect-ratio: 3/3.4; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 10px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item .why-ico {
  flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold);
  border-radius: 50%; font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
}
.why-item h4 { font-size: 1.08rem; color: var(--navy); margin-bottom: 4px; }
.why-item p { color: var(--muted); font-size: 0.98rem; }

/* ===== CTA banner ===== */
.cta-banner { position: relative; color: var(--white); overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: url("../img/lady-justice.jpg");
  background-size: cover; background-position: center 35%;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,29,54,0.86) 0%, rgba(8,29,54,0.58) 55%, rgba(8,29,54,0.36) 100%);
}
.cta-inner { position: relative; z-index: 2; padding: 84px 24px; max-width: 664px; }
.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600; line-height: 1.12; margin-bottom: 16px;
}
.cta-inner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.06rem; }

/* ===== Team ===== */
.team { background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-light), var(--navy-deep));
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo--placeholder { display: flex; align-items: center; justify-content: center; }
.team-initials {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.team-info { padding: 22px 20px; border-top: 3px solid var(--gold); }
.team-info h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); line-height: 1.35; }
.team-role {
  margin-top: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.team-bio { margin-top: 12px; font-size: 0.92rem; color: var(--muted); }

/* ===== Contact ===== */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; padding-top: 6px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; }
.info-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.3rem;
}
.info-item h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.info-item p { color: var(--muted); font-size: 0.98rem; }
.info-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-field input, .form-field textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--bg-alt);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 162, 83, 0.15);
}
.form-field input.invalid, .form-field textarea.invalid { border-color: #d9534f; background: #fdf3f3; }
.form-status { margin-top: 14px; font-size: 0.92rem; font-weight: 500; text-align: center; }
.form-status.success { color: #1f7a4d; }
.form-status.error { color: #d9534f; }

/* ===== Map ===== */
.map-section { padding: 0; }
.map-wrap { position: relative; height: 440px; width: 100%; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link {
  position: absolute; bottom: 18px; right: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 11px 18px; border-radius: 6px;
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.03em;
  box-shadow: var(--shadow-md);
  transition: background 0.25s ease, transform 0.25s ease;
}
.map-link:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.78); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer-logo { height: 38px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { max-width: 330px; font-size: 0.96rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: var(--white);
  transition: background 0.25s ease, color 0.25s ease;
  font-size: 0.85rem; font-weight: 600;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); }
.site-footer h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 12px; font-size: 0.96rem; display: flex; gap: 10px; }
.footer-contact .fi { color: var(--gold); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); }
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .container + .container { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-credits { font-size: 0.76rem !important; color: rgba(255,255,255,0.4) !important; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 70px; }
  .intro-media { max-width: 560px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-media { max-width: 560px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(82vw, 340px);
    height: 100vh;
    background: var(--navy-deep);
    padding: 100px 36px 40px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-link { color: rgba(255,255,255,0.9); font-size: 1.05rem; padding: 12px 0; display: block; }
  .site-header.scrolled .nav-link { color: rgba(255,255,255,0.9); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle.open span { background: var(--white) !important; }
  .section { padding: 70px 0; }
  .practice.cols-2 .practice-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 90vh; }
  .intro-media .badge { right: 10px; }
}

@media (max-width: 460px) {
  .practice-grid, .team-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 26px; }
  .hero-actions .btn { width: 100%; }
  .intro-media .media-accent { display: none; }
}
