/* ALLO Lawyers — 100% match to homepage screenshot */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/lora-400.ttf") format("truetype");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/lora-500.ttf") format("truetype");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/lora-700.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/open-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/open-sans-500.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/open-sans-700.ttf") format("truetype");
}

@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/schibsted-grotesk-400.ttf") format("truetype");
}

@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/schibsted-grotesk-500.ttf") format("truetype");
}

@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/schibsted-grotesk-600.ttf") format("truetype");
}

:root {
  --orange: #fa911b;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --text: #1a1c1e;
  --text-body: #47494b;
  --muted: #91918e;
  --gray-num: #b0b0b0;
  --light: #f4f4f4;
  --white: #ffffff;
  --border: #e0e0e0;
  --font-display: "Schibsted Grotesk", sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --font-body: "Open Sans", sans-serif;
  --max: 1100px;
  --header-h: 72px;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --title-bg:
    radial-gradient(ellipse 70% 90% at 8% 0%, rgba(200, 120, 40, 0.22) 0%, transparent 50%),
    linear-gradient(95deg, #000000 0%, #141414 42%, #2f2f2f 78%, #454545 100%);
}

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

html {
  scroll-behavior: smooth;
}

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

body.admin-bar .site-header.is-solid {
  top: 32px;
}

#wpadminbar img {
  display: inline;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.container-wide {
  /* Same left edge as .container so logo aligns with page titles */
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

/* ===== Header ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.site-header.is-solid {
  position: fixed;
  background: var(--dark);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}

.logo {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo .logo-mark {
  font-weight: 700;
  color: var(--orange);
}

.logo img {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--orange);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
}

.header-social {
  display: flex;
  color: #fff;
  margin-left: 8px;
  transition: color 0.2s ease;
}

.header-social:hover {
  color: var(--orange);
}

.header-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-cta {
  display: none;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: 0.25s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(10, 10, 10, 0.98);
  padding: 24px;
  flex-direction: column;
  z-index: 99;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a:hover {
  color: var(--orange);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  line-height: 1.2;
}

.btn--orange {
  background: var(--orange);
  color: #1a1a1a;
}

.btn--orange:hover {
  background: #000;
  color: #fff;
}

.btn--light {
  background: #fff;
  color: #1a1a1a;
}

.btn--light:hover {
  background: var(--orange);
  color: #1a1a1a;
}

.btn--dark {
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 13px 34px;
}

.btn--dark:hover {
  background: var(--orange);
  color: #1a1a1a;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.link-more {
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
}

.link-more:hover {
  text-decoration: underline;
}

/* ===== Shared TITLE SECTION (home + inner pages) ===== */
.hero,
.page-hero {
  position: relative;
  color: #fff;
  background: var(--title-bg);
}

.hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 0 72px;
}

.hero__inner {
  width: min(100% - 48px, 720px);
  /* Same left edge as .container-wide (header logo) */
  margin-left: max(24px, calc((100% - 1200px) / 2));
  margin-right: auto;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero__logo {
  display: none;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.2vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 36px;
}

/* Inner-page title band — same design as home TITLE SECTION */
.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 20px) 0 64px;
}

.page-hero .container {
  /* Align with header logo (container-wide left edge) */
  width: min(100% - 48px, 1200px);
  margin-left: max(24px, calc((100% - 1200px) / 2));
  margin-right: auto;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.8vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-hero--image {
  background:
    radial-gradient(ellipse 70% 90% at 8% 0%, rgba(200, 120, 40, 0.18) 0%, transparent 50%),
    linear-gradient(95deg, rgba(0, 0, 0, 0.82) 0%, rgba(20, 20, 20, 0.72) 50%, rgba(50, 50, 50, 0.65) 100%),
    url("../assets/images/about-firm.webp") center / cover no-repeat;
}

/* Header always overlays the title section */
body:not(.page-home) .site-header {
  position: absolute;
  background: transparent;
}

/* ===== Sections ===== */
.section {
  padding: 88px 0;
}

.section--white {
  background: var(--white);
}

.section--light {
  background: var(--light);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 560px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-grid__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy .section-title {
  margin-bottom: 20px;
}

.about-copy p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* ===== Practice ===== */
.practice-head {
  margin-bottom: 48px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.practice-card__num {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-num);
  margin-bottom: 10px;
}

.practice-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
}

.practice-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ===== Home News cards ===== */
.news-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.news-home-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease);
}

.news-home-card:hover {
  transform: translateY(-3px);
}

.news-home-card__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ddd;
}

.news-home-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-home-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

.news-home-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.55;
  flex: 1;
}

/* ===== Partners logo row ===== */
.partners-intro {
  margin-bottom: 36px;
}

.partners-intro .lead {
  margin-top: 8px;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 40px 56px;
  margin-bottom: 72px;
  padding: 12px 0;
}

.partner-row img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.partner-row img.partner-row__sq {
  height: 56px;
  width: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.partner-row img.partner-row__allo {
  height: 64px;
  width: auto;
  border-radius: 8px;
}

/* ===== Media compact ===== */
.media-compact {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 720px;
}

.media-compact__thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: #eee;
}

.media-compact__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-compact h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text);
}

/* ===== Contact ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}

.contact-intro .section-title {
  font-size: clamp(2rem, 3.5vw, 40px);
  margin-bottom: 16px;
}

.contact-intro .email-line {
  margin-top: 28px;
  font-size: 15px;
}

.contact-intro .email-line a {
  color: var(--orange);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form input,
.form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(250, 145, 27, 0.15);
}

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

.form__success {
  display: none;
  padding: 12px 14px;
  background: #e8f7f2;
  color: #0a7a5c;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.form__success.is-visible {
  display: block;
}

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(90deg, #0a0a0a 0%, #2a2a2a 60%, #3a3a3a 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 32px 40px;
  align-items: end;
}

.footer-brand .logo-footer {
  display: block;
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.footer-brand .footer-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.footer-brand .footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-brand .footer-mail a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-brand .footer-mail img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

.footer-mid {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  padding-bottom: 4px;
}

.footer-mid img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-right {
  text-align: right;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.footer-right p {
  margin-bottom: 8px;
}

.footer-right a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer-col h3,
.footer-col h4 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
}

.social-link img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

/* ===== Team ===== */
.attorneys-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 28px);
  font-weight: 500;
  margin-bottom: 36px;
  color: var(--text);
}

.team-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 48px 56px;
  align-items: start;
}

.team-photo {
  border-radius: 10px;
  overflow: hidden;
  background: #ddd;
  margin-bottom: 24px;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.team-aside-block {
  margin-bottom: 28px;
}

.team-aside-block h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.team-aside-block p {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}

.team-aside-block ul {
  list-style: disc;
  padding-left: 1.15em;
}

.team-aside-block li {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 6px;
  color: var(--text-body);
}

.team-bio-head {
  margin-bottom: 20px;
}

.team-bio-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: 6px;
}

.team-bio-head .role {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-bio-head .contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  font-size: 15px;
}

.team-bio-head .contact-line a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.team-bio-head .contact-line a[href*="linkedin"] {
  display: inline-flex;
  color: #0a66c2;
}

.team-bio-head .contact-line a[href*="linkedin"] img {
  width: 20px;
  height: 20px;
  border-radius: 3px;
}

.team-bio-head .lang-link {
  color: var(--orange) !important;
  font-weight: 600;
  text-decoration: none !important;
}

.bio-text p {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  color: var(--text-body);
  line-height: 1.7;
}

.expertise-block {
  margin-top: 28px;
}

.expertise-block h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 22px 0 10px;
  color: var(--text);
}

.expertise-block ul {
  list-style: disc;
  padding-left: 1.2em;
  margin-bottom: 8px;
}

.expertise-block li {
  margin-bottom: 7px;
  font-family: var(--font-serif);
  color: var(--text-body);
  line-height: 1.55;
  font-size: 15px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-card__img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eee;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text);
}

.news-card__body p {
  color: var(--text-body);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.news-card__meta {
  font-size: 12px;
  color: #999;
  font-family: var(--font-serif);
}

.article {
  max-width: 720px;
  margin: 0 auto;
}

.article-head {
  text-align: center;
  margin-bottom: 32px;
}

.article-head h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text);
}

.article-head .deck {
  font-family: var(--font-body);
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.article h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text);
}

.article p {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
}

.article a {
  color: #1a5fb4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article a.mailto-link,
.article .mailto-link {
  color: #1a5fb4;
}

.article ul {
  list-style: disc;
  padding-left: 1.35em;
  margin: 0 0 20px;
}

.article li {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

.article-hero-img {
  margin: 0 0 36px;
  overflow: hidden;
}

.article-hero-img img {
  width: 100%;
  display: block;
}

.careers-prose {
  max-width: 680px;
}

.careers-prose p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
}

.careers-prose a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}

.contact-page .intro p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 28px;
}

.contact-page .intro strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-page .intro a {
  font-family: var(--font-serif);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #b0b0b0;
  font-family: var(--font-serif);
}

.legal-content {
  max-width: 800px;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 28px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 36px 0 14px;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
}

.legal-content p {
  margin-bottom: 12px;
  color: var(--text-body);
  line-height: 1.65;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25em;
  margin: 0 0 14px;
}

.legal-content li {
  margin-bottom: 7px;
  color: var(--text-body);
  line-height: 1.55;
}

.prose {
  max-width: 700px;
}

.prose p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}

.prose a {
  color: var(--orange);
  font-weight: 600;
}

/* ===== Motion ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav,
  .header-social {
    display: none;
  }

  .burger {
    display: flex;
  }

  .about-grid,
  .news-home-grid,
  .news-grid,
  .contact-section,
  .contact-page,
  .team-layout,
  .footer-grid,
  .media-compact {
    grid-template-columns: 1fr;
  }

  .practice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-compact__thumb {
    max-width: 200px;
  }

  .partner-row {
    gap: 28px 36px;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 56px 0;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
    padding: calc(var(--header-h) + 28px) 0 56px;
  }

  .hero__inner,
  .page-hero .container {
    margin-left: 16px;
    width: calc(100% - 32px);
  }

  .page-hero {
    min-height: 42vh;
    padding: calc(var(--header-h) + 16px) 0 48px;
  }

  .partner-row img {
    height: 40px;
  }

  .footer-right {
    text-align: left;
  }

  .footer-mid {
    padding: 8px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
