@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

/* ───────────────────────────────────────────────────────────
   AM LAW — Site Stylesheet
   Palette: Blue · Grey · White
   ─────────────────────────────────────────────────────────── */

:root {
  /* Blues */
  --blue-900: #0F2A4A;   /* deepest, footer/dark surfaces */
  --blue-800: #1B3A66;   /* primary brand */
  --blue-700: #2C548C;
  --blue-600: #3E6FB4;   /* accent / link */
  --blue-100: #E6EEF8;   /* tint */
  --blue-050: #F3F7FC;

  /* Greys */
  --grey-900: #1A2433;   /* primary text */
  --grey-700: #3F4A5A;
  --grey-500: #6B7280;   /* muted text */
  --grey-300: #C8D0DA;
  --grey-200: #E2E7EE;
  --grey-100: #F0F3F7;   /* alt surface */
  --grey-050: #F7F9FB;

  --white: #FFFFFF;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(15, 42, 74, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 42, 74, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 42, 74, 0.10);

  --radius: 4px;
  --max: 1280px;
  --section: clamp(4rem, 7vw, 6.5rem) clamp(1.5rem, 5vw, 4rem);
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--blue-050);
  color: var(--grey-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
address { font-style: normal; }

/* ── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--blue-900);
  color: var(--grey-200);
  font-size: 0.78rem;
}
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}
.topbar__contact a { color: var(--grey-200); transition: color .2s; }
.topbar__contact a:hover { color: var(--white); }
.topbar__divider { opacity: 0.4; }
.topbar__socials { display: flex; gap: 0.5rem; }
.social {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--grey-200);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  transition: background .2s, color .2s, border-color .2s;
}
.social:hover { background: var(--white); color: var(--blue-900); border-color: var(--white); }

/* Topbar — scroll-to-bottom mode */
.topbar-placeholder { display: none; }
.topbar--bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.topbar--bottom.topbar--in { transform: translateY(0); }

@keyframes topbar-item-in {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.topbar--in .topbar__contact > *:nth-child(1) { animation: topbar-item-in 0.35s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.topbar--in .topbar__contact > *:nth-child(2) { animation: topbar-item-in 0.35s cubic-bezier(0.16,1,0.3,1) 0.16s both; }
.topbar--in .topbar__contact > *:nth-child(3) { animation: topbar-item-in 0.35s cubic-bezier(0.16,1,0.3,1) 0.22s both; }
.topbar--in .topbar__contact > *:nth-child(4) { animation: topbar-item-in 0.35s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.topbar--in .topbar__contact > *:nth-child(5) { animation: topbar-item-in 0.35s cubic-bezier(0.16,1,0.3,1) 0.34s both; }
.topbar--in .topbar__socials { animation: topbar-item-in 0.35s cubic-bezier(0.16,1,0.3,1) 0.42s both; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  transition: background .5s cubic-bezier(0.4, 0, 0.2, 1),
              border-color .5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow .5s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter .5s cubic-bezier(0.4, 0, 0.2, 1),
              padding .4s cubic-bezier(0.4, 0, 0.2, 1),
              transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Transparent at rest — used on homepage where nav overlays the hero */
.nav--over-hero {
  background: transparent;
  border-bottom-color: transparent;
}
.nav--over-hero .nav__inner {
  padding-left: 72px;
  padding-right: 72px;
}
.nav.is-scrolled {
  transform: translateY(0);
  background: linear-gradient(120deg,
    rgba(255,255,255,0.78) 0%,
    rgba(230,238,248,0.72) 60%,
    rgba(255,255,255,0.78) 100%);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  backdrop-filter: saturate(170%) blur(16px);
  border-bottom-color: rgba(255,255,255,0.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 28px -18px rgba(15,42,74,0.30);
}
.nav.is-scrolled .nav__inner { padding-top: 0.15rem; padding-bottom: 0.15rem; }
.nav.is-scrolled .brand__logo { height: 48px; }
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.15rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: padding .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand__logo { height: 100px; width: auto; transition: height .4s cubic-bezier(0.4, 0, 0.2, 1); }
.brand__text { display: flex; flex-direction: column; gap: 0.15rem; line-height: 1; }
.brand__mark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--blue-900);
}
.brand__sep { color: var(--blue-600); margin: 0 0.25em; }
.brand__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.nav__main { display: flex; align-items: center; gap: 1.25rem; }
.nav__list { display: flex; align-items: center; gap: 1.35rem; }
.nav__item { position: relative; }
.nav__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;            /* requirement #1 — bold menu items */
  letter-spacing: 0.03em;
  color: var(--grey-900);
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color .35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.nav__link:hover { color: var(--blue-700); }
.nav__link.is-active { color: var(--blue-800); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__link:hover::after,
.nav__link.is-active::after,
.nav__item--has-menu:hover .nav__link::after,
.nav__item--has-menu.open .nav__link::after,
.nav__item--has-menu.is-active > .nav__link::after { transform: scaleX(1); }
.nav__item--has-menu.is-active > .nav__link { color: var(--blue-800); }

.nav__caret { font-size: 0.7rem; transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0.6; }
.nav__item--has-menu:hover .nav__caret,
.nav__item--has-menu.open .nav__caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -1rem;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1),
              transform .35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear .35s;
  z-index: 200;
}
.dropdown--narrow { min-width: 240px; }
.nav__item--has-menu:hover .dropdown,
.nav__item--has-menu.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1),
              transform .35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-900);
  border-left: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.dropdown a:hover {
  background: var(--blue-050);
  color: var(--blue-800);
  border-left-color: var(--blue-600);
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue-800);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  transition: background .2s;
}
.nav__cta:hover { background: var(--blue-900); }

.nav__hamburger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--grey-900);
  transition: transform .25s, opacity .25s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile {
  display: none;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.mobile.open { max-height: 80vh; overflow-y: auto; }
.mobile__list { padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile__list > li > a,
.mobile__toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.85rem 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--grey-900);
  border-bottom: 1px solid var(--grey-200);
}
.mobile__toggle { display: flex; justify-content: space-between; align-items: center; }
.mobile__group.open .mobile__toggle span { transform: rotate(45deg); }
.mobile__sub {
  display: none;
  flex-direction: column;
  padding: 0.25rem 0 0.5rem 1rem;
  border-bottom: 1px solid var(--grey-200);
}
.mobile__group.open .mobile__sub { display: flex; }
.mobile__sub a {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-700);
}
.mobile__cta-link {
  display: block;
  margin: 1.25rem 1.25rem 1.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius);
  transition: background .2s;
}
.mobile__cta-link:hover { background: var(--blue-900); }

/* ── COMMON TYPOGRAPHY ───────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
  display: inline-block;
}
.eyebrow--light { color: var(--blue-100); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--blue-900);
  text-wrap: balance;
}
.section-title--light { color: var(--white); }

.section-lede {
  font-size: 1.05rem;
  color: var(--grey-700);
  max-width: 56ch;
  margin-top: 0.75rem;
}
.section-lede a { color: var(--blue-700); border-bottom: 1px solid var(--blue-600); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
}
.btn--primary { background: var(--blue-800); color: var(--white); }
.btn--primary:hover { background: var(--blue-900); box-shadow: var(--shadow-md); }
.btn--ghost { color: var(--blue-800); padding-left: 0.5rem; }
.btn--ghost:hover { color: var(--blue-600); }
.btn--white { background: var(--white); color: var(--blue-900); }
.btn--white:hover { background: var(--grey-100); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--white);
  margin-top: calc(-1 * var(--nav-h));
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    /* barely-there blue tint at top */
    radial-gradient(ellipse 90% 60% at 50% 0%, #F1F6FC 0%, transparent 70%),
    /* base — extremely faint blue → grey wash, just off-white */
    linear-gradient(165deg, #F6F9FC 0%, #F7F9FB 45%, #F2F4F7 100%);
  pointer-events: none;
}
/* Fine grain — small tile, lower opacity for a barely-there texture */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.18  0 0 0 0 0.32  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 140px 140px;
  opacity: 0.10;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero__bg::after { display: none; }

.hero__inner {
  position: relative;
  padding: 30px 40px 100px;
  max-width: 1040px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero__inner > .eyebrow { margin-bottom: 0; }

.hero__tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.34em;
  color: var(--blue-600);
  text-transform: uppercase;
  position: relative;
  padding: 0 2.5rem;
}
.hero__tag::before,
.hero__tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.75rem;
  height: 1px;
  background: var(--blue-600);
  opacity: 0.5;
}
.hero__tag::before { left: 0; }
.hero__tag::after  { right: 0; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 7.4vw, 6.25rem);
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--blue-900);
  text-wrap: balance;
  max-width: 20ch;
  margin: 0.5rem 0;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--grey-700);
  max-width: 62ch;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue-700);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity .2s, color .2s;
  z-index: 2;
}
.hero__scroll:hover { opacity: 1; color: var(--blue-900); }
.hero__scroll-track {
  width: 22px;
  height: 36px;
  border: 1.5px solid currentColor;
  border-radius: 100px;
  position: relative;
  opacity: 0.6;
}
.hero__scroll-track::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 7px;
  width: 2px;
  height: 7px;
  border-radius: 1px;
  background: currentColor;
  transform: translateX(-50%);
  animation: heroScrollDot 1.8s ease-in-out infinite;
}
@keyframes heroScrollDot {
  0%   { transform: translate(-50%, 0);   opacity: 1;  }
  60%  { transform: translate(-50%, 12px); opacity: 0; }
  61%  { transform: translate(-50%, 0);    opacity: 0; }
  100% { transform: translate(-50%, 0);    opacity: 1;  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-track::after { animation: none; }
}

/* ── TAGLINE BAND ─────────────────────────────────────────── */
.tagline-band {
  background: var(--grey-050);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.tagline-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tagline-band__rule { flex: 1; height: 1px; background: var(--grey-300); }
.tagline-band__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.18em;
  color: var(--blue-800);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── WHAT WE DO ─────────────────────────────────────────── */
.what {
  padding: var(--section);
  background: var(--white);
}
.what__head {
  max-width: var(--max);
  margin: 0 auto 3rem;
  text-align: center;
}
.what__head .eyebrow,
.what__head .section-lede { display: block; }
.what__head .section-lede { margin: 0.75rem auto 0; }

.what__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pcard {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}
.pcard__icon {
  width: 52px; height: 52px;
  background: var(--blue-050);
  color: var(--blue-700);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.pcard__icon svg { width: 28px; height: 28px; }
.pcard__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--blue-900);
  margin-bottom: 0.6rem;
}
.pcard__body {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.pcard__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-700);
}
.pcard__link:hover { color: var(--blue-600); }

/* ── CLIENTS STRIP ────────────────────────────────────────── */
.clients {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 45%, var(--grey-700) 100%);
  color: var(--white);
  padding: var(--section);
}
.clients__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.clients__lede {
  color: var(--blue-100);
  max-width: 60ch;
  margin: 0.75rem auto 3rem;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-left: 1px solid rgba(255,255,255,0.10);
}
.clients__grid li {
  padding: 1.4rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--blue-100);
  background: transparent;
  border-right: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.clients__grid li:hover {
  background: var(--white);
  color: var(--blue-800);
  transform: translateY(-1px);
}

/* ── CTA ───────────────────────────────────────────────── */
.cta {
  background: var(--grey-050);
  padding: var(--section);
  text-align: center;
}
.cta__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-900);
  margin-bottom: 0.75rem;
}
.cta__body {
  font-size: 1.05rem;
  color: var(--grey-700);
  max-width: 56ch;
  margin: 0 auto 1.75rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(165deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--grey-700) 100%);
  color: var(--grey-200);
  padding: 2rem clamp(1.5rem, 5vw, 4rem) 1rem;
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer__brand {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer__tag { color: var(--blue-100); max-width: 36ch; margin-bottom: 0.85rem; line-height: 1.5; font-size: 0.82rem; }
.footer__socials {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.footer__socials a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  background: rgba(15, 42, 74, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer__socials a i { font-size: 16px; line-height: 1; vertical-align: middle; }
.footer__socials a:hover {
  background: #ffffff;
  color: #0F2A4A;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.footer__head {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-100);
  display: block;
  margin-bottom: 0.6rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.35rem; }
.footer ul a, .footer address a, .footer address p {
  color: var(--grey-200);
  font-size: 0.82rem;
  line-height: 1.45;
  transition: color .2s;
  display: block;
}
.footer ul a:hover, .footer address a:hover { color: var(--white); }
.footer address p { margin-bottom: 0.15rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  font-size: 0.72rem;
  color: var(--grey-300);
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── PRACTICE AREAS LANDING ──────────────────────────────── */
.pa-hero {
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--grey-700) 100%);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}
.pa-hero__inner { max-width: var(--max); margin: 0 auto; }
.pa-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}
.pa-hero p { max-width: 60ch; color: var(--blue-100); font-size: 1.05rem; }
.pa-hero .eyebrow { color: var(--blue-100); }
.pa-hero__breadcrumb {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--blue-100);
  opacity: 0.8;
}
.pa-hero__breadcrumb a { border-bottom: 1px solid currentColor; }

.pa-list {
  padding: var(--section);
  background: var(--white);
}
.pa-list__inner { max-width: var(--max); margin: 0 auto; }
.pa-list__intro {
  max-width: 60ch;
  margin-bottom: 3rem;
  color: var(--grey-700);
  font-size: 1.05rem;
}

.pa-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 0;
  border-top: 1px solid var(--grey-200);
  border-left: 1px solid var(--grey-200);
}
.pa-item {
  padding: 1.75rem 1.75rem;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background .2s;
  scroll-margin-top: 120px;
}
.pa-item:hover { background: var(--blue-050); }
.pa-item__num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-600);
}
.pa-item__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--blue-900);
}
.pa-item__body {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.6;
}

/* ── COMING SOON ─────────────────────────────────────────── */
.coming-soon {
  position: relative;
  min-height: calc(100vh - 200px);
  background:
    radial-gradient(ellipse at 50% 0%, var(--blue-050) 0%, transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--grey-050) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.coming-soon__inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.coming-soon__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.coming-soon__icon svg { width: 40px; height: 40px; }
.coming-soon__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--blue-900);
}
.coming-soon__sub {
  font-size: 1.1rem;
  color: var(--grey-700);
  max-width: 52ch;
  line-height: 1.6;
}
.coming-soon__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  background: var(--blue-050);
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--blue-100);
}
.coming-soon__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-600);
  position: relative;
}
.coming-soon__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--blue-600);
  opacity: 0.35;
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}
.coming-soon__body {
  color: var(--grey-700);
  max-width: 52ch;
  margin-top: 0.5rem;
}
.coming-soon__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.75rem;
}
.coming-soon__breadcrumb {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--grey-500);
  letter-spacing: 0.04em;
}
.coming-soon__breadcrumb a {
  color: var(--blue-700);
  border-bottom: 1px solid var(--blue-100);
}
@media (max-width: 600px) {
  .coming-soon__actions { flex-direction: column; width: 100%; }
  .coming-soon__actions .btn { width: 100%; justify-content: center; }
}

/* ───────────────────────────────────────────────────────────
   INNER-PAGE SECTIONS  (about / team / clients / contact)
   ─────────────────────────────────────────────────────────── */

/* Generic page hero — used on about/team/clients/contact */
.page-hero {
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--grey-700) 100%);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}
.page-hero__inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.page-hero__sub {
  max-width: 60ch;
  color: var(--blue-100);
  font-size: 1.05rem;
}
.page-hero .eyebrow { color: var(--blue-100); }
.page-hero__breadcrumb {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--blue-100);
  opacity: 0.8;
}
.page-hero__breadcrumb a { border-bottom: 1px solid currentColor; }

/* === ABOUT === */
.story { padding: var(--section); background: var(--white); }
.story__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 4rem;
  align-items: start;
}
.story__copy p { color: var(--grey-700); margin-bottom: 1rem; }
.story__lede {
  font-size: 1.1rem;
  color: var(--grey-900) !important;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem !important;
}
.story__aside {
  background: var(--blue-050);
  border-left: 3px solid var(--blue-600);
  padding: 2.25rem 2rem;
}
.story__tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.06em;
  color: var(--blue-900);
  line-height: 1.05;
  margin: 0.75rem 0 0.75rem;
}
.story__tag-sub { color: var(--grey-700); font-size: 0.95rem; }

.values { padding: var(--section); background: var(--grey-050); }
.values__inner { max-width: var(--max); margin: 0 auto; }
.values__head { text-align: center; margin-bottom: 3rem; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--grey-200);
  border-left: 1px solid var(--grey-200);
}
.value {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  background: var(--white);
  transition: background .2s;
}
.value:hover { background: var(--blue-050); }
.value__num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-600);
  margin-bottom: 0.75rem;
}
.value h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}
.value p { font-size: 0.9rem; color: var(--grey-700); line-height: 1.55; }

.availability { padding: var(--section); background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--grey-700) 100%); color: var(--white); }
.availability__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.availability .eyebrow { color: var(--blue-100); }
.availability__body { color: var(--blue-100); margin-bottom: 1rem; }
.availability__pillars { display: flex; flex-direction: column; gap: 1.25rem; }
.availability__pillars li {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--blue-600);
  padding: 1.25rem 1.5rem;
  transition: background .25s ease, color .25s ease, border-left-color .25s ease, transform .25s ease;
}
.availability__pillars li:hover {
  background: var(--white);
  border-left-color: var(--blue-800);
  transform: translateX(2px);
}
.availability__pillars li:hover span,
.availability__pillars li:hover h4 { color: var(--blue-800); }
.availability__pillars span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-100);
  display: block;
  margin-bottom: 0.5rem;
}
.availability__pillars h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
}

/* === TEAM === */
.partners { padding: var(--section); background: var(--white); }
.partners__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.partner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
.partner--reverse { grid-template-columns: 1fr 320px; }
.partner--reverse .partner__photo { order: 2; }
.partner__photo {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--grey-700) 100%);
  color: var(--white);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}
.partner__photo::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  pointer-events: none;
}
.partner__initials {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.partner__note {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-100);
  margin-top: 1rem;
  opacity: 0.6;
}
.partner__qual {
  font-size: 0.85rem;
  color: var(--blue-700);
  margin: 0.75rem 0 1.25rem;
  font-weight: 500;
}
.partner__bio { color: var(--grey-700); margin-bottom: 1.5rem; }
.partner__tags { margin-top: 1rem; }
.partner__tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.partner__tags li {
  background: var(--blue-050);
  color: var(--blue-800);
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: default;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.partner__tags li:hover {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
  transform: translateY(-2px);
}

.support {
  padding: var(--section);
  background: var(--grey-050);
  text-align: center;
}
.support__inner { max-width: 720px; margin: 0 auto; }
.support__body { color: var(--grey-700); margin-top: 1rem; }

/* === CLIENTS === */
.clients-list { padding: var(--section); background: var(--white); }
.clients-list__inner { max-width: var(--max); margin: 0 auto; }
.clients-list__lede { color: var(--grey-700); max-width: 60ch; margin: 0.75rem 0 3rem; }
.clients-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--grey-200);
  border-left: 1px solid var(--grey-200);
}
.clients-list__grid li {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background .2s;
}
.clients-list__grid li:hover { background: var(--blue-050); }

/* === CONTACT === */
.contact { padding: var(--section); background: var(--grey-050); }
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}
.contact__details { background: linear-gradient(165deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--grey-700) 100%); color: var(--white); padding: 2.5rem; }
.contact__details .eyebrow { color: var(--blue-100); }
.contact__details .section-title { color: var(--white); font-size: 1.75rem; margin-bottom: 1.25rem; }
.contact__addr p { color: var(--blue-100); margin-bottom: 0.25rem; }
.contact__lines { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); }
.contact__lines li { display: flex; flex-direction: column; gap: 0.2rem; }
.contact__lines li span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-100);
  opacity: 0.7;
}
.contact__lines li a, .contact__lines li span:last-child { color: var(--white); font-size: 1rem; }
.contact__lines li a:hover { color: var(--blue-100); }
.contact__socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact__socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue-100);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.contact__socials a:hover { background: var(--white); color: var(--blue-900); }

.contact__form { background: var(--white); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.contact__form .section-title { font-size: 1.75rem; margin-bottom: 1.75rem; }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: grid; gap: 1.25rem; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey-700);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-900);
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px var(--blue-100);
}
.form__submit { align-self: flex-start; margin-top: 0.5rem; }
.form-success {
  background: var(--blue-050);
  border-left: 3px solid var(--blue-600);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--blue-900);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { min-height: 600px; }
  .hero__bg::before, .hero__bg::after { display: none; }
  .topbar__inner { gap: 0.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid > div:nth-child(2) { display: none; }
  .nav__main { display: none; }
  .nav__hamburger { display: flex; width: 44px; height: 44px; padding: 8px; }
  .mobile { display: block; }
  .topbar__contact { font-size: 0.72rem; gap: 0.4rem; }
  .story__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .availability__inner { grid-template-columns: 1fr; gap: 2rem; }
  .partner, .partner--reverse { grid-template-columns: 1fr; gap: 1.75rem; max-width: 560px; margin: 0 auto; }
  .partner--reverse .partner__photo { order: 0; }
  .partner__photo { aspect-ratio: 4/3; }
  .partner__tags { width: 100%; }
  .partner__tags ul { width: 100%; gap: 0.4rem; }
  .partner__tags li { font-size: 0.74rem; padding: 0.3rem 0.7rem; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__details, .contact__form { padding: 2rem 1.5rem; }
  .what__grid { gap: 1rem; }
  .pcard { padding: 1.75rem 1.5rem 1.5rem; }
  .brand__sub { display: none; }
  .brand__mark { font-size: 0.82rem; letter-spacing: 0.14em; }
  .brand { min-width: 0; }
  .nav--over-hero { transform: none; }
  .nav--over-hero .nav__inner {
    padding-left: clamp(1.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
  }
  .nav.is-scrolled { background: linear-gradient(120deg,
    rgba(255,255,255,0.86) 0%,
    rgba(230,238,248,0.82) 60%,
    rgba(255,255,255,0.86) 100%); }
}
@media (max-width: 600px) {
  .topbar__contact span:first-child { display: none; }
  .topbar__contact { font-size: 0.7rem; }
  .topbar__inner { justify-content: center; gap: 1.25rem; padding: 0.65rem 1.25rem; }
  .nav__cta { display: none; }
  .nav__inner { padding: 0.75rem 1.25rem; gap: 1rem; }
  .nav__hamburger { margin-right: 0; }
  .tagline-band__inner { gap: 0.75rem; }
  .tagline-band__text { font-size: 1.05rem; letter-spacing: 0.12em; }
  .footer__bottom { flex-direction: column; }
  .hero__title { font-size: clamp(2.5rem, 9vw, 3.5rem); max-width: 14ch; }
  .hero__lede { font-size: 1rem; }
  .hero__actions { gap: 1rem; flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__actions .btn--ghost { padding: 0.85rem; }
  .hero__inner { padding: 4rem 1.25rem 5rem; gap: 1.25rem; }
  .hero__tag { font-size: 0.78rem; padding: 0 1.75rem; letter-spacing: 0.26em; }
  .hero__tag::before, .hero__tag::after { width: 1rem; }
  .hero__scroll { bottom: 1.25rem; }
  .section-title { font-size: clamp(1.65rem, 6vw, 2.25rem); }
  .clients__grid, .clients-list__grid, .pa-list__grid, .values__grid {
    grid-template-columns: 1fr 1fr;
  }
  .clients__grid li, .clients-list__grid li { padding: 1rem 0.6rem; font-size: 0.82rem; }
  .pa-list__grid { grid-template-columns: 1fr; }
  .form__row--2 { grid-template-columns: 1fr; }
  .availability__pillars li:hover { transform: none; }
}
@media (max-width: 420px) {
  .topbar__contact .topbar__divider { display: none; }
  .topbar__contact a[href^="mailto"] { display: none; }
}
