:root {
    --ink: #17212f;
    --muted: #5d6877;
    --line: #d8dde3;
    --paper: #ffffff;
    --soft: #f5f2ec;
    --navy: #102338;
    --navy-2: #183b59;
    --brass: #b9935a;
    --brass-dark: #87683e;
    --shadow: 0 22px 55px rgba(16, 35, 56, .14);
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--soft);
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(16, 35, 56, .05), transparent 360px),
        var(--soft);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.65;
}

body,
p {
    font-size: 17px;
}

a {
    color: var(--navy-2);
    text-decoration-color: rgba(185, 147, 90, .65);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

a:hover,
a:focus {
    color: var(--brass-dark);
}

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

.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 8px 26px rgba(16, 35, 56, .08);
}

.header-top {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    min-height: 116px;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr) 200px auto;
    align-items: center;
    gap: 22px;
    padding: 10px 0;
    position: relative;
}

.brand-mark img {
    width: 118px;
    height: auto;
}

.firm-name,
.attorney-name,
.header-contact {
    margin: 0;
}

.firm-name {
    font-size: 38px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--navy);
}

.attorney-name {
    margin-top: 5px;
    color: var(--brass-dark);
    font-size: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.header-badge {
    width: auto;
    height: 50px;
    max-width: none;
    justify-self: center;
    align-self: start;
    margin-top: 4px;
}

.header-contact {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
    font-style: normal;
    align-self: start;
}

.header-contact a {
    color: inherit;
    text-decoration: none;
}

.primary-nav {
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 0 20px;
    background: var(--navy);
}

.primary-nav a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 0 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a.active {
    background: rgba(255, 255, 255, .08);
    border-bottom-color: var(--brass);
}

.menu-toggle,
.menu-button {
    display: none;
}

main {
    min-height: calc(100vh - 250px);
}

.hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 34px auto 0;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background:
        linear-gradient(90deg, rgba(16, 35, 56, .10), rgba(16, 35, 56, .18) 42%, rgba(16, 35, 56, .74)),
        url("/images/hero-legal-bg.png") center / cover;
    box-shadow: var(--shadow);
    border: 1px solid rgba(216, 221, 227, .8);
    overflow: hidden;
}

.hero-content {
    width: min(620px, 58%);
    margin: clamp(22px, 3vw, 32px);
    padding: clamp(22px, 2.6vw, 30px);
    background: rgba(255, 255, 255, .92);
    border-left: 4px solid var(--brass);
    box-shadow: 0 18px 38px rgba(16, 35, 56, .18);
}

.hero h1 {
    font-size: clamp(32px, 3.6vw, 42px);
    line-height: 1.06;
    margin-bottom: 16px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--brass-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.15;
    margin-top: 0;
}

h1 {
    font-size: clamp(40px, 6vw, 66px);
    margin-bottom: 22px;
}

h1:focus {
    outline: none;
}

h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 18px;
}

h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.hero-content p {
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.button.primary {
    background: var(--navy);
    color: #fff;
}

.button.secondary {
    background: #fff;
    color: var(--navy);
}

.button:hover,
.button:focus {
    border-color: var(--brass);
    background: var(--brass);
    color: #fff;
}

.content-band,
.page-title {
    width: min(var(--max), calc(100% - 40px));
    margin: 34px auto;
}

.page-title {
    padding: 56px 0 10px;
    border-bottom: 1px solid var(--line);
}

.practice-title {
    background:
        linear-gradient(90deg, rgba(16, 35, 56, .88), rgba(16, 35, 56, .62) 48%, rgba(16, 35, 56, .14)),
        url("/images/hero-legal-bg.png") center / cover;
    color: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 52px);
    border-bottom: 0;
    box-shadow: var(--shadow);
}

.practice-title h1 {
    color: #fff;
    font-size: clamp(40px, 5vw, 58px);
    margin-bottom: 14px;
    max-width: 820px;
}

.practice-title .eyebrow {
    color: #e4c58d;
}

.practice-title p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    max-width: 54ch;
}

.intro-grid,
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 26px;
    align-items: start;
}

.practice-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
    align-items: start;
}

.practice-main {
    display: grid;
    gap: 20px;
}

.practice-overview {
    min-height: 300px;
    border-top: 4px solid var(--brass);
}

.practice-overview h2 {
    font-size: clamp(24px, 3vw, 32px);
}

.practice-overview p {
    max-width: 72ch;
}

.practice-resource {
    box-shadow: 0 10px 26px rgba(16, 35, 56, .07);
}

.practice-sidebar {
    display: grid;
    gap: 20px;
    align-content: start;
}

.practice-nav-card,
.practice-contact-card {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(16, 35, 56, .07);
    padding: 24px;
}

.practice-nav-card {
    border-top: 4px solid var(--brass);
}

.practice-nav-card nav {
    display: grid;
}

.practice-nav-card a {
    padding: 11px 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
}

.practice-nav-card a:first-child {
    border-top: 0;
}

.practice-nav-card a:hover,
.practice-nav-card a:focus,
.practice-nav-card a.active {
    color: var(--brass-dark);
}

.practice-contact-card {
    background: var(--navy);
    color: #fff;
}

.practice-contact-card .section-kicker {
    color: #e4c58d;
}

.practice-contact-card p {
    margin-top: 0;
    font-size: 16px;
}

.practice-contact-card .button {
    border-color: #fff;
}

.copy-panel,
.news-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 14px 35px rgba(16, 35, 56, .08);
    padding: clamp(24px, 4vw, 40px);
}

.copy-panel p:first-child {
    margin-top: 0;
}

.copy-panel p:last-child,
.news-panel p:last-child {
    margin-bottom: 0;
}

.copy-panel a,
.news-panel a {
    overflow-wrap: anywhere;
}

.news-panel {
    background: #fbfaf7;
    border-top: 4px solid var(--brass);
}

.news-panel h2 {
    font-size: 24px;
}

.date {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-style: italic;
}

.image-pair {
    float: right;
    width: min(260px, 42%);
    margin: 0 0 20px 28px;
    display: grid;
    gap: 12px;
}

.single-image {
    width: min(230px, 36%);
}

.image-pair img,
.contact-photo img,
.portrait,
.rating-badge {
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(16, 35, 56, .12);
}

.column-list {
    columns: 2;
    column-gap: 30px;
}

li {
    break-inside: avoid;
    margin-bottom: 6px;
}

.profile-layout,
.about-profile {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.profile-aside {
    display: grid;
    gap: 18px;
}

.portrait {
    width: 180px;
}

.rating-badge {
    width: 152px;
    background: #fff;
}

.about-profile {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
    margin-top: 22px;
    align-items: stretch;
}

.about-hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 34px auto 22px;
    min-height: 250px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(16, 35, 56, .86), rgba(16, 35, 56, .58) 48%, rgba(16, 35, 56, .10)),
        url("/images/about-hero-bg.png") center / cover;
    box-shadow: var(--shadow);
    border: 1px solid rgba(216, 221, 227, .8);
}

.contact-hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 34px auto 22px;
    min-height: 250px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(16, 35, 56, .88), rgba(16, 35, 56, .62) 48%, rgba(16, 35, 56, .12)),
        url("/images/hero-building-tight.jpg") center 48% / cover;
    box-shadow: var(--shadow);
    border: 1px solid rgba(216, 221, 227, .8);
}

.contact-hero-content {
    width: min(620px, 64%);
    padding: clamp(28px, 4vw, 44px);
}

.contact-hero .eyebrow {
    color: #e4c58d;
}

.contact-hero h1 {
    color: #fff;
    font-size: clamp(40px, 4.8vw, 56px);
    margin-bottom: 14px;
}

.contact-hero p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    max-width: 46ch;
}

.about-hero-content {
    width: min(560px, 62%);
    padding: clamp(28px, 4vw, 44px);
}

.about-hero .eyebrow {
    color: #e4c58d;
}

.about-hero h1 {
    color: #fff;
    font-size: clamp(42px, 5vw, 58px);
    margin-bottom: 14px;
}

.about-hero p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    max-width: 46ch;
}

.profile-card {
    background: var(--navy);
    color: #fff;
    padding: 22px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--brass);
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.profile-card .portrait {
    width: 148px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    margin: 0 auto 18px;
    border: 4px solid rgba(255, 255, 255, .72);
}

.profile-name {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

.profile-role {
    margin: 6px 0 0;
    color: #e4c58d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
}

.profile-facts {
    margin: auto 0 0;
    display: grid;
    gap: 10px;
    padding-top: 20px;
}

.profile-facts div {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.profile-facts dt {
    color: rgba(255, 255, 255, .72);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.profile-facts dd {
    margin: 3px 0 0;
    font-size: 17px;
}

.about-bio h2 {
    max-width: 760px;
}

.about-bio {
    padding: clamp(24px, 3vw, 34px);
}

.about-details {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.admissions-panel {
    grid-column: span 7;
    border-top: 4px solid var(--brass);
}

.admissions-panel ul {
    margin-bottom: 0;
}

.detail-panel {
    box-shadow: 0 10px 26px rgba(16, 35, 56, .07);
    padding: clamp(22px, 3vw, 32px);
}

.about-details > .copy-panel {
    height: 100%;
}

.detail-panel h3 {
    font-size: 20px;
}

.recognition-panel {
    grid-column: span 5;
    background: #fbfaf7;
}

.organizations-panel,
.links-panel {
    grid-column: span 6;
}

.narrow-copy {
    max-width: 840px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 20px;
    align-items: stretch;
}

.contact-location-card {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 14px 35px rgba(16, 35, 56, .08);
    padding: 18px;
}

.contact-location-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.contact-card p {
    margin: 4px 0;
}

.contact-info-card {
    border-top: 4px solid var(--brass);
}

.contact-list {
    margin: 0;
    display: grid;
    gap: 18px;
}

.contact-list div {
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.contact-list div:first-child {
    padding-top: 0;
    border-top: 0;
}

.contact-list dt {
    color: var(--brass-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-list dd {
    margin: 4px 0 0;
    font-size: 19px;
}

.notice {
    grid-column: 1 / -1;
    border-left: 4px solid var(--brass);
}

.contact-notice {
    border-left: 0;
    border-top: 4px solid var(--brass);
    background: #fbfaf7;
}

.contact-notice h2 {
    font-size: 24px;
}

.site-footer {
    width: min(var(--max), calc(100% - 40px));
    margin: 50px auto 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.site-footer p {
    margin: 0;
    font-size: 13px;
}

.site-footer span {
    display: block;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: calc(100vh - 56px);
    width: min(1420px, calc(100% - 32px));
    margin: 16px auto 48px;
    overflow: hidden;
    border: 1px solid #d9e0e8;
    background: #f6f8fb;
    box-shadow: 0 22px 55px rgba(16, 35, 56, .12);
}

.admin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 20px 16px;
    border-right: 1px solid #d9e0e8;
    background: #0f2238;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.admin-brand {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.admin-brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.admin-brand strong,
.admin-brand small {
    display: block;
}

.admin-brand strong {
    font-size: 15px;
}

.admin-brand small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.admin-nav {
    display: grid;
    gap: 6px;
}

.admin-nav a,
.admin-view-site {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    color: rgba(255, 255, 255, .78);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.admin-nav a:hover,
.admin-nav a:focus,
.admin-nav a.active {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.admin-view-site {
    margin-top: auto;
    border-color: rgba(255, 255, 255, .18);
    justify-content: center;
}

.admin-view-site:hover,
.admin-view-site:focus {
    background: #fff;
    color: var(--navy);
}

.admin-console {
    min-width: 0;
    background: #f6f8fb;
}

.admin-console-top {
    padding: 28px 34px 22px;
    border-bottom: 1px solid #d9e0e8;
    background: #fff;
}

.admin-console-top .eyebrow {
    margin-bottom: 8px;
    color: #7c5c25;
}

.admin-console-top h1 {
    margin: 0 0 8px;
    color: #14263a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: 0;
}

.admin-console-top p:not(.eyebrow) {
    max-width: 72ch;
    margin: 0;
    color: #526171;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.admin-console-body {
    padding: 24px 34px 34px;
}

.admin-grid,
.admin-card-grid,
.admin-page-groups {
    display: grid;
    gap: 16px;
}

.admin-grid,
.admin-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.admin-summary div {
    padding: 16px;
    border: 1px solid #d9e0e8;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 35, 56, .05);
}

.admin-summary span,
.admin-summary strong {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
}

.admin-summary span {
    margin-bottom: 8px;
    color: #526171;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admin-summary strong {
    color: #14263a;
    font-size: 20px;
    font-weight: 800;
}

.admin-toolbar,
.admin-card,
.admin-content-card,
.admin-status,
.admin-modal {
    background: #fff;
    border: 1px solid #d9e0e8;
    box-shadow: 0 8px 20px rgba(16, 35, 56, .06);
}

.admin-toolbar {
    display: grid;
    gap: 16px;
    align-items: start;
    padding: 18px;
    margin-bottom: 18px;
}

.admin-toolbar strong {
    color: #14263a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.admin-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.admin-filter-list a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid #d9e0e8;
    background: #f8fafc;
    color: #14263a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-filter-list a:hover,
.admin-filter-list a:focus {
    border-color: #b58943;
    background: #fff7ea;
}

.admin-jump-panel {
    padding-top: 14px;
    border-top: 1px solid #e4e9ef;
}

.admin-jump-panel p,
.admin-card span,
.admin-content-card .section-kicker,
.admin-block-group-heading .section-kicker {
    margin: 0 0 7px;
    color: #7c5c25;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-card,
.admin-content-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    color: #14263a;
    text-decoration: none;
}

.admin-card {
    min-height: 150px;
    align-content: space-between;
}

.admin-card strong,
.admin-content-card h3 {
    color: #14263a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.admin-content-card h3 {
    margin-bottom: 8px;
}

.admin-card small,
.admin-content-card p:not(.section-kicker) {
    color: #526171;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.admin-card:hover,
.admin-card:focus {
    border-color: #b58943;
    transform: translateY(-1px);
}

.admin-page-groups {
    gap: 24px;
}

.admin-block-group {
    scroll-margin-top: 20px;
}

.admin-block-group-heading {
    display: grid;
    gap: 3px;
    justify-items: start;
    margin-bottom: 10px;
    text-align: left;
}

.admin-block-group-heading h2 {
    margin: 0;
    color: #14263a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.admin-return-top {
    display: inline-flex;
    margin-top: 10px;
    color: #14263a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration-color: #b58943;
    text-transform: uppercase;
}

.admin-return-top:hover,
.admin-return-top:focus {
    color: #7c5c25;
}

.admin-card-button {
    justify-self: start;
    min-height: 36px;
    padding: 0 14px;
}

.admin-textarea {
    width: 100%;
    min-height: 260px;
    padding: 14px;
    border: 1px solid #cfd8e3;
    background: #fbfcfe;
    font: 14px/1.6 Consolas, "Courier New", monospace;
    resize: vertical;
}

.admin-modal-textarea {
    min-height: min(44vh, 430px);
}

.admin-preview {
    display: block;
    width: auto;
    max-width: min(360px, 100%);
    max-height: 220px;
    border: 1px solid #d9e0e8;
    background: #f8fafc;
}

.admin-asset-card {
    align-content: start;
}

.admin-asset-card input[type="file"] {
    width: 100%;
    color: #526171;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.admin-asset-card input[type="file"]::file-selector-button {
    min-height: 36px;
    margin-right: 10px;
    padding: 0 14px;
    border: 1px solid #d9e0e8;
    background: #f8fafc;
    color: #14263a;
    font-weight: 800;
    cursor: pointer;
}

.admin-asset-card input[type="file"]::file-selector-button:hover {
    border-color: #b58943;
    background: #fff7ea;
}

.admin-status {
    margin-bottom: 18px;
    padding: 13px 16px;
    border-left: 4px solid #b58943;
    color: #14263a;
    font-family: Arial, Helvetica, sans-serif;
}

.admin-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(12, 22, 34, .58);
}

.admin-modal {
    width: min(920px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    padding: 20px;
}

.admin-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.admin-modal-header h2 {
    margin: 0;
    color: #14263a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.admin-icon-button {
    width: 36px;
    height: 36px;
    border: 1px solid #d9e0e8;
    background: #fff;
    color: #14263a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.admin-icon-button:hover,
.admin-icon-button:focus {
    border-color: #b58943;
    background: #fff7ea;
}

.admin-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
}

@media (max-width: 940px) {
    .header-top {
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 104px;
        align-items: center;
        padding-top: 10px;
    }

    .brand-mark img {
        width: 88px;
    }

    .firm-name {
        font-size: 27px;
    }

    .header-contact {
        grid-column: 1 / -1;
        text-align: left;
        padding: 14px 0 16px;
        border-top: 1px solid var(--line);
    }

    .header-badge {
        grid-column: 1 / -1;
        justify-self: start;
        width: auto;
        height: 50px;
        margin-top: 4px;
    }

    .primary-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 8px 20px 16px;
    }

    .primary-nav a {
        min-height: 44px;
        padding: 0;
    }

    .menu-button {
        display: grid;
        gap: 5px;
        width: 46px;
        height: 42px;
        align-content: center;
        justify-content: center;
        position: absolute;
        right: 20px;
        top: 30px;
        border: 1px solid var(--line);
        background: #fff;
        cursor: pointer;
    }

    .menu-button span {
        width: 22px;
        height: 2px;
        background: var(--navy);
    }

    .menu-toggle:checked ~ .primary-nav {
        display: flex;
    }

    .hero,
    .intro-grid,
    .two-column,
    .practice-layout,
    .profile-layout,
    .about-profile,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .practice-overview {
        min-height: 0;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .admissions-panel,
    .recognition-panel,
    .organizations-panel,
    .links-panel {
        grid-column: auto;
    }

    .about-hero {
        min-height: 240px;
    }

    .contact-hero {
        min-height: 240px;
    }

    .practice-title {
        min-height: 275px;
    }

    .about-hero-content {
        width: 100%;
    }

    .contact-hero-content {
        width: 100%;
    }

    .hero {
        min-height: 360px;
        justify-content: center;
        background:
            linear-gradient(180deg, rgba(16, 35, 56, .18), rgba(16, 35, 56, .60)),
            url("/images/hero-legal-bg.png") center / cover;
    }

    .hero-content {
        width: auto;
    }

    .hero h1 {
        font-size: clamp(34px, 9vw, 44px);
    }

    .profile-aside {
        grid-template-columns: auto auto;
        justify-content: start;
        align-items: end;
    }
}

@media (max-width: 620px) {
    body,
    p {
        font-size: 16px;
    }

    .header-top,
    .hero,
    .about-hero,
    .contact-hero,
    .content-band,
    .page-title,
    .site-footer {
        width: min(100% - 28px, var(--max));
    }

    .firm-name {
        font-size: 23px;
    }

    .attorney-name {
        font-size: 14px;
    }

    .hero-content,
    .copy-panel,
    .news-panel {
        padding: 24px;
    }

    .image-pair,
    .single-image {
        float: none;
        width: 100%;
        margin: 0 0 20px;
        grid-template-columns: 1fr;
    }

    .column-list {
        columns: 1;
    }

    .site-footer {
        display: block;
    }

    .admin-shell {
        grid-template-columns: 1fr;
        width: min(100% - 20px, 760px);
        margin-top: 10px;
    }

    .admin-sidebar {
        gap: 14px;
        border-right: 0;
        border-bottom: 1px solid #d9e0e8;
    }

    .admin-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-view-site {
        margin-top: 0;
    }

    .admin-console-top,
    .admin-console-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .admin-toolbar,
    .admin-summary,
    .admin-grid,
    .admin-card-grid {
        grid-template-columns: 1fr;
    }

    .admin-filter-list {
        justify-content: flex-start;
    }
}
