#practice-areas,
#about-section {
	scroll-margin-top: var(--header-height, 5rem);
}
img {
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
}
@media (max-width: 838px) {
	[data-desktop-only="true"] {
		display: none !important;
	}
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	scroll-padding-top: 0;
	user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

html {
	scroll-snap-type: none;
}


h1, h2, h3 {
	font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
}

.site-header {
	background: transparent;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 0;
	min-height: 5rem;
	box-shadow: none;
	border-bottom: none;
	transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

.site-header.transparent-header {
	background: transparent;
	box-shadow: none;
}

.site-header.transparent-header .logoandh h1,
.site-header.transparent-header .logoandh h2,
.site-header.transparent-header .contact-details a,
.site-header.transparent-header .contact-details-mobile a {
	color: #fff;
	text-shadow: none;
}

.site-header:not(.transparent-header) {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(1.25rem) saturate(180%);
	-webkit-backdrop-filter: blur(1.25rem) saturate(180%);
	box-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.05), 0 0.25rem 1.5rem rgba(0, 0, 0, 0.04);
	border-bottom: none;
}

.site-header:not(.transparent-header) .logoandh h1 {
	color: #051A61;
}

.site-header:not(.transparent-header) .logoandh h2,
.site-header:not(.transparent-header) .contact-details a,
.site-header:not(.transparent-header) .contact-details-mobile a {
	color: #2c2c2c;
}

.header-inner {
	width: 100%;
	max-width: 87.5rem;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2vw;
	padding: 0 2vw;
	min-height: 5rem;
	border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
	transition: border-bottom 0.3s ease;
}

.site-header:not(.transparent-header) .header-inner {
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.05);
}

.header-nav {
	display: flex;
	gap: 2.5vw;
	align-items: center;
	justify-content: center;
}

.header-nav a {
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	padding: 0.5rem 0;
	position: relative;
	text-decoration: none;
	transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav a:not(:last-child)::before {
	content: "";
	position: absolute;
	right: -1.25vw;
	top: 50%;
	width: 0.0625rem;
	height: 0.7rem;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.35);
}

.header-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0.125rem;
	background: #fff;
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav a:hover,
.header-nav a:focus {
	color: rgba(255, 255, 255, 0.8);
}

.header-nav a:hover::after,
.header-nav a:focus::after {
	width: 100%;
}

.header-nav a.is-active::after {
	width: 100%;
}

.site-header:not(.transparent-header) .header-nav a {
	color: #2c2c2c;
}

.site-header:not(.transparent-header) .header-nav a:not(:last-child)::before {
	background: rgba(0, 0, 0, 0.25);
}

.site-header:not(.transparent-header) .header-nav a::after {
	background: #082C99;
}

.site-header:not(.transparent-header) .header-nav a:hover,
.site-header:not(.transparent-header) .header-nav a:focus {
	color: #082C99;
}

.logoandh {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	text-align: left;
	width: auto;
	white-space: nowrap;
}

.logoandh h1 {
	text-decoration: none;
	font-weight: 800;
	font-size: 1.45rem;
	color: #fff;
	margin-bottom: -0.05em;
	margin-top: -0.05em;
	text-shadow: none;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

.logoandh h2 {
	font-weight: 500;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	font-size: 0.8rem;
	padding-bottom: 0;
	text-shadow: none;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

.contact-details {
	display: flex;
	gap: 1.5vw;
	font-style: normal;
}

.contact-details a {
	text-decoration: none;
	color: #fff;
	display: flex;
	align-items: center;
	font-weight: 500;
	letter-spacing: -0.01em;
	gap: 0.5rem;
	font-size: 0.95rem;
	white-space: nowrap;
	text-shadow: none;
}

.contact-details-mobile {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	padding: 0;
}

.contact-details-mobile a {
	text-decoration: none;
	color: #fff;
	display: flex;
	align-items: center;
	font-weight: 500;
	letter-spacing: -0.01em;
	gap: 0.5rem;
	font-size: 0.9rem;
	white-space: nowrap;
	text-shadow: none;
}

.hamburger {
	display: none;
	background: none;
	border: none;
	padding: 0;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
	position: relative;
}

.hamburger__bar {
	display: block;
	width: 1.5rem;
	height: 0.125rem;
	background: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s ease;
	border-radius: 0.0625rem;
}

.hamburger__bar:first-child {
	top: 0.75rem;
}

.hamburger__bar:nth-child(2) {
	top: 1.2rem;
}

.hamburger__bar:last-child {
	top: 1.65rem;
}

.site-header:not(.transparent-header) .hamburger__bar {
	background: #000;
}

.hamburger.is-open .hamburger__bar {
	top: 1.2rem;
}

.hamburger.is-open .hamburger__bar:first-child {
	transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-open .hamburger__bar:nth-child(2) {
	opacity: 0;
}

.hamburger.is-open .hamburger__bar:last-child {
	transform: translateX(-50%) rotate(-45deg);
}

.mobile-nav {
	position: fixed;
	top: var(--header-height, 5rem);
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(1.25rem) saturate(180%);
	-webkit-backdrop-filter: blur(1.25rem) saturate(180%);
	box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
	display: none;
	flex-direction: column;
	align-items: center;
	z-index: 999;
}

.mobile-nav.show {
	display: flex;
}

.mobile-nav a {
	color: #1a1a1a;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	padding: 0.9rem 1.5rem;
	text-decoration: none;
	display: block;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
	text-align: center;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
	color: #051a61;
}

.mobile-nav a:last-child {
	border-bottom: none;
}


#hero-section {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: left;
	background: #000;
	width: 100%;
	padding: calc(var(--header-height, 5rem) + 6vh) 6vw 8vh;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}

#hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("images/hero-bkg.jpeg") center / cover no-repeat;
	z-index: 1;
}

.hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(8, 44, 153, 0.92) 0%, rgba(5, 26, 97, 0.95) 100%);
	z-index: 2;
}

.hero-container {
	width: 100%;
	max-width: 87.5rem;
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 3;
}

.hero-chevron {
	position: absolute;
	left: 50%;
	bottom: 2.5rem;
	transform: translateX(-50%);
	width: 3.25rem;
	height: 3.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	flex-direction: column;
	text-decoration: none;
	animation: chevronFloat 1.8s ease-in-out infinite;
	z-index: 4;
}

.hero-chevron span {
	display: block;
	width: 1.1rem;
	height: 1.1rem;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(45deg);
	animation: none;
}

@keyframes chevronFloat {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
		opacity: 0.7;
	}
	50% {
		transform: translateX(-50%) translateY(6px);
		opacity: 1;
	}
}

.hero-glass {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
	align-items: center;
	gap: 2.5vw;
	column-gap: 0;
	padding: 0 2.5rem;
	border-bottom: 0.125rem solid rgba(255, 255, 255, 0.35);
	animation: heroEntrance 0.8s ease-out 0.05s 1 normal both;
	opacity: 0;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 50rem;
	align-self: end;
	padding-bottom: 1.5rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
	margin-top: 1.25rem;
}

.hero-media {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 0;
}

.hero-media img {
	width: min(36vw, 22rem);
	height: auto;
	border-radius: 0;
	box-shadow: none;
	filter: grayscale(100%);
	image-rendering: -webkit-optimize-contrast;
	backface-visibility: hidden;
}

#hero-section h2, #hero-section h3, .cursive-text {
	color: #fff;
	text-shadow: none;
}

#hero-section h2 {
	padding-top: 0;
	font-weight: 600;
	font-style: normal;
	font-size: clamp(2.2rem, 3.8vw, 3.2rem);
	text-align: left;
	margin: 0;
	padding-bottom: 0;
	line-height: 1.15;
	opacity: 0;
	visibility: hidden;
	word-spacing: 0.2em;
}

.cursive-text {
	color: #fff;
	font-size: 1em;
	letter-spacing: normal;
	font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
	font-weight: 400;
	font-style: italic;
	text-shadow: none;
	margin: 0;
	padding: 0;
	display: inline-block;
	paint-order: stroke fill;
	line-height: 1;
	vertical-align: baseline;
	margin-top: 0;
}

.font-loaded #hero-section h2, 
.font-loaded #hero-section h3, 
.font-loaded .cursive-text {
	visibility: visible;
	opacity: 1;
}

.font-loaded #hero-section h2,
.font-loaded #hero-section h3 {
	animation: easeIn 0.3s ease-in 0.05s 1 both;
}

#hero-section h3 {
	font-size: clamp(1.15rem, 2.2vw, 1.6rem);
	line-height: 1.35;
	margin: 0;
	font-weight: 300;
	letter-spacing: -0.01em;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	visibility: hidden;
	opacity: 0;
}

.btn {
	display: inline-block;
	padding: 1.1em 2.4em;
	font-size: 1rem;
	font-weight: 700;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 0.375rem;
	text-align: center;
	position: relative;
	text-decoration: none;
}

.btn--white {
	background: #fff;
	color: #082C99;
	border: 0.125rem solid #fff;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.25);
}

.btn--white:hover,
.btn--white:focus {
	background: #082C99;
	color: #fff;
	border-color: #fff;
	box-shadow: 0 0.5rem 2rem rgba(8, 44, 153, 0.5), 0 0.25rem 1rem rgba(0, 0, 0, 0.3);
}

.btn--blue {
	background: transparent;
	color: #fff;
	border: 0.125rem solid #fff;
	box-shadow: 0 0.25rem 1.25rem rgba(255, 255, 255, 0.2);
}

.btn--blue:hover,
.btn--blue:focus {
	background: #082C99;
	color: #fff;
	border-color: #fff;
	box-shadow: 0 0.5rem 2rem rgba(8, 44, 153, 0.5), 0 0.25rem 1rem rgba(0, 0, 0, 0.3);
}


.btn:disabled {
	cursor: default;
}

#hero-section .btn {
	margin: 0;
}

@keyframes easeIn {
	0% {
		opacity: 0;
		transform: translateY(250px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroEntrance {
	0% {
		opacity: 0;
		transform: translateY(24px) scale(0.985);
	}
	60% {
		opacity: 1;
		transform: translateY(-4px) scale(1.002);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

#practice-areas {
	background: linear-gradient(180deg, #d7e5ff 0%, #ffffff 100%);
	padding: 2em 0;
	text-align: center;
	min-height: calc(100vh - 4em);
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-height: calc(100vh - var(--header-height, 5rem));
	overflow: auto;
	position: relative;
}

#practice-areas::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0.4rem;
	background: linear-gradient(90deg, transparent, rgba(8, 44, 153, 0.65), transparent);
	box-shadow: 0 -8px 24px rgba(8, 44, 153, 0.18);
}

@media (min-width: 900px) {
	#about-section {
		min-height: calc(100vh - var(--header-height, 5rem));
		height: auto;
		max-height: none;
		overflow: visible;
		box-sizing: border-box;
	}
	#practice-areas {
		height: calc(100vh - var(--header-height, 5rem));
		min-height: calc(100vh - var(--header-height, 5rem));
		max-height: calc(100vh - var(--header-height, 5rem));
		box-sizing: border-box;
		padding: 1.5rem 0;
		overflow: hidden;
	}
}

@media (max-width: 838px) {
	#practice-areas {
		max-height: none;
		overflow: visible;
	}

	#about-section {
		padding: 1.25rem calc(5vw + clamp(0.75rem, 2vh, 1.25rem));
		box-sizing: border-box;
	}

	.about-card {
		margin: 0;
		width: 100%;
		max-width: none;
		box-sizing: border-box;
	}
}

#practice-areas h2 {
	font-size: 2.4em;
	font-weight: 600;
	margin: 5px;
	text-align: center;
	color: #051A61;
	font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
}

.practice-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	width: 100%;
	max-width: 60em;
	margin: 2.5rem auto 0;
	justify-content: center;
	justify-items: center;
	padding: 0 2vw;
}

.practice-card {
	position: relative;
	border-radius: 15px;
	background: #fff;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	overflow: hidden;
	transition: none;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px;
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: default;
}

.practice-card figure {
	margin: 0;
	padding: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
	border-radius: 10px;
}

.practice-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: none;
}


.practice-body {
	padding: 15px;
	text-align: center;
}

.practice-card h3 {
	font-size: 1.2em;
	font-weight: 600;
	color: #1a1a1a;
	margin: -10px;
	font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
}

.number {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 30px;
	height: 30px;
	font-size: 14px;
	font-weight: 700;
	color: #FFF;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}


#about-section {
	background: radial-gradient(ellipse 140% 90% at 75% 85%, #0a2d8b 0%, #081f6a 45%, #051341 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem 0;
}

.about-card {
	margin: 3.5rem auto;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 0.75rem;
	box-shadow: none;
	padding: 2rem 2.5rem;
	max-width: 44rem;
	width: min(92vw, 44rem);
	position: relative;
	z-index: 2;
	backdrop-filter: blur(0.75rem);
	-webkit-backdrop-filter: blur(0.75rem);
	border: 0.0625rem solid rgba(255, 255, 255, 0.18);
}

#about-section h2 {
	padding: 0;
	text-align: center;
	font-weight: 600;
	color: #ffffff;
	text-shadow: 0 6px 18px rgba(5, 26, 97, 0.45);
	font-style: normal;
	font-size: 2.4em;
	line-height: 1.15;
	margin: 0 auto 1rem;
	max-width: 38rem;
}

#about-section h3 {
	font-size: 1.2em;
	line-height: 1.5;
	padding: 0;
	margin: 0;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 4px 14px rgba(5, 26, 97, 0.4);
}

#about-section p {
	font-size: 1.15em;
	line-height: 1.8;
	padding: 0;
	margin: 0 auto;
	max-width: 38rem;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 4px 14px rgba(5, 26, 97, 0.4);
	letter-spacing: 0;
}

#about-section p:not(:last-child) {
\tmargin-bottom: 1.5rem;
}




@media (min-width: 900px) {
	#about-section {
		min-height: calc(100vh - 10rem);
	}
	.about-card {
		max-width: 48rem;
		width: min(90vw, 48rem);
	}

	#about-section p {
		font-size: clamp(1.05rem, 2vh, 1.2rem);
		padding: 0.6rem 0;
	}
}

@media (max-width: 838px) {	

	#practice-areas h2 {
		font-size: 1.2rem;
	}

	.practice-card {
		max-width: 16rem;
		border-radius: 0.6rem;
	}

	.practice-card h3 {
		font-size: clamp(0.95rem, 3.2vw, 1.05rem);
	}

	.practice-card p {
		font-size: clamp(0.85rem, 2.8vw, 0.98rem);
		line-height: 1.5;
	}

	.practice-card figure {
		border-radius: 0.4rem;
	}

	#about-section h2 {
		font-size: 1.2rem;
	}

	#about-section p {
		font-size: 1em;
		line-height: 1.6;
		margin: 0 auto;
	}

	#about-section p:not(:last-child) {
		margin-bottom: 1.5rem;
	}
	.site-header {
		flex-direction: column;
		text-align: center;
		padding: 0.25rem 0 0;
	}
	.header-inner {
		flex-direction: column;
		align-items: center;
		gap: 0.2rem;
		min-height: auto;
	}
	.header-nav {
		display: none;
	}
	.logoandh h1, .logoandh h2 {
		text-align: center;
		width: 100%;
	}
	.logoandh h2 {
		margin-top: 0.2rem;
	}
	.contact-details {
		display: none;
	}
	.contact-details-mobile {
		display: flex;
		gap: 0.5rem;
		padding-top: 0.35rem;
	}
	.logoandh h1,
	.logoandh h2,
	.contact-details-mobile a {
		line-height: 1;
	}
	.hamburger {
		display: inline-flex;
	}
	#hero-section h2 {
		font-size: clamp(1.4rem, 4.5vh, 2.4rem);
		line-height: 1.1;
	}
	#hero-section h3 {
		font-size: clamp(0.9rem, 2.8vh, 1.2rem);
		line-height: 1.35;
	}
	.cursive-text {
		font-size: 1em;
	}
	
	#hero-section {
		text-align: center;
		padding: calc(var(--header-height, 5rem) + 1vh) 5vw 3vh;
		min-height: 100vh;
	}

	@media (min-height: 740px) {
		#hero-section {
			padding: calc(var(--header-height, 5rem) + 0.5vh) 5vw 2vh;
		}

		.hero-media img {
			width: min(46vw, 26vh);
		}

		.hero-actions {
			margin-top: clamp(0.1rem, 0.8vh, 0.4rem);
		}
	}

	@media (min-height: 820px) {
		#hero-section h2 {
			font-size: clamp(1.6rem, 4.8vh, 2.6rem);
		}

		#hero-section h3 {
			font-size: clamp(1rem, 3vh, 1.35rem);
		}

		.hero-media img {
			width: min(48vw, 28vh);
		}

		.hero-actions .btn {
			max-width: clamp(13rem, 46vw, 16rem);
		}
	}

	@media (max-height: 700px) {
		#hero-section {
			padding: calc(var(--header-height, 5rem) + 0.5vh) 5vw 2vh;
		}

		#hero-section h2 {
			font-size: clamp(1.1rem, 4vh, 2.1rem);
		}

		#hero-section h3 {
			font-size: clamp(0.75rem, 2.4vh, 1.05rem);
		}

		.hero-media img {
			width: min(38vw, 18vh);
		}

		.hero-actions .btn {
			max-width: clamp(10.5rem, 36vw, 13rem);
		}
	}

	.hero-glass {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0 clamp(0.75rem, 2vh, 1.25rem);
		border-bottom: none;
	}

	.hero-content {
		align-items: center;
		align-self: stretch;
		max-width: 100%;
		padding-bottom: clamp(0.2rem, 0.8vh, 0.5rem);
		gap: clamp(0.5rem, 1.6vh, 0.9rem);
		background: rgba(255, 255, 255, 0.08);
		border: 0.0625rem solid rgba(255, 255, 255, 0.18);
		border-radius: 0.75rem;
		padding: clamp(0.6rem, 2vh, 1rem);
		backdrop-filter: blur(0.75rem);
		-webkit-backdrop-filter: blur(0.75rem);
		margin-top: 0;
	}

	.hero-actions {
		width: 100%;
		justify-content: center;
		margin-top: clamp(0.2rem, 1.2vh, 0.5rem);
	}

	.hero-actions .btn {
		width: 100%;
		max-width: clamp(12rem, 42vw, 15rem);
	}

	#hero-section h2,
	#hero-section h3 {
		text-align: center;
	}

	.hero-media {
		order: -1;
		justify-content: center;
		margin-bottom: -0.05em;
	margin-top: -0.05em;
	}

	.hero-media img {
		width: min(42vw, 24vh);
	}
	
	.practice-container {
		grid-template-columns: 1fr;
		width: 100%;
		margin: 0 auto;
		gap: 28px;
		padding: 0 6vw;
		margin-top: 2.5rem;
	}
	
	.btn {
		font-size: clamp(0.9375rem, 2.5vw, 1rem);
		padding: 0.9em 1.6em;
		letter-spacing: 0.08em;
	}
	
	#about-section {
		width: 100%;
		padding: 1.25rem calc(5vw + clamp(0.75rem, 2vh, 1.25rem));
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-glass {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 480px) {
	.logoandh h1 {
		font-size: 1.2rem;
		padding: 0.6rem 0 0.35rem;
	}
	.logoandh h2 {
		font-size: 0.7rem;
	}
	#hero-section h2 {
		font-size: clamp(1.1rem, 4.2vh, 1.6rem);
	}
	#hero-section h3 {
		font-size: clamp(0.75rem, 2.4vh, 1rem);
	}
	.hero-actions .btn {
		max-width: 100%;
		font-size: clamp(0.9375rem, 2.5vw, 0.95rem);
		padding: 0.75em 1.2em;
		letter-spacing: 0.08em;
	}
	.cursive-text {
		font-size: 1em;
	}
}

@media (max-width: 360px) {
	#hero-section {
		height: auto;
		padding: calc(var(--header-height, 5rem) + 1vh) 4vw 3vh;
		min-height: 100vh;
	}

	.hero-container {
		max-width: 90vw;
		padding: 0 10px;
	}

	#hero-section h2 {
		font-size: 1.7em;
		padding-top: 0;
	}

	.cursive-text {
		font-size: 1em;
		margin: 0;
	}

	#hero-section h3 {
		font-size: 1.05em;
	}

	.hero-media img {
		width: min(42vw, 18vh);
		max-width: 100%;
	}

	.hero-chevron {
		display: none !important;
	}

	#about-section {
		padding: 1.25rem 0;
	}

	.btn {
		font-size: 12px;
		padding: 8px 16px;
		margin: 10px;
	}

}

@media (max-width: 1200px) {
	.site-header {
		min-height: 4.5rem;
	}

	.header-inner {
		min-height: 4.5rem;
	}

	.hero-glass {
		grid-template-columns: 1fr;
		gap: 0;
	}

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

	.hero-media {
		justify-content: center;
	}

	.hero-media img {
		max-width: 100%;
	}

	.practice-container {
		grid-template-columns: repeat(2, 1fr);
		max-width: 90vw;
	}
}
@media (max-width: 800px) {
	.practice-container {
		grid-template-columns: 1fr;
		max-width: 98vw;
	}
}

.blog-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40vh;
	text-align: center;
	background: #000;
	width: 100%;
	padding: calc(var(--header-height, 5rem) + 4vh) 6vw 4vh;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}

.blog-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("images/hero-bkg.jpeg") center / cover no-repeat;
	z-index: 1;
}

.blog-hero .hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(8, 44, 153, 0.92) 0%, rgba(5, 26, 97, 0.95) 100%);
	z-index: 2;
}

.blog-hero .hero-container {
	width: 100%;
	max-width: 87.5rem;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

.blog-hero .hero-content {
	max-width: 40rem;
	margin: 0 auto;
}

.blog-hero h2 {
	font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.75rem;
}

.blog-hero p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
}

.blog-list {
	background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
	padding: 3rem 0;
	min-height: 50vh;
}

.blog-list .container {
	max-width: 70rem;
	margin: 0 auto;
	padding: 0 2vw;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr));
	gap: 1.5rem;
}

.blog-card {
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
	padding: 1.75rem;
}

.blog-card__meta {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 0.75rem;
}

.blog-card__title {
	font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #051A61;
	line-height: 1.3;
	margin-bottom: 0.75rem;
}

.blog-card__excerpt {
	font-size: 0.95rem;
	color: #444;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.blog-card__read-more {
	color: #082C99;
	font-weight: 500;
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
	
	.blog-hero {
		min-height: 30vh;
		padding: calc(var(--header-height, 5rem) + 2vh) 5vw 2vh;
	}
	
	.blog-card {
		border-radius: 0.5rem;
	}
	
	.blog-card__link {
		padding: 1.25rem;
	}
}







.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #082C99;
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

*:focus {
    outline: 3px solid #082C99;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid #082C99;
    outline-offset: 2px;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #082C99;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}




