/* =====================================================================
 * AM Legal APC — Interior page sections (loaded on WP pages).
 * Shared full-bleed scaffolding (.am-fullbleed, .am-section, .am-h2) lives in
 * blocks.css. Units: em; 1px hairlines in px.
 * ===================================================================== */

/* =====================================================================
 * OUR ATTORNEYS — Hero
 * ===================================================================== */
.am-attn-hero.wp-block-cover {
	padding: 6em 2em;
	align-items: center;
}

.am-attn-hero .wp-block-cover__inner-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}

/* Left-align hero content (beat core's constrained-layout (0,0,2,0) centering). */
.am-attn-hero .wp-block-cover__inner-container>.am-attn-hero__content {
	max-width: 42em;
	margin-left: 0;
	margin-right: auto;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.am-attn-hero__title {
	color: #fff;
	font-size: clamp(2.25em, 4.5vw, 3.5em);
	line-height: 1.05;
	margin: 0.45em 0 0.55em;
}

.am-attn-hero__title em {
	color: var(--color-gold);
}

.am-attn-hero__body {
	color: rgba(255, 255, 255, 0.7);
	max-width: 34em;
	font-size: 1em;
}

/* =====================================================================
 * OUR ATTORNEYS — Attorney cards (light, two-up with a divider)
 * ===================================================================== */
.am-attn-cards {
	background: #fff;
}

.am-attn-cards__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: var(--container);
	margin: 0 auto;
}

.am-attn-cards__grid>* {
	margin-block: 0;
}

.am-attn__card {
	display: flex;
	flex-direction: column;
}

.am-attn__card:nth-child(2) {
	border-left: 1px solid var(--color-border-light);
}

.am-attn__photo {
	position: relative;
	overflow: hidden;
	background: #f2f2f0;
	aspect-ratio: 4 / 5;
}

.am-attn__img {
	margin: 0;
	height: 100%;
}

.am-attn__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.am-attn__photo::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 22%;
	background: linear-gradient(transparent, #fff);
	pointer-events: none;
}

/* Body color lives on the CONTAINER so it's inherited — that lets `.am-label`,
   `.am-attn__role`, and any block-editor color set in wp-admin win over it.
   (A `.am-attn__body p {color}` rule has higher specificity and would clobber
   them.) Only the bio paragraphs are sized, never the label/role. */
.am-attn__body {
	padding: 2.5em 2.75em 0;
	max-width: none;
	color: #555;
}

.am-attn__body .am-label {
	margin-bottom: 0.5em;
}

.am-attn__name {
	color: var(--color-text-dark);
	margin: 0 0 0.25em;
}

.am-attn__role {
	color: var(--color-gold-ada);
	font-size: 0.78em;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 1.5em;
}

.am-attn__body p:not(.am-label):not(.am-attn__role) {
	font-size: 0.9em;
	line-height: 1.8;
}

.am-attn__cta {
	gap: 0.75em;
	margin-top: 1.5em;
}

/* =====================================================================
 * OUR ATTORNEYS — McCune backing (dark, centered)
 * ===================================================================== */
.am-attn-mccune {
	color: rgba(255, 255, 255, 0.65);
	text-align: center;
}

.am-attn-mccune .am-h2 {
	color: #fff;
}

.am-attn-mccune__body {
	max-width: 44em;
	margin: 0 auto 1.75em;
	font-size: 0.95em;
	line-height: 1.85;
}

.am-attn-mccune__cta {
	gap: 0.75em;
}

/* =====================================================================
 * OUR ATTORNEYS — Promises (light, three-up)
 * ===================================================================== */
.am-attn-promises {
	background: #F7F7F7;
}

.am-attn-promises__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3.5em;
	max-width: var(--container);
	margin: 0 auto;
}

.am-attn-promises__grid>* {
	margin-block: 0;
}

.am-attn-promise .gold-rule {
	margin: 0 0 1.25em;
}

.am-attn-promise {
	color: #555;
}

/* inherited, so block-editor colors win */
.am-attn-promise__title {
	color: var(--color-text-dark);
	font-size: 1.35em;
	font-weight: 400;
	margin: 0 0 0.6em;
}

.am-attn-promise p {
	font-size: 0.9em;
	line-height: 1.8;
	margin: 0;
}

/* =====================================================================
 * OUR ATTORNEYS — Responsive
 * ===================================================================== */
@media (max-width: 64em) {
	.am-attn-cards__grid {
		grid-template-columns: 1fr;
	}

	.am-attn__card:nth-child(2) {
		border-left: 0;
		border-top: 1px solid var(--color-border-light);
	}

	.am-attn-promises__grid {
		grid-template-columns: 1fr;
		gap: 2.5em;
	}
}

/* =====================================================================
 * ATTORNEY BIO PAGES — Hero (split: photo left / content right)
 * ===================================================================== */
.am-bio-hero {
	background: var(--color-bg-dark);
}

.am-bio-hero .am-bio-hero__cols {
	gap: 0;
	max-width: var(--container);
	margin: 0 auto;
	align-items: stretch;
}

.am-bio-hero__photo-col {
	overflow: hidden;
	min-height: 60vh;
}

.am-bio-hero__img {
	margin: 0;
	height: 100%;
}

.am-bio-hero__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.am-bio-hero__content-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6em 4em 6em 5em;
	color: rgba(255, 255, 255, 0.85);
}

.am-bio-hero__title {
	color: #fff;
	font-size: clamp(2.5em, 5vw, 4em);
	line-height: 1.0;
	margin: 0.4em 0 0.6em;
}

.am-bio-hero__title em {
	color: var(--color-gold);
}

.am-bio-hero__body {
	font-size: 0.95em;
	line-height: 1.8;
	max-width: 36em;
	margin-bottom: 0.75em;
	color: rgba(255, 255, 255, 0.75);
}

.am-bio-hero__cta {
	gap: 0.75em;
	margin-top: 1.5em;
	margin-bottom: 1.25em;
}

.am-bio-hero__armenian {
	font-size: 0.8em;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 0.5em;
}

.am-bio-hero__armenian em {
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
}

/* =====================================================================
 * ATTORNEY BIO PAGES — Credentials strip (dark band, horizontal scroll)
 * ===================================================================== */
.am-bio-creds {
	background: var(--color-bg-mid);
	padding: 2.5em 2em;
}

.am-bio-creds__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5em 3em;
	max-width: var(--container);
	margin: 0 auto;
}

.am-bio-creds__list>* {
	margin-block: 0;
}

.am-bio-cred {
	display: flex;
	flex-direction: column;
	gap: 0.4em;
}

.am-bio-cred .gold-rule {
	margin: 0 0 0.2em;
}

/* Color on the container so block-editor overrides win. */
.am-bio-cred__text {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.8em;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.15;
	margin: 0;
}

/* =====================================================================
 * ATTORNEY BIO PAGES — Bio + FAQ + sidebar contact box
 * ===================================================================== */
.am-bio-content {
	background: #fff;
	padding: var(--space-section) 2em;
}

.am-bio-content__inner {
	display: grid;
	grid-template-columns: 1fr 28em;
	gap: 5em;
	max-width: var(--container);
	margin: 0 auto;
	align-items: start;
}

.am-bio-content__inner>* {
	margin-block: 0;
}

/* Main column — color on container, never on bare p. */
.am-bio-content__main {
	color: #444;
}

.am-bio-content__main .am-h2 {
	color: var(--color-text-dark);
	margin-bottom: 0.6em;
}

.am-bio-content__main .am-h2 em {
	color: var(--color-gold-ada);
	font-style: italic;
}

.am-bio-content__main p {
	font-size: 0.95em;
	line-height: 1.85;
	max-width: 60em;
}

.am-bio-content__section-title {
	font-family: var(--font-body);
	font-size: 0.75em;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-gold-ada);
	margin: 2.5em 0 1em;
}

/* Pull quote */
.am-bio-pullquote {
	border-left: 3px solid var(--color-gold);
	padding: 0.75em 0 0.75em 1.75em;
	margin: 2.25em 0;
}

.am-bio-pullquote blockquote {
	margin: 0;
}

.am-bio-pullquote p {
	font-family: var(--font-display);
	font-size: 1.25em !important;
	font-weight: 300;
	font-style: italic;
	color: var(--color-text-dark) !important;
	line-height: 1.5 !important;
}

.am-bio-pullquote cite {
	display: block;
	font-family: var(--font-body);
	font-size: 0.7em;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-gold-ada);
	margin-top: 0.75em;
	font-style: normal;
}

/* Practice areas list */
.am-bio-practice-cols {
	gap: 0;
	margin-bottom: 1em;
}

.am-bio-practice-list {
	margin: 0;
	padding-left: 1.25em;
}

.am-bio-practice-list li {
	font-size: 0.9em;
	line-height: 1.7;
	color: #444;
	padding: 0.15em 0;
}

/* FAQ accordion items */
.am-faq-item {
	border-top: 1px solid var(--color-border-light);
	padding: 0;
	margin: 0;
}

.am-faq-item:last-child {
	border-bottom: 1px solid var(--color-border-light);
}

.am-faq-item summary {
	font-family: var(--font-body);
	font-size: 0.9em;
	font-weight: 600;
	color: var(--color-text-dark);
	padding: 1em 2em 1em 0;
	cursor: pointer;
	list-style: none;
	position: relative;
}

.am-faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2em;
	font-weight: 300;
	color: var(--color-gold-ada);
	transition: transform 0.2s;
}

.am-faq-item[open] summary::after {
	content: "−";
}

.am-faq-item[open] summary {
	color: var(--color-gold-ada);
}

.am-faq-item p {
	font-size: 0.875em;
	line-height: 1.85;
	color: #555;
	padding-bottom: 1em;
	margin: 0;
}

/* Sidebar contact box */
.am-bio-contact-box {
	background: var(--color-bg-dark);
	border-top: 3px solid var(--color-gold);
	padding: 2.5em;
	position: sticky;
	top: calc(var(--header-height) + 2rem);
}

.am-bio-contact-box .am-label {
	margin-bottom: 0.5em;
}

.am-bio-contact-box__title {
	color: #fff;
	font-size: 1.6em;
	margin: 0 0 0.5em;
}

.am-bio-contact-box__body {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85em;
	margin-bottom: 1.5em;
}

.am-bio-contact-box__cta {
	gap: 0.75em;
}

.am-bio-contact-box__cta .wp-block-button {
	width: 100%;
}

.am-bio-contact-box__cta .wp-block-button__link {
	width: 100%;
	text-align: center;
	justify-content: center;
}

/* =====================================================================
 * ATTORNEY BIO PAGES — Responsive
 * ===================================================================== */
@media (max-width: 64em) {
	.am-bio-hero .am-bio-hero__cols {
		flex-direction: column;
	}

	.am-bio-hero__photo-col,
	.am-bio-hero__content-col {
		flex-basis: 100% !important;
		width: 100%;
	}

	.am-bio-hero__photo-col {
		min-height: 50vw;
		max-height: 60vw;
	}

	.am-bio-hero__content-col {
		padding: 3.5em 2em;
	}

	.am-bio-content__inner {
		grid-template-columns: 1fr;
	}

	.am-bio-contact-box {
		position: static;
		margin-top: 3em;
	}
}

@media (max-width: 64em) {
	.am-bio-creds__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 48em) {
	.am-bio-hero__photo-col {
		min-height: 70vw;
		max-height: 80vw;
	}

	.am-bio-creds__list {
		grid-template-columns: 1fr;
	}
}

/* =====================================================================
 * PRACTICE AREA PAGES — Hero (full-bleed Cover)
 * ===================================================================== */
.am-pi-hero.wp-block-cover {
	padding: 7em 2em;
	align-items: flex-end;
	min-height: 55vh;
}

.am-pi-hero .wp-block-cover__inner-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}

.am-pi-hero__content {
	max-width: 44em;
	margin-left: 0;
}

.am-pi-hero__title {
	color: #fff;
	font-size: clamp(2.25em, 4.5vw, 3.75em);
	line-height: 1.05;
	margin: 0.4em 0 0.55em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.am-pi-hero__title em {
	color: var(--color-gold);
}

.am-pi-hero__body {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1em;
	max-width: 36em;
}

/* =====================================================================
 * PRACTICE AREA INDEX — Why AM Legal (split: text left, photo right)
 * ===================================================================== */
.am-pi-why {
	background: #fff;
}

.am-pi-why__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5em;
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--space-section) 2em;
	align-items: center;
}

.am-pi-why__inner>* {
	margin-block: 0;
}

/* Color on container so block-editor colors win */
.am-pi-why__text {
	color: #444;
}

.am-pi-why__text .am-h2 {
	color: var(--color-text-dark);
	margin-bottom: 0.6em;
}

.am-pi-why__text .am-h2 em {
	color: var(--color-gold-ada);
	font-style: italic;
}

.am-pi-why__text p {
	font-size: 0.95em;
	line-height: 1.85;
	max-width: 40em;
}

.am-pi-why__cta {
	gap: 0.75em;
	margin-top: 1.75em;
}

.am-pi-why__media {
	position: relative;
}

.am-pi-why__photo {
	margin: 0;
}

.am-pi-why__photo img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.am-pi-why__badge {
	position: absolute;
	bottom: 1.5em;
	right: 1.5em;
	background: var(--color-bg-dark);
	border-top: 3px solid var(--color-gold);
	padding: 1.25em 1.75em;
	text-align: center;
}

.am-pi-why__badge-amount {
	display: block;
	font-family: var(--font-display);
	font-size: 2.5em;
	font-weight: 300;
	color: var(--color-gold);
	line-height: 1;
}

.am-pi-why__badge-label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.65em;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 0.4em;
}

/* =====================================================================
 * PRACTICE AREA INDEX — What We Handle grid
 * ===================================================================== */
.am-pi-grid {
	background: var(--color-bg-light);
	padding: var(--space-section) 2em;
}

.am-pi-grid .am-h2 {
	margin-bottom: 1.5em;
	max-width: 30em;
}

.am-pi-grid .am-h2 em {
	color: var(--color-gold-ada);
}

.am-pi-grid__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	max-width: var(--container);
	margin: 0 auto;
	border-top: 1px solid var(--color-border-light);
	border-left: 1px solid var(--color-border-light);
}

.am-pi-card {
	border-right: 1px solid var(--color-border-light);
	border-bottom: 1px solid var(--color-border-light);
	padding: 2em 2.25em;
	background: #fff;
	transition: background 0.15s;
	color: #666;
	margin: 0;
}

.am-pi-card:hover {
	background: var(--color-bg-light);
}

.am-pi-card__num {
	display: block;
	font-family: var(--font-display);
	font-size: 2em;
	font-weight: 300;
	color: var(--color-gold);
	line-height: 1;
	margin-bottom: 0.4em;
}

.am-pi-card__title {
	font-family: var(--font-body);
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text-dark);
	margin: 0 0 0.6em;
}

.am-pi-card__desc {
	font-size: 0.85em;
	line-height: 1.65;
	margin: 0 0 0.75em;
}

.am-pi-card__link a {
	font-size: 0.75em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-gold-ada);
	text-decoration: none;
}

.am-pi-card__link a:hover {
	color: var(--color-text-dark);
}

.am-pi-card__link {
	margin: 0;
}

/* =====================================================================
 * PRACTICE AREA INDEX — Our Process (4 steps, dark)
 * ===================================================================== */
.am-pi-process {
	color: rgba(255, 255, 255, 0.65);
}

.am-pi-process .am-h2 {
	color: #fff;
	margin-bottom: 2em;
}

.am-pi-process .am-h2 em {
	color: var(--color-gold);
}

.am-pi-process__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5em;
	max-width: var(--container);
	margin: 0 auto;
}

.am-pi-process__steps>* {
	margin-block: 0;
}

.am-pi-process__num {
	display: block;
	font-family: var(--font-display);
	font-size: 3em;
	font-weight: 300;
	color: var(--color-gold);
	line-height: 1;
	margin-bottom: 0.3em;
}

.am-pi-process__step-title {
	font-family: var(--font-body);
	font-size: 0.75em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 0.75em;
}

.am-pi-process__step-body {
	font-size: 0.85em;
	line-height: 1.75;
	margin: 0;
}

/* =====================================================================
 * PRACTICE AREA INDEX — FAQ (2-col: header left, items right)
 * ===================================================================== */
.am-pi-faq {
	background: var(--color-bg-light);
	padding: var(--space-section) 2em;
}

.am-pi-faq__inner {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 5em;
	max-width: var(--container);
	margin: 0 auto;
	align-items: start;
}

.am-pi-faq__inner>* {
	margin-block: 0;
}

.am-pi-faq__header {
	position: sticky;
	top: calc(var(--header-height) + 2rem);
}

.am-pi-faq__header .am-h2 {
	margin-bottom: 0.75em;
}

.am-pi-faq__header .am-h2 em {
	color: var(--color-gold-ada);
}

.am-pi-faq__header .wp-block-buttons {
	margin-top: 1.5em;
}

/* =====================================================================
 * PRACTICE AREA SUB-PAGES — Overview section
 * ===================================================================== */
.am-pi-overview {
	background: #fff;
	padding: var(--space-section) 2em;
}

.am-pi-overview .am-h2 {
	color: var(--color-text-dark);
	margin-bottom: 0.6em;
	max-width: 30em;
}

.am-pi-overview .am-h2 em {
	color: var(--color-gold-ada);
}

/* Color on container */
.am-pi-overview {
	color: #444;
}

.am-pi-overview p {
	font-size: 0.95em;
	line-height: 1.85;
	max-width: 72ch;
}

.am-pi-overview p+p {
	margin-top: 0;
}

/* =====================================================================
 * PRACTICE AREA SUB-PAGES — What to Do steps
 * ===================================================================== */
.am-pi-steps {
	background: var(--color-bg-light);
	padding: var(--space-section) 2em;
}

.am-pi-steps .am-h2 {
	margin-bottom: 1.5em;
}

.am-pi-steps .am-h2 em {
	color: var(--color-gold-ada);
}

.am-pi-steps__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5em 4em;
	max-width: var(--container);
	margin: 0 auto;
}

.am-pi-steps__grid>* {
	margin-block: 0;
}

.am-pi-step-item {
	position: relative;
}

.am-pi-step-item__num {
	display: block;
	font-family: var(--font-display);
	font-size: 3em;
	font-weight: 300;
	color: var(--color-gold);
	line-height: 1;
	margin-bottom: 0.25em;
}

.am-pi-step-item__title {
	font-size: 0.9em;
	font-weight: 700;
	color: var(--color-text-dark);
	margin: 0 0 0.5em;
}

/* Color on container */
.am-pi-step-item {
	color: #555;
}

.am-pi-step-item p {
	font-size: 0.875em;
	line-height: 1.8;
	margin: 0;
}

/* =====================================================================
 * PRACTICE AREA SUB-PAGES — Case Results
 * ===================================================================== */
.am-pi-results {
	color: rgba(255, 255, 255, 0.65);
}

.am-pi-results .am-h2 {
	color: #fff;
	margin-bottom: 1.5em;
}

.am-pi-results .am-h2 em {
	color: var(--color-gold);
}

.am-pi-results__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	max-width: var(--container);
	margin: 0 auto 2em;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.am-pi-result {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	padding: 2em 2.25em;
}

.am-pi-result:last-child {
	border-right: 0;
}

.am-pi-result__amount {
	font-family: var(--font-display);
	font-size: 2.25em;
	font-weight: 300;
	color: var(--color-gold);
	margin: 0 0 0.4em;
	line-height: 1;
}

.am-pi-result__desc {
	font-size: 0.85em;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

.am-pi-results__disclaimer {
	font-size: 0.72em;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.03em;
}

/* =====================================================================
 * PRACTICE AREA SUB-PAGES — FAQ accordion (reuses .am-faq-item)
 * ===================================================================== */
.am-pi-subfaq {
	background: #fff;
	padding: var(--space-section) 2em;
}

.am-pi-subfaq .am-h2 {
	margin-bottom: 1.5em;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

.am-pi-subfaq .am-h2 em {
	color: var(--color-gold-ada);
}

.am-pi-subfaq .am-faq-item {
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

/* =====================================================================
 * PRACTICE AREA — Attorney strip
 * ===================================================================== */
.am-pi-attorneys {
	background: var(--color-bg-light);
	padding: var(--space-section) 2em;
}

.am-pi-attorneys .am-label {
	margin-bottom: 1em;
}

.am-pi-attorneys__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3em;
	max-width: var(--container);
	margin: 0 auto;
}

.am-pi-attorneys__grid>* {
	margin-block: 0;
}

.am-pi-attn-card {
	display: grid;
	grid-template-columns: 10em 1fr;
	gap: 2em;
	align-items: end;
	background: #fff;
	padding: 2em 2em 0;
	border: 1px solid var(--color-border-light);
}

.am-pi-attn-card__photo {
	margin: 0;
	margin-top: auto;
}

.am-pi-attn-card__photo img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: top;
	display: block;
}

.am-pi-attn-card__body {
	color: #444;
	margin-top: 0;
	padding-bottom: 2em;
}

.am-pi-attn-card__body .am-label {
	margin-bottom: 0.25em;
}

.am-pi-attn-card__name {
	font-size: 1.25em;
	color: var(--color-text-dark);
	margin: 0 0 0.4em;
}

.am-pi-attn-card__bio {
	font-size: 0.85em;
	line-height: 1.75;
	margin-bottom: 1em;
}

.am-pi-attn-card__body .wp-block-buttons {
	margin-top: 0;
}

/* =====================================================================
 * PRACTICE AREA — CTA band
 * ===================================================================== */
.am-pi-cta {
	text-align: center;
	color: rgba(255, 255, 255, 0.65);
}

.am-pi-cta__title {
	color: #fff;
	font-size: clamp(2em, 3.5vw, 3em);
	margin-bottom: 0.4em;
}

.am-pi-cta__title em {
	color: var(--color-gold);
}

.am-pi-cta__body {
	max-width: 40em;
	margin: 0 auto 2em;
	font-size: 0.95em;
}

.am-pi-cta__btns {
	gap: 0.75em;
}

/* =====================================================================
 * PRACTICE AREA — Responsive
 * ===================================================================== */
@media (max-width: 64em) {
	.am-pi-why__inner {
		grid-template-columns: 1fr;
		gap: 3em;
	}

	.am-pi-why__media {
		display: none;
	}

	/* hide photo on tablet — text alone is cleaner */
	.am-pi-process__steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.am-pi-faq__inner {
		grid-template-columns: 1fr;
	}

	.am-pi-faq__header {
		position: static;
	}

	.am-pi-grid__cards {
		grid-template-columns: 1fr;
	}

	.am-pi-results__grid {
		grid-template-columns: 1fr;
	}

	.am-pi-result {
		border-right: 0;
	}

	.am-pi-attorneys__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 48em) {
	.am-pi-steps__grid {
		grid-template-columns: 1fr;
		gap: 2em;
	}

	.am-pi-process__steps {
		grid-template-columns: 1fr;
	}

	.am-pi-attn-card {
		grid-template-columns: 8em 1fr;
		gap: 1.25em;
	}
}

/* =====================================================================
 * LOCATION PAGES — Hero
 * ===================================================================== */
.am-loc-hero.wp-block-cover {
	padding: 7em 2em;
	min-height: 60vh;
	align-items: center;
}

.am-loc-hero .wp-block-cover__inner-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}

.am-loc-hero .wp-block-cover__inner-container > .am-loc-hero__content {
	max-width: 44em;
	margin-left: 0;
	margin-right: auto;
}

.am-loc-hero__title {
	color: #fff;
	font-size: clamp(2.25em, 4.5vw, 3.5em);
	line-height: 1.05;
	margin: 0.45em 0 0.55em;
}

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

.am-loc-hero__body {
	color: rgba(255, 255, 255, 0.75);
	max-width: 36em;
	font-size: 1.05em;
}

.am-loc-hero__cta {
	margin-top: 2em;
}

/* =====================================================================
 * LOCATION PAGES — Our Office (only on the Glendale page — the one real
 * office; other city pages are service areas, not branch locations)
 * ===================================================================== */
.am-loc-office {
	background-color: #fff;
	padding-top: 5em !important;
	padding-bottom: 5em !important;
}

.am-loc-office__intro {
	max-width: 700px;
	margin-bottom: 3em !important;
}

.am-loc-office__intro .am-label {
	color: var(--color-gold-ada);
}

.am-loc-office__grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 2em;
	/* Same block-gap gotcha documented elsewhere in this file (core's
	   `:where(.is-layout-flow) > *` only exempts the literal first DOM
	   child) — harmless here with only 2 items, but zeroed for safety. */
	margin-top: 0;
}

.am-loc-office__photo {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 2px;
	margin: 0 !important;
}

.am-loc-office__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.am-loc-office__map {
	aspect-ratio: 4 / 3;
	line-height: 0;
	border-radius: 2px;
	overflow: hidden;
	background-color: #e8e6e1;
	/* Same block-gap gotcha as .am-loc-city-card / .am-res-comm-card /
	   .am-vidlib-card / .am-res-guide-card — it's the 2nd child in
	   .am-loc-office__grid, so core's block-gap default pushes it down. */
	margin-top: 0;
}

.am-loc-office__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media (max-width: 64em) {
	.am-loc-office__grid {
		grid-template-columns: 1fr;
	}
}

/* =====================================================================
 * LOCATION PAGES — Split "We live here"
 * ===================================================================== */
.am-loc-split {
	background: var(--color-bg-light);
}

.am-loc-split__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5em;
	max-width: var(--container);
	margin: 0 auto;
	padding: 6em 2em;
	align-items: center;
}

.am-loc-split__text {
	color: #1C1C1C;
}

.am-loc-split__text p {
	color: #444;
	line-height: 1.75;
	margin-bottom: 1em;
}

.am-loc-split__cta {
	margin-top: 2em;
}

.am-loc-split__media {
	position: relative;
}

.am-loc-split__photo img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 2px;
}

.am-loc-split__badge {
	position: absolute;
	bottom: -1.5em;
	left: -1.5em;
	background: var(--color-gold);
	color: #0D0D0D;
	padding: 1.25em 1.5em;
	min-width: 10em;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.am-loc-split__badge-amount {
	display: block;
	font-family: 'Cormorant Garamond', serif;
	font-size: 2em;
	font-weight: 700;
	line-height: 1;
}

.am-loc-split__badge-label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 0.6em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 0.4em;
}

/* =====================================================================
 * LOCATION PAGES — Stats bar
 * ===================================================================== */
.am-loc-stats {
	padding: 0;
}

.am-loc-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: var(--container);
	margin: 0 auto;
}

.am-loc-stats__card {
	padding: 2.5em 2em;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.am-loc-stats__card:last-child {
	border-right: 0;
}

.am-loc-stats__num {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.6em, 3vw, 2.25em);
	font-weight: 600;
	color: var(--color-gold);
	margin: 0 0 0.3em;
	line-height: 1;
}

.am-loc-stats__label {
	font-family: 'Inter', sans-serif;
	font-size: 0.65em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

/* =====================================================================
 * LOCATION PAGES — Cities served grid
 * ===================================================================== */
.am-loc-cities {
	background: #fff;
}

.am-loc-cities > .wp-block-group:first-child {
	padding-top: 5em;
	padding-bottom: 2em;
}

.am-loc-cities__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5em;
	padding-bottom: 5em;
}

.am-loc-city-card {
	border: 1px solid var(--color-border-dark);
	padding: 1.75em 2em;
	background: var(--color-bg-light);
	border-radius: 2px;
	/* Same block-gap gotcha as .am-res-comm-card (pages.css) — core's
	   `:where(.is-layout-flow) > *` default only exempts the literal first
	   DOM child from margin-block-start, which doesn't map to visual rows in
	   a 2-col grid. Without this, every card but Glendale sits ~24px lower. */
	margin-top: 0;
}

.am-loc-city-card__label {
	font-family: 'Inter', sans-serif;
	font-size: 0.6em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-gold-ada);
	margin: 0 0 0.5em;
}

.am-loc-city-card__name {
	font-size: 1.2em !important;
	margin-top: 0 !important;
	margin-bottom: 0.5em !important;
}

.am-loc-city-card__name a {
	color: inherit;
	text-decoration: none;
}

.am-loc-city-card__name a:hover {
	color: var(--color-gold);
}

.am-loc-city-card__desc {
	font-size: 0.9em;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

/* Hayeren services grid — 3-col cards: gold bar, Armenian title, English subtitle. */
.am-hayeren-svc__grid {
	grid-template-columns: repeat(3, 1fr);
}

.am-hayeren-svc-card {
	padding-top: 2.5em;
}

.am-hayeren-svc-card::before {
	content: "";
	display: block;
	width: 2em;
	height: 2px;
	background: var(--color-gold);
	margin-bottom: 1.25em;
}

.am-hayeren-svc-card__name {
	font-family: 'Cormorant Garamond', serif;
}

.am-hayeren-svc-card__en {
	font-family: 'Inter', sans-serif;
	font-size: 0.7em !important;
	text-transform: none;
	letter-spacing: 0.1em;
	color: #999;
	margin-top: 0.5em;
}

/* =====================================================================
 * LOCATION PAGES — Armenian community split
 * ===================================================================== */
.am-loc-armenian {
	padding: 0;
}

.am-loc-armenian__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5em;
	max-width: var(--container);
	margin: 0 auto;
	padding: 6em 2em;
	align-items: start;
}

.am-loc-armenian__text {
	color: #fff;
}

.am-loc-armenian__text .am-h2 em {
	color: var(--color-gold);
}

.am-loc-armenian__text p {
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.75;
	margin-bottom: 1em;
}

.am-loc-armenian__cta {
	margin-top: 2em;
}

.am-loc-armenian__photo-col {
	position: relative;
}

.am-loc-armenian__photo img {
	width: 100%;
	max-width: 22em;
	height: auto;
	display: block;
	margin: 0 auto;
}

.am-loc-armenian__namecard {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(201, 168, 76, 0.3);
	padding: 1.5em;
	margin-top: 1.5em;
	max-width: 22em;
	margin-left: auto;
	margin-right: auto;
}

.am-loc-armenian__namecard-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2em;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.4em;
}

.am-loc-armenian__namecard-role {
	font-family: 'Inter', sans-serif;
	font-size: 0.7em;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin: 0 0 1em;
}

/* =====================================================================
 * LOCATION PAGES — Practice areas grid
 * ===================================================================== */
.am-loc-practices {
	background: var(--color-bg-light);
}

.am-loc-practices > .wp-block-group:first-child {
	padding-top: 5em;
	padding-bottom: 2em;
}

.am-loc-practices__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	border-top: 1px solid var(--color-border-dark);
	padding-bottom: 5em;
}

.am-loc-practices__grid .wp-block-paragraph {
	margin: 0;
	padding: 1.25em 1.5em;
	border-bottom: 1px solid var(--color-border-dark);
	border-right: 1px solid var(--color-border-dark);
	font-family: 'Inter', sans-serif;
	font-size: 0.85em;
	font-weight: 500;
}

.am-loc-practices__grid .wp-block-paragraph:nth-child(5n) {
	border-right: 0;
}

.am-loc-practices__grid .wp-block-paragraph a {
	color: #1C1C1C;
	text-decoration: none;
	transition: color 0.2s;
}

.am-loc-practices__grid .wp-block-paragraph a:hover {
	color: var(--color-gold);
}

/* =====================================================================
 * LOCATION PAGES — FAQ (2-col: header left, accordion right)
 * ===================================================================== */
.am-loc-faq {
	background: #fff;
	padding: var(--space-section) 2em;
}

.am-loc-faq__inner {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 4em;
	max-width: var(--container);
	margin: 0 auto;
	align-items: start;
}

.am-loc-faq__inner > * {
	margin-block: 0;
}

.am-loc-faq__header {
	position: sticky;
	top: calc(var(--header-height) + 2rem);
}

.am-loc-faq__header .am-h2 {
	margin-bottom: 0.75em;
}

.am-loc-faq__header .am-h2 em {
	color: var(--color-gold-ada);
}

.am-loc-faq__header .wp-block-buttons {
	margin-top: 1.5em;
}

.am-loc-faq .am-faq-item {
	border-bottom: 1px solid var(--color-border-dark);
	padding-bottom: 0;
	margin-bottom: 0;
	max-width: none;
}

/* =====================================================================
 * LOCATION PAGES — CTA band
 * ===================================================================== */
.am-loc-cta {
	padding: 6em 2em;
}

.am-loc-cta__title {
	font-size: clamp(2em, 4vw, 3em) !important;
	color: #fff !important;
	margin-top: 0.4em !important;
	margin-bottom: 0.5em !important;
}

.am-loc-cta__title em {
	color: var(--color-gold) !important;
}

.am-loc-cta__body {
	color: rgba(255, 255, 255, 0.7);
	max-width: 40em;
	margin: 0 auto 2em;
}

/* =====================================================================
 * LOCATION PAGES — Responsive
 * ===================================================================== */
@media (max-width: 64em) {
	.am-loc-split__inner,
	.am-loc-armenian__inner,
	.am-loc-faq__inner {
		grid-template-columns: 1fr;
		gap: 3em;
	}

	.am-loc-split__badge {
		position: static;
		margin-top: 1.5em;
		display: inline-block;
	}

	.am-loc-faq__header {
		position: static;
	}

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

	.am-loc-cities__grid {
		grid-template-columns: 1fr;
	}

	.am-hayeren-svc__grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.am-loc-practices__grid .wp-block-paragraph:nth-child(5n) {
		border-right: 1px solid var(--color-border-dark);
	}

	.am-loc-practices__grid .wp-block-paragraph:nth-child(2n) {
		border-right: 0;
	}
}

@media (max-width: 48em) {
	.am-loc-hero.wp-block-cover {
		padding: 5em 1.5em;
		min-height: 50vh;
	}

	.am-hayeren-svc__grid {
		grid-template-columns: 1fr;
	}

	.am-loc-stats__grid {
		grid-template-columns: 1fr 1fr;
	}

	.am-loc-stats__card {
		padding: 2em 1em;
	}

	.am-loc-practices__grid {
		grid-template-columns: 1fr;
	}

	.am-loc-practices__grid .wp-block-paragraph {
		border-right: 0;
	}
}

/* =====================================================================
 * ARMENIAN COMMUNITY + HAYEREN — Community section
 * ===================================================================== */
.am-armc-community {
	background: var(--color-bg-light);
	padding: 6em 2em;
}

.am-armc-community > .wp-block-group:first-child {
	padding: 0 0 2.5em;
}

.am-armc-community > .wp-block-group > p,
.am-armc-community .wp-block-paragraph {
	color: #444;
	line-height: 1.75;
	max-width: 72em;
}

.am-armc-hero__script {
	font-size: 0.9em !important;
	letter-spacing: 0.15em;
}

/* Two-column services grid */
.am-armc-services {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3em;
	margin-top: 3em;
	padding-top: 2.5em;
	border-top: 1px solid var(--color-border-dark);
}

.am-armc-services__col .am-label {
	margin-bottom: 1em;
}

.am-armc-services__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.am-armc-services__list li {
	padding: 0.6em 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 0.9em;
	color: #333;
	padding-left: 1.2em;
	position: relative;
}

.am-armc-services__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	background: var(--color-gold);
	border-radius: 50%;
}

.am-armc-community .wp-block-buttons {
	margin-top: 2.5em;
}

@media (max-width: 64em) {
	.am-armc-services {
		grid-template-columns: 1fr;
		gap: 2em;
	}
}

/* =====================================================================
 * LOCATIONS HUB PAGE — City sections
 * Cover blocks use layout:default so WP doesn't inject margin:auto !important
 * on children. We control the container centering and content alignment here.
 * ===================================================================== */
.am-lochub-city.wp-block-cover {
	padding: 6em 2em;
	min-height: 60vh;
	align-items: center;
}

.am-lochub-city .wp-block-cover__inner-container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

/* Content block: left-aligned by default */
.am-lochub-city__content {
	max-width: 42em;
	width: 100%;
	margin-left: 0;
	margin-right: auto;
}

/* Alternate sections: push content to the right */
.am-lochub-city--alt .am-lochub-city__content {
	margin-left: auto;
	margin-right: 0;
	text-align: left;
}

.am-lochub-city__name {
	color: #fff;
	font-size: clamp(2em, 4vw, 3.25em) !important;
	line-height: 1.05 !important;
	margin-top: 0.4em !important;
	margin-bottom: 0.5em !important;
}

.am-lochub-city__name a {
	color: inherit;
	text-decoration: none;
}

.am-lochub-city__name a:hover {
	color: var(--color-gold);
}

.am-lochub-city__body {
	color: rgba(255, 255, 255, 0.75);
	max-width: 36em;
	font-size: 1em;
	line-height: 1.75;
	margin-bottom: 0;
}

@media (max-width: 64em) {
	.am-lochub-city.wp-block-cover {
		padding: 5em 1.5em;
		min-height: 50vh;
	}

	.am-lochub-city--alt .am-lochub-city__content {
		margin-left: 0;
		margin-right: auto;
	}
}

/* =====================================================================
 * CASE RESULTS PAGE
 * ===================================================================== */

/* --- Hero --- */
.am-cr-hero.wp-block-cover {
	min-height: 60vh;
	padding: 6em 2em;
}

.am-cr-hero .wp-block-cover__inner-container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

.am-cr-hero__content {
	max-width: 44em;
}

.am-cr-hero__title {
	color: #fff;
	font-size: clamp(2.8em, 5vw, 4.2em) !important;
	line-height: 1.05 !important;
	margin-top: 0.3em !important;
	margin-bottom: 0.5em !important;
}

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

.am-cr-hero__body {
	color: rgba(255, 255, 255, 0.8);
	max-width: 36em;
	font-size: 1.05em;
	line-height: 1.75;
	margin-bottom: 1.5em !important;
}

/* Stat strip */
.am-cr-hero__stat {
	display: flex !important;
	align-items: baseline;
	gap: 0.6em;
	margin-bottom: 2em !important;
}

.am-cr-hero__stat-amount {
	font-family: var(--font-display);
	font-size: clamp(2.4em, 4vw, 3.6em);
	font-weight: 300;
	color: var(--color-gold);
	line-height: 1;
	margin: 0 !important;
}

.am-cr-hero__stat-label {
	font-family: var(--font-body);
	font-size: 0.75em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 !important;
}

/* --- Disclaimer band --- */
.am-cr-disclaimer {
	background-color: var(--color-bg-light) !important;
	padding-top: 2.5em !important;
	padding-bottom: 2.5em !important;
}

.am-cr-disclaimer__text {
	border-left: 3px solid var(--color-gold);
	padding-left: 1.25em;
	font-size: 0.82em;
	color: #666;
	font-style: italic;
	line-height: 1.75;
	margin: 0 !important;
}

/* --- Results section --- */
.am-cr-results {
	background-color: var(--color-bg-light);
	padding-top: 6em !important;
	padding-bottom: 6em !important;
}

.am-cr-results .am-h2 em {
	color: var(--color-gold-ada);
}

.am-cr-results__grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(22em, 1fr));
	gap: 1.25em;
	margin-top: 3em;
}

/* --- Result cards --- */
.am-cr-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 2px;
	padding: 2em 2em 1.75em;
	display: flex !important;
	flex-direction: column;
	gap: 0;
}

.am-cr-card--featured {
	background: var(--color-bg-dark);
	border-color: transparent;
	margin: 0;
}

.am-cr-card__amount {
	font-family: var(--font-display);
	font-size: clamp(1.6em, 2.8vw, 2.2em);
	font-weight: 300;
	color: var(--color-gold);
	line-height: 1.1;
	margin-top: 0 !important;
	margin-bottom: 0.1em !important;
}

.am-cr-card__type {
	font-family: var(--font-body);
	font-size: 0.68em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--color-text-muted);
	margin-top: 0 !important;
	margin-bottom: 0.75em !important;
}

.am-cr-card--featured .am-cr-card__type {
	color: rgba(255, 255, 255, 0.45);
}

.am-cr-card__desc {
	font-size: 0.88em;
	color: #555;
	line-height: 1.65;
	margin: 0 !important;
}

.am-cr-card--featured .am-cr-card__desc {
	color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 64em) {
	.am-cr-results__grid {
		grid-template-columns: repeat(auto-fill, minmax(18em, 1fr));
		gap: 1em;
	}
}

@media (max-width: 48em) {
	.am-cr-hero.wp-block-cover {
		padding: 5em 1.5em;
		min-height: 50vh;
	}

	.am-cr-results__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 30em) {
	.am-cr-results__grid {
		grid-template-columns: 1fr;
	}
}

/* .am-reviews is normally styled by home.css (front page / /hy/ only) --
 * this page reuses the reviews block, so the one rule it needs is
 * duplicated here since pages.css doesn't load home.css. */
.am-reviews__badge .am-icon-g {
	width: 1em;
}

/* =====================================================================
 * RESOURCES — shared sub-page hero
 * Short dark hero with consultant image anchored right
 * ===================================================================== */
.am-res-sub-hero.wp-block-cover {
	min-height: 42vh;
	padding: 5em 2em;
}

.am-res-sub-hero .wp-block-cover__image-background {
	object-position: right center;
}

.am-res-sub-hero .wp-block-cover__inner-container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

.am-res-sub-hero__content {
	max-width: 44em;
}

.am-res-sub-hero__breadcrumb {
	font-size: 0.72em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 0 !important;
	margin-bottom: 1em !important;
}

.am-res-sub-hero__breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.am-res-sub-hero__breadcrumb span {
	color: var(--color-gold);
}

.am-res-sub-hero__title {
	color: #fff;
	font-size: clamp(2.8em, 5vw, 4.2em) !important;
	line-height: 1.05 !important;
	margin-top: 0 !important;
	margin-bottom: 0.4em !important;
}

.am-res-sub-hero__body {
	color: rgba(255, 255, 255, 0.75);
	max-width: 36em;
	font-size: 1em;
	line-height: 1.75;
	margin: 0 !important;
}

.am-res-sub-hero__body a {
	color: var(--color-gold);
	text-decoration: underline;
}

/* =====================================================================
 * RESOURCES — hub hero
 * ===================================================================== */
.am-res-hub-hero.wp-block-cover {
	min-height: 60vh;
	padding: 6em 2em;
}

.am-res-hub-hero .wp-block-cover__image-background {
	object-position: right center;
}

.am-res-hub-hero .wp-block-cover__inner-container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

.am-res-hub-hero__content {
	max-width: 44em;
}

.am-res-hub-hero__title {
	color: #fff;
	font-size: clamp(2.8em, 5vw, 4.2em) !important;
	line-height: 1.05 !important;
	margin-top: 0.3em !important;
	margin-bottom: 0.5em !important;
}

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

.am-res-hub-hero__body {
	color: rgba(255, 255, 255, 0.8);
	max-width: 36em;
	font-size: 1.05em;
	line-height: 1.75;
	margin: 0 !important;
}

/* =====================================================================
 * RESOURCES — hub: video section
 * ===================================================================== */
.am-res-videos {
	padding-top: 5em !important;
	padding-bottom: 5em !important;
}

.am-res-videos__title {
	color: #fff;
	font-size: clamp(1.6em, 3vw, 2.4em) !important;
	line-height: 1.2 !important;
	margin-top: 0.4em !important;
	margin-bottom: 2em !important;
}

.am-res-videos__layout {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 3em;
	align-items: start;
}

/* Featured video card (left) */
.am-res-video-featured {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 2px;
	padding: 0;
	overflow: hidden;
}

.am-res-video-featured__thumb {
	background: #111;
	aspect-ratio: 16 / 9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1em;
	padding: 2em;
}

.am-res-video-featured__play {
	width: 60px;
	height: 60px;
}

.am-res-video-featured__title,
.am-res-video-featured__meta,
.am-res-video-featured__note {
	padding-left: 1.5em;
	padding-right: 1.5em;
}

.am-res-video-featured__title {
	color: #fff;
	font-size: 1em;
	font-weight: 500;
	line-height: 1.4;
	margin-top: 1.25em !important;
	margin-bottom: 0.2em !important;
}

.am-res-video-featured__meta {
	font-size: 0.72em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-gold);
	margin-top: 0 !important;
	margin-bottom: 1em !important;
}

.am-res-video-featured__note {
	font-size: 0.8em;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.6;
	margin-top: 0 !important;
	margin-bottom: 1.5em !important;
}

.am-res-video-featured__note a {
	color: var(--color-gold);
	text-decoration: none;
}

/* Right sidebar video list */
.am-res-video-list {
	display: flex !important;
	flex-direction: column;
	gap: 0;
}

.am-res-video-item {
	display: grid !important;
	grid-template-columns: 36px 1fr;
	grid-template-rows: auto auto;
	column-gap: 1em;
	row-gap: 0;
	padding: 1.25em 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	align-items: start;
}

.am-res-video-item__play {
	width: 36px;
	height: 36px;
	grid-row: 1 / 3;
	align-self: start;
	margin-top: 2px;
}

.am-res-video-item__title {
	color: #fff;
	font-size: 0.92em;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 !important;
}

.am-res-video-item__meta {
	font-size: 0.68em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-gold);
	margin-top: 0.3em !important;
	margin-bottom: 0 !important;
}

.am-res-video-list .wp-block-buttons {
	padding-top: 1.5em;
}

/* =====================================================================
 * RESOURCES — hub: guides section
 * ===================================================================== */
.am-res-guides {
	background-color: var(--color-bg-light);
	padding-top: 6em !important;
	padding-bottom: 4em !important;
}

.am-res-guides .am-h2 em {
	color: var(--color-gold-ada);
}

.am-res-guides__grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 2em;
	margin-top: 3em;
}

.am-res-guide-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	padding: 2em 1.75em 1.75em;
	display: flex !important;
	flex-direction: column;
	/* Same block-gap gotcha as .am-loc-city-card / .am-res-comm-card /
	   .am-vidlib-card — core's `:where(.is-layout-flow) > *` default only
	   exempts the literal first DOM child from margin-block-start, which
	   doesn't map to visual rows in a multi-col grid. Without this, every
	   card but the first sits ~24px lower. */
	margin-top: 0;
}

.am-res-guide-card__cat {
	font-size: 0.65em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--color-gold-ada);
	border-bottom: 2px solid var(--color-gold);
	padding-bottom: 0.75em;
	margin-top: 0 !important;
	margin-bottom: 1em !important;
	display: inline-block;
}

.am-res-guide-card__title {
	font-size: 1em !important;
	font-weight: 600 !important;
	font-family: var(--font-body) !important;
	line-height: 1.4 !important;
	margin-top: 0 !important;
	margin-bottom: 0.75em !important;
}

.am-res-guide-card__title a {
	color: var(--color-bg-dark);
	text-decoration: none;
}

.am-res-guide-card__title a:hover {
	color: var(--color-gold-ada);
}

.am-res-guide-card__title--soon {
	color: #999 !important;
	font-weight: 400 !important;
	font-style: italic;
}

/* Guides standalone page */
.am-res-guides-page {
	background-color: var(--color-bg-light);
	padding-top: 5em !important;
	padding-bottom: 5em !important;
}

.am-res-guides-page .am-res-guides__grid {
	margin-top: 0;
}

/* =====================================================================
 * RESOURCES — hub: FAQ split section
 * ===================================================================== */
.am-res-faq-hub {
	background-color: var(--color-bg-light);
	padding-top: 6em !important;
	padding-bottom: 6em !important;
}

.am-res-faq-hub .am-h2 em {
	color: var(--color-gold-ada);
}

.am-res-faq-hub__cols {
	align-items: start;
	gap: 4em !important;
}

.am-res-faq-hub__left {
	padding-top: 0.5em;
}

.am-res-faq-hub__attorneys {
	margin-top: 2em !important;
}

.am-res-faq-hub__atty-row {
	display: flex !important;
	gap: 1em;
}

.am-res-faq-hub__atty-img {
	margin: 0 !important;
	flex: 1;
}

.am-res-faq-hub__atty-img img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 !important;
}

.am-res-faq-hub__atty-names {
	font-size: 0.9em;
	font-weight: 600;
	color: #444;
	margin-top: 0.75em !important;
	margin-bottom: 0 !important;
}

.am-res-faq-hub__right .am-faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.am-res-faq-hub__viewall {
	margin-top: 1.5em !important;
	margin-bottom: 0 !important;
	font-size: 0.85em;
	font-weight: 600;
}

.am-res-faq-hub__viewall a {
	color: var(--color-gold-ada);
	text-decoration: none;
}

/* =====================================================================
 * RESOURCES — horizontal CTA band
 * ===================================================================== */
.am-res-cta {
	padding: 4em 2em !important;
}

.am-res-cta__inner {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	gap: 2em;
	flex-wrap: wrap;
}

.am-res-cta__text {
	flex: 1;
	min-width: 200px;
}

.am-res-cta__title {
	color: #fff;
	font-size: clamp(1.6em, 3vw, 2.4em) !important;
	line-height: 1.1 !important;
	margin-top: 0 !important;
	margin-bottom: 0.3em !important;
}

.am-res-cta__body {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.9em;
	margin: 0 !important;
}

.am-res-cta__btns {
	flex-shrink: 0;
}

/* =====================================================================
 * RESOURCES — FAQ Library page
 * ===================================================================== */
.am-res-faq-page {
	background-color: #fff;
	padding-top: 5em !important;
	padding-bottom: 5em !important;
}

.am-res-faq-page .am-faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.am-res-faq-page .am-faq-item[open] summary {
	color: var(--color-gold-ada);
}

/* =====================================================================
 * RESOURCES — Glendale Accident Reports
 * ===================================================================== */
.am-res-acc-page {
	background-color: #fff;
	padding-top: 4em !important;
	padding-bottom: 5em !important;
}

.am-res-acc-page__intro {
	font-size: 1em;
	color: var(--color-gold-ada);
	line-height: 1.75;
	margin-top: 0 !important;
	margin-bottom: 2.5em !important;
}

.am-acc-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9em;
	margin: 0 0 2.5em;
}

.am-acc-table thead tr {
	background: var(--color-bg-dark);
}

.am-acc-table thead th {
	padding: 1em 1.25em;
	text-align: left;
	font-size: 0.72em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-gold);
}

.am-acc-table tbody tr {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.am-acc-table tbody tr:nth-child(even) {
	background: var(--color-bg-light);
}

.am-acc-table tbody td {
	padding: 0.9em 1.25em;
	color: #333;
	line-height: 1.4;
}

.am-acc-table tbody td:first-child {
	color: var(--color-gold-ada);
	font-weight: 500;
	white-space: nowrap;
}

.am-acc-table tbody td:nth-child(2) {
	font-weight: 500;
	color: #1a1a1a;
}

.am-acc-severity {
	font-weight: 600;
}

.am-acc-severity--fatal { color: #7a0000; }
.am-acc-severity--serious { color: #c0392b; }
.am-acc-severity--moderate { color: #d35400; }
.am-acc-severity--minor { color: #27ae60; }

.am-res-acc-callout {
	border-left: 4px solid var(--color-gold);
	background: var(--color-bg-light);
	padding: 1.25em 1.5em;
	margin-top: 0.5em;
}

.am-res-acc-callout__text {
	font-size: 0.92em;
	color: #333;
	line-height: 1.7;
	margin: 0 !important;
}

.am-res-acc-callout__text a {
	color: var(--color-gold-ada);
	font-weight: 600;
}

/* =====================================================================
 * RESOURCES — Community Spotlights
 * ===================================================================== */
.am-res-comm-page {
	background-color: #fff;
	padding-top: 4em !important;
	padding-bottom: 5em !important;
}

.am-res-comm-page__intro {
	font-size: 1em;
	color: var(--color-gold-ada);
	line-height: 1.75;
	margin-top: 0 !important;
	margin-bottom: 2.5em !important;
}

.am-res-comm-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: 0;
	border: 1px solid rgba(0, 0, 0, 0.07);
}

.am-res-comm-card {
	padding: 2em 2em 1.75em;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	border-right: 1px solid rgba(0, 0, 0, 0.07);
	/* Core's block-gap default (`:where(.is-layout-flow) > *`) adds
	   margin-block-start to every grid child except the literal first one in
	   DOM order — meaningless in a 2-col grid where DOM order != visual row.
	   Without this override, every card but the first sits ~24px lower. */
	margin-block-start: 0 !important;
	/* align-items:start (grid) means cards no longer auto-stretch to their
	   row's height, so a taller card in one column left a gap next to a
	   shorter one in the other. min-height:100% restores equal row height
	   without reintroducing the block-gap position bug above. */
	min-height: 100%;
}

.am-res-comm-card:nth-child(even) {
	border-right: none;
}

.am-res-comm-card:nth-last-child(-n+2) {
	border-bottom: none;
}

.am-res-comm-card::before {
	content: '';
	display: block;
	width: 2.5em;
	height: 2px;
	background: var(--color-gold);
	margin-bottom: 1em;
}

.am-res-comm-card__title {
	font-size: 1.05em !important;
	font-weight: 600 !important;
	font-family: var(--font-body) !important;
	color: #1a1a1a !important;
	margin-top: 0 !important;
	margin-bottom: 0.6em !important;
}

.am-res-comm-card__desc {
	font-size: 0.88em;
	color: #555;
	line-height: 1.65;
	margin: 0 !important;
}

/* =====================================================================
 * RESOURCES — Video Library page
 * ===================================================================== */
.am-vidlib-main {
	background-color: #fff;
	padding-top: 4em !important;
	padding-bottom: 5em !important;
}

.am-vidlib-featured-wrap {
	border-radius: 2px;
	padding: 2.5em !important;
	margin-bottom: 3.5em;
}

.am-vidlib-featured-wrap .am-label {
	margin-bottom: 1.5em;
}

.am-vidlib-featured {
	display: grid !important;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	gap: 0 2em;
	align-items: start;
}

.am-vidlib-featured__thumb {
	grid-column: 1;
	grid-row: 1 / 5;
	background-color: #111;
	background-size: cover;
	background-position: center;
	aspect-ratio: 16 / 9;
	max-width: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

.am-vidlib-featured__thumb::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	transition: background 0.15s;
}

.am-vidlib-featured__thumb:hover::before {
	background: rgba(0, 0, 0, 0.4);
}

.am-vidlib-featured__play {
	width: 80px;
	height: 80px;
	position: relative;
	z-index: 1;
}

.am-vidlib-featured__title {
	color: #fff;
	font-size: 1.15em;
	font-weight: 500;
	margin: 0 !important;
}

.am-vidlib-featured__title {
	grid-column: 2;
	grid-row: 1;
	align-self: end;
}

.am-vidlib-featured__yt {
	grid-column: 2;
	grid-row: 2;
	margin-top: 1em !important;
}

.am-vidlib-featured__note {
	grid-column: 2;
	grid-row: 3;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.8em;
	margin-top: 0.75em !important;
	margin-bottom: 0 !important;
}

.btn-yt .wp-block-button__link {
	background: #ff0000 !important;
	color: #fff !important;
	font-size: 0.85em;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.75em 1.25em;
}

/* Video grid */
.am-vidlib-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 2em;
}

.am-vidlib-card {
	background: var(--color-bg-light);
	border-radius: 2px;
	overflow: hidden;
	/* Same block-gap gotcha as .am-loc-city-card / .am-res-comm-card — core's
	   `:where(.is-layout-flow) > *` default only exempts the literal first
	   DOM child from margin-block-start, which doesn't map to visual rows in
	   a 3-col grid. Without this, every card but the first sits ~24px lower. */
	margin-top: 0;
}

.am-vidlib-card__thumb {
	aspect-ratio: 16 / 9;
	background-color: #e8e6e1;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.am-vidlib-card__thumb::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: background 0.15s;
}

.am-vidlib-card__thumb:hover::before {
	background: rgba(0, 0, 0, 0.35);
}

.am-vidlib-card__thumb svg {
	width: 44px;
	height: 44px;
	position: relative;
	z-index: 1;
}

.am-vidlib-card__meta {
	padding: 1em 1.25em 0;
	font-size: 0.68em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-gold-ada);
	margin: 0 !important;
}

.am-vidlib-card__meta em {
	font-style: normal;
}

.am-vidlib-card__title {
	padding: 0.4em 1.25em 1.25em;
	font-size: 0.9em;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.4;
	margin: 0 !important;
}

/* =====================================================================
 * RESOURCES — responsive
 * ===================================================================== */
@media (max-width: 64em) {
	.am-res-videos__layout {
		grid-template-columns: 1fr;
	}

	.am-res-guides__grid {
		grid-template-columns: 1fr 1fr;
	}

	.am-res-faq-hub__cols {
		flex-direction: column !important;
		gap: 2em !important;
	}

	.am-vidlib-grid {
		grid-template-columns: 1fr 1fr;
	}

	.am-vidlib-featured {
		grid-template-columns: 1fr;
	}

	.am-vidlib-featured__thumb {
		max-width: 100%;
	}

	.am-vidlib-featured__yt,
	.am-vidlib-featured__note {
		grid-column: 1;
	}
}

@media (max-width: 48em) {
	.am-res-sub-hero.wp-block-cover {
		padding: 4em 1.5em;
		min-height: 35vh;
	}

	.am-res-guides__grid {
		grid-template-columns: 1fr;
	}

	.am-res-comm-grid {
		grid-template-columns: 1fr;
	}

	.am-res-comm-card {
		border-right: none !important;
	}

	.am-res-comm-card:nth-last-child(-n+2) {
		border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	}

	.am-res-comm-card:last-child {
		border-bottom: none;
	}

	.am-res-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.am-vidlib-grid {
		grid-template-columns: 1fr;
	}

	.am-acc-table {
		font-size: 0.8em;
	}

	.am-acc-table thead th,
	.am-acc-table tbody td {
		padding: 0.7em 0.75em;
	}
}
/* =====================================================================
 * CONTACT PAGE
 * ===================================================================== */

/* Hero reuses .am-res-sub-hero; just a taller min-height */
.am-contact-hero.wp-block-cover {
	min-height: 50vh;
}

/* --- Main 2-col section --- */
.am-contact-main {
	background-color: #fff;
	padding-top: 5em !important;
	padding-bottom: 5em !important;
}

.am-contact-main__cols {
	align-items: start;
	gap: 5em !important;
}

/* --- Left: contact info --- */
.am-contact-info__block {
	margin-bottom: 1.75em;
}

.am-contact-info__label {
	font-size: 0.68em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--color-gold-ada);
	margin-top: 0 !important;
	margin-bottom: 0.4em !important;
}

.am-contact-info__phone {
	font-family: var(--font-display);
	font-size: clamp(1.8em, 3vw, 2.6em);
	font-weight: 300;
	color: var(--color-bg-dark);
	line-height: 1;
	margin: 0 !important;
}

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

.am-contact-info__value {
	font-size: 0.95em;
	color: #333;
	line-height: 1.6;
	margin: 0 !important;
}

.am-contact-info__value a {
	color: #333;
	text-decoration: none;
}

.am-contact-info__armenian {
	font-size: 0.88em;
	color: #555;
}

/* Attorney photos */
.am-contact-attorneys {
	display: flex !important;
	gap: 1em;
	margin-top: 2em !important;
	margin-bottom: 1.5em !important;
}

.am-contact-atty-img {
	margin: 0 !important;
	flex: 1;
}

.am-contact-atty-img img {
	width: 100%;
	height: auto;
	display: block;
}

/* Fee callout */
.am-contact-fee-callout {
	border-left: 3px solid var(--color-gold);
	padding: 1em 1.25em;
	background: var(--color-bg-light);
	margin-top: 1.5em !important;
}

.am-contact-fee-callout__title {
	font-weight: 700;
	font-size: 0.9em;
	color: #1a1a1a;
	margin-top: 0 !important;
	margin-bottom: 0.3em !important;
}

.am-contact-fee-callout__body {
	font-size: 0.82em;
	color: #555;
	line-height: 1.65;
	margin: 0 !important;
}

/* --- Right: form column --- */
.am-contact-form-col__title {
	font-family: var(--font-body) !important;
	font-size: 1.4em !important;
	font-weight: 600 !important;
	color: #1a1a1a !important;
	margin-top: 0 !important;
	margin-bottom: 1.5em !important;
}

/* --- CF7 form styling --- */
.am-contact-form-col .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.am-cf7-row {
	display: flex;
	flex-direction: column;
	margin-bottom: 1em;
}

.am-cf7-row--2col {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 1em;
	flex-direction: unset;
}

/* When wpautop wraps both fields in a single <p>, that <p> lands in one 1fr
   column — making it half-width before it tries to split again. Fix: span all
   columns, then apply the 2-col grid on the <p> itself. */
.am-cf7-row--2col > p {
	grid-column: 1 / -1;
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 1em;
	margin: 0;
}

/* wpcf7-form-control-wrap is a <span> (inline) — block fills the grid cell */
.am-cf7-row--2col .wpcf7-form-control-wrap {
	display: block;
	min-width: 0;
}

/* hide the <br> wpautop injects between the two fields */
.am-cf7-row--2col > p br {
	display: none;
}

.am-contact-form-col input[type="text"],
.am-contact-form-col input[type="tel"],
.am-contact-form-col input[type="email"],
.am-contact-form-col select,
.am-contact-form-col textarea {
	width: 100%;
	padding: 0.85em 1em;
	border: 1px solid #ccc;
	border-radius: 0;
	font-family: var(--font-body);
	font-size: 0.9em;
	color: #1a1a1a;
	background: #fff;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	transition: border-color 0.15s;
}

.am-contact-form-col input:focus,
.am-contact-form-col select:focus,
.am-contact-form-col textarea:focus {
	border-color: var(--color-gold);
}

.am-contact-form-col select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.9em center;
	padding-right: 2.5em;
}

.am-contact-form-col textarea {
	min-height: 120px;
	resize: vertical;
}

/* Language radio row */
.am-cf7-language {
	flex-direction: row;
	align-items: center;
	gap: 1.5em;
	margin-bottom: 1em;
}

.am-cf7-language__label {
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #555;
}

.am-cf7-language .wpcf7-radio {
	display: flex;
	gap: 1.5em;
}

.am-cf7-language .wpcf7-list-item {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.4em;
}

.am-cf7-language .wpcf7-list-item label {
	font-size: 0.9em;
	color: #333;
	cursor: pointer;
}

/* Submit button */
.wpcf7-submit.am-cf7-submit,
input.am-cf7-submit {
	width: 100%;
	padding: 1.1em 2em;
	background: var(--color-gold);
	color: var(--color-bg-dark);
	border: none;
	font-family: var(--font-body);
	font-size: 0.78em;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	cursor: pointer;
	margin-top: 0.5em;
	transition: background 0.15s;
}

.wpcf7-submit.am-cf7-submit:hover,
input.am-cf7-submit:hover {
	background: var(--color-gold-hover);
}

/* CF7 validation messages */
.wpcf7-not-valid-tip {
	font-size: 0.78em;
	color: #c0392b;
	margin-top: 0.25em;
}

.am-contact-form-col .wpcf7-not-valid {
	border-color: #c0392b !important;
}

.wpcf7-response-output {
	font-size: 0.85em;
	padding: 0.75em 1em;
	margin-top: 0.75em !important;
	border-radius: 0;
}

.am-cf7-disclaimer {
	font-size: 0.75em;
	color: #999;
	line-height: 1.5;
	margin-top: 0.75em !important;
	margin-bottom: 0 !important;
}

/* --- Map section --- */
.am-contact-map-section {
	background-color: var(--color-bg-light);
	padding-top: 5em !important;
	padding-bottom: 0 !important;
}

.am-contact-map-section .am-label {
	color: var(--color-gold-ada);
}

.am-contact-map-section__title {
	font-family: var(--font-display) !important;
	font-size: clamp(1.4em, 3vw, 2.2em) !important;
	font-weight: 300 !important;
	color: #1a1a1a !important;
	margin-top: 0.3em !important;
	margin-bottom: 0.5em !important;
}

.am-contact-map-section__body {
	font-size: 0.95em;
	color: #555;
	margin-top: 0 !important;
	margin-bottom: 2.5em !important;
}

.am-contact-map {
	width: 100%;
	line-height: 0;
}

.am-contact-map iframe {
	width: 100%;
	height: 440px;
	border: 0;
	display: block;
}

/* --- Stats strip --- */
.am-contact-stats {
	padding-top: 4em !important;
	padding-bottom: 4em !important;
}

.am-contact-stats__cols {
	gap: 1em !important;
}

.am-contact-stat {
	text-align: center;
}

.am-contact-stat__value {
	font-family: var(--font-display);
	font-size: clamp(1.8em, 3.5vw, 2.8em);
	font-weight: 300;
	color: var(--color-gold);
	line-height: 1;
	margin-top: 0 !important;
	margin-bottom: 0.3em !important;
}

.am-contact-stat__label {
	font-size: 0.65em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.45);
	margin: 0 !important;
}

@media (max-width: 64em) {
	.am-contact-main__cols {
		flex-direction: column !important;
		gap: 3em !important;
	}

	.am-cf7-row--2col {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 48em) {
	.am-contact-stats__cols {
		grid-template-columns: 1fr 1fr;
	}

	.am-contact-map iframe {
		height: 320px;
	}
}

/* =====================================================================
 * LEGAL PAGES (Privacy Policy, Terms, Disclaimer)
 * ===================================================================== */
.am-legal-content {
	background-color: #fff;
	padding-top: 5em !important;
	padding-bottom: 6em !important;
}

/* NOTE: these are direct children of a layout:constrained group, which injects
   margin-left/right:auto !important to center children at contentSize (800px).
   Use margin-top/bottom (NOT the `margin:` shorthand) so we don't zero out those
   auto side-margins — otherwise the element pins to the far left of the viewport. */
.am-legal-content__updated {
	font-size: 0.8em;
	color: #999;
	font-style: italic;
	margin-top: 0 !important;
	margin-bottom: 2.5em !important;
}

.am-legal-content h2.wp-block-heading {
	font-family: var(--font-body) !important;
	font-size: 1.15em !important;
	font-weight: 700 !important;
	color: #1a1a1a !important;
	margin-top: 2.5em !important;
	margin-bottom: 0.6em !important;
	padding-bottom: 0.4em;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.am-legal-content h3.wp-block-heading {
	font-family: var(--font-body) !important;
	font-size: 0.95em !important;
	font-weight: 700 !important;
	color: #333 !important;
	margin-top: 1.5em !important;
	margin-bottom: 0.4em !important;
}

.am-legal-content p {
	font-size: 0.92em;
	color: #444;
	line-height: 1.8;
}

.am-legal-content ul.wp-block-list {
	font-size: 0.92em;
	color: #444;
	line-height: 1.8;
	padding-left: 1.5em;
	margin-top: 0.5em !important;
	margin-bottom: 1em !important;
}

.am-legal-content a {
	color: var(--color-gold-ada);
}

/* Standard Attorney Advertising disclosure — closing block on Privacy Policy
   and Terms of Use (Disclaimer already leads with this text in its own section). */
.am-legal-content__disclosure {
	font-size: 0.8em;
	color: #999;
	font-style: italic;
	margin-top: 3em !important;
	padding-top: 1.5em;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}
