/* ============================================================
   Onwaeze Law Group, APC — Design System
   Editorial · Navy & Antique Gold
   ============================================================ */

:root {
  /* Color */
  --ink-950: #060e17;
  --ink-900: #0a1724;
  --ink-800: #0e2031;
  --ink-700: #143049;
  --ink-600: #1b3a57;
  --gold: #b08d57;
  --gold-strong: #9d7a44;
  --gold-soft: #c9ad7d;
  --gold-pale: #e7dcc7;
  --paper: #f7f4ed;
  --paper-deep: #efe9de;
  --white: #ffffff;
  --text: #252c34;
  --muted: #67737f;
  --muted-light: #93a0ac;
  --hairline: #e4ddd0;
  --hairline-dark: rgba(255, 255, 255, 0.12);

  /* Type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", -apple-system, Arial, sans-serif;

  /* Rhythm */
  --gutter: 24px;
  --section-y: 110px;
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(10, 23, 36, 0.06);
  --shadow-md: 0 18px 44px rgba(10, 23, 36, 0.14);
  --shadow-lg: 0 30px 70px rgba(10, 23, 36, 0.22);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

::selection {
  background: var(--gold);
  color: var(--ink-950);
}

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow--light {
  color: var(--gold-soft);
}

.eyebrow--light::before {
  background: var(--gold-soft);
}

.eyebrow--center {
  justify-content: center;
}

.lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.28s var(--ease), color 0.28s var(--ease),
    border-color 0.28s var(--ease), transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink-950);
}

.btn--gold:hover {
  background: var(--gold-strong);
  color: #fff;
  box-shadow: 0 12px 30px rgba(176, 141, 87, 0.35);
}

.btn--navy {
  background: var(--ink-800);
  color: #fff;
}

.btn--navy:hover {
  background: var(--ink-700);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--ink-800);
}

.btn--outline:hover {
  background: var(--ink-800);
  color: #fff;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: var(--section-y) 0;
}

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

.section--tight {
  padding: 84px 0;
}

.sec-head {
  max-width: 660px;
}

.sec-head--center {
  margin: 0 auto;
  text-align: center;
}

.sec-head--center .eyebrow {
  justify-content: center;
}

.sec-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-top: 18px;
}

.sec-head--light h2 {
  color: #fff;
}

.sec-head .lead {
  margin-top: 20px;
}

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  background: var(--ink-950);
  color: var(--muted-light);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--hairline-dark);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  flex-wrap: wrap;
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__item a {
  color: var(--muted-light);
  transition: color 0.2s ease;
}

.topbar__item a:hover {
  color: var(--gold-soft);
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.topbar__item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(10, 23, 36, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.brand__seal {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.05;
  color: var(--ink-900);
  letter-spacing: 0.01em;
}

.brand__tag {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 38px;
  align-items: center;
}

.nav__link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--ink-900);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link.is-active {
  color: var(--ink-900);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header__phone {
  text-align: right;
  line-height: 1.25;
}

.header__phone-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.header__phone-num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: 0.01em;
}

.header__phone-num:hover {
  color: var(--gold-strong);
}

/* ---------- Mobile toggle ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink-900);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   Hero (home)
   ============================================================ */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 14, 23, 0.76) 0%, rgba(6, 14, 23, 0.85) 55%, rgba(10, 23, 36, 0.93) 100%),
    url("../img/building-exterior.jpg") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-bg.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  min-height: 620px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #fbfaf7;
  margin: 26px 0 26px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #c6d1dc;
  max-width: 540px;
  margin-bottom: 42px;
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Hero aside — vertical identity card */
.hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--hairline-dark);
  padding-left: 48px;
  gap: 30px;
}

.hero__aside .rule {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.hero__aside .rule::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__aside blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.45;
  color: #eef2f6;
}

.hero__aside .sign {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-dark);
}

.hero__aside .sign-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
}

.hero__aside .sign-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.hero__watermark {
  position: absolute;
  right: -2vw;
  bottom: -6vh;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 600;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   Trust strip
   ============================================================ */
.truststrip {
  border-bottom: 1px solid var(--hairline);
  background: #fff;
}

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

.truststrip__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 34px;
}

.truststrip__item + .truststrip__item {
  border-left: 1px solid var(--hairline);
}

.truststrip__item svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
  flex-shrink: 0;
}

.truststrip__item strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.2;
}

.truststrip__item span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   Welcome
   ============================================================ */
.welcome {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  align-items: center;
}

.welcome__media {
  position: relative;
}

.welcome__frame {
  position: relative;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md);
}

.welcome__frame::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}

.welcome__frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.welcome__body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.14;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin: 18px 0 22px;
}

.welcome__body p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16px;
}

.welcome__body p strong {
  color: var(--ink-800);
  font-weight: 600;
}

.welcome__sig {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
}

.welcome__sig .sig-name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-900);
}

.welcome__sig .sig-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   Practice areas (numbered grid)
   ============================================================ */
.sec-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: none;
  margin-bottom: 56px;
}

.sec-head--split .sec-head__right {
  max-width: 360px;
  text-align: right;
}

.sec-head--split .sec-head__right .lead {
  font-size: 15.5px;
}

.practice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.p-card {
  position: relative;
  background: #fff;
  padding: 44px 36px 40px;
  transition: background 0.35s var(--ease);
}

.p-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.p-card:hover {
  background: var(--paper);
}

.p-card:hover::before {
  transform: scaleX(1);
}

.p-card__num {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--gold-strong);
  margin-bottom: 18px;
}

.p-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 25px;
  color: var(--ink-900);
  margin-bottom: 14px;
  line-height: 1.2;
}

.p-card p {
  font-size: 14.5px;
  color: var(--muted);
}

.p-card__list {
  list-style: none;
  margin-top: 18px;
}

.p-card__list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 13.5px;
  color: var(--text);
}

.p-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.p-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-strong);
  transition: color 0.2s ease;
}

.p-card__link span {
  transition: transform 0.2s ease;
}

.p-card__link:hover {
  color: var(--ink-800);
}

.p-card__link:hover span {
  transform: translateX(4px);
}

/* ============================================================
   Approach (dark)
   ============================================================ */
.approach {
  position: relative;
  background: var(--ink-950);
  color: #fff;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.approach::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(176, 141, 87, 0.2);
  border-radius: 50%;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
  margin-top: 60px;
}

.a-item {
  background: var(--ink-950);
  padding: 52px 44px;
  transition: background 0.35s var(--ease);
}

.a-item:hover {
  background: var(--ink-900);
}

.a-item__num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-soft);
  letter-spacing: 0.1em;
}

.a-item h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  margin: 16px 0 14px;
  color: #fff;
}

.a-item p {
  color: var(--muted-light);
  font-size: 15px;
}

/* ============================================================
   Quote
   ============================================================ */
.quote {
  padding: var(--section-y) 0;
  text-align: center;
  background: var(--paper);
}

.quote__mark {
  display: block;
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 30px;
}

.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.35;
  color: var(--ink-900);
  max-width: 880px;
  margin: 0 auto 30px;
}

.quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote cite strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-900);
  margin-top: 8px;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  background: linear-gradient(120deg, var(--gold-strong) 0%, var(--gold) 60%, var(--gold-soft) 100%);
  color: var(--ink-950);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-top: 64px;
  padding-bottom: 64px;
  flex-wrap: wrap;
}

.cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  margin-top: 14px;
}

.cta p {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(6, 14, 23, 0.78);
  max-width: 560px;
}

.cta .btn--navy {
  background: var(--ink-950);
  color: #fff;
}

.cta .btn--navy:hover {
  background: var(--ink-900);
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 14, 23, 0.78) 0%, rgba(6, 14, 23, 0.9) 100%),
    url("../img/building-exterior.jpg") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-bg.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 84px;
  text-align: center;
}

.page-hero .crumbs {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
}

.page-hero .crumbs a {
  color: var(--muted-light);
}

.page-hero .crumbs a:hover {
  color: #fff;
}

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

.page-hero__rule {
  width: 54px;
  height: 2px;
  background: var(--gold);
  margin: 26px auto 0;
}

/* ============================================================
   About page
   ============================================================ */
.profile {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.profile__media .welcome__frame img {
  height: 560px;
  object-fit: contain;
  background: #fff;
}

.profile__caption {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.profile__body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--ink-900);
  margin: 16px 0 20px;
}

.profile__body p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.profile__body p strong {
  color: var(--ink-800);
  font-weight: 600;
}

.cred-list {
  list-style: none;
  margin: 28px 0;
  border-top: 1px solid var(--hairline);
}

.cred-list li {
  position: relative;
  padding: 16px 0 16px 34px;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
  color: var(--text);
}

.cred-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 27px;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 60px;
}

.value {
  background: #fff;
  padding: 48px 40px;
  text-align: center;
}

.value .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value .icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-strong);
}

.value h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink-900);
  margin-bottom: 10px;
}

.value p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ============================================================
   Practice areas page
   ============================================================ */
.pa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pa-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--gold);
  padding: 40px 38px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.pa-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pa-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.pa-card__head h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink-900);
  line-height: 1.2;
}

.pa-card__num {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--gold-strong);
  flex-shrink: 0;
}

.pa-card > p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.pa-card ul {
  list-style: none;
  margin-top: auto;
}

.pa-card ul li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px dashed var(--hairline);
}

.pa-card ul li:last-child {
  border-bottom: none;
}

.pa-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.section-note {
  text-align: center;
  margin-top: 48px;
  color: var(--muted);
  font-size: 15px;
}

.section-note a {
  color: var(--ink-800);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}

/* ============================================================
   Contact page
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.card .sub {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: flex-start;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list .c-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list .c-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-strong);
}

.contact-list .c-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.contact-list .c-value {
  font-size: 15.5px;
  color: var(--text);
  margin-top: 3px;
  line-height: 1.6;
}

.contact-list .c-value a {
  color: var(--ink-800);
  font-weight: 600;
}

.contact-list .c-value a:hover {
  color: var(--gold-strong);
}

.map-wrap {
  margin-top: 28px;
  border: 1px solid var(--hairline);
  overflow: hidden;
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-800);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid #d8d1c4;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.18);
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14.5px;
  display: none;
}

.form-status.ok {
  display: block;
  background: #eaf4ec;
  color: #1d6b38;
  border: 1px solid #c2e2ca;
}

.form-status.err {
  display: block;
  background: #fdeceb;
  color: #a12b2b;
  border: 1px solid #f0c6c4;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink-950);
  color: #9fb0bf;
  font-size: 14px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 76px 0 56px;
}

.footer__brand .brand__name {
  color: #fff;
}

.footer__brand p {
  margin-top: 20px;
  color: #8da0b1;
  font-size: 14px;
  max-width: 300px;
  line-height: 1.75;
}

.footer__col h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 12px;
}

.footer__col ul a {
  color: #8da0b1;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__col ul a:hover {
  color: var(--gold-soft);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #8da0b1;
  line-height: 1.65;
}

.footer__contact svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer__contact a {
  color: #8da0b1;
}

.footer__contact a:hover {
  color: var(--gold-soft);
}

.footer__bottom {
  border-top: 1px solid var(--hairline-dark);
  padding: 26px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #6e8293;
}

.footer__bottom-inner a {
  color: #8da0b1;
}

.footer__bottom-inner a:hover {
  color: var(--gold-soft);
}

/* ============================================================
   Reveal animation (JS-gated)
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .nav__list {
    gap: 26px;
  }

  .header__phone {
    display: none;
  }

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

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

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 86vw);
    height: 100vh;
    background: var(--ink-950);
    padding: 110px 40px 40px;
    transition: right 0.35s var(--ease);
    z-index: 90;
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .nav__link {
    color: #fff;
    font-size: 16px;
  }

  .nav__link:hover,
  .nav__link.is-active {
    color: var(--gold-soft);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero__aside {
    border-left: none;
    border-top: 1px solid var(--hairline-dark);
    padding-left: 0;
    padding-top: 36px;
  }

  .welcome,
  .profile,
  .contact {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .truststrip__item + .truststrip__item {
    border-left: none;
    border-top: 1px solid var(--hairline);
  }

  .approach__grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .sec-head--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .sec-head--split .sec-head__right {
    text-align: left;
  }

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

@media (max-width: 640px) {
  :root {
    --section-y: 76px;
  }

  .topbar__left {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .brand__name {
    font-size: 21px;
  }

  .brand__tag {
    font-size: 9.5px;
  }

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

  .hero__actions .btn,
  .cta__inner .btn {
    width: 100%;
  }

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

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

  .card {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
