/* Lyallpur Lawyer's Lane — main styles */
:root {
	--navy: #0f2744;
	--navy-dark: #0a1f35;
	--navy-light: #1a3a5c;
	--gold: #c9a227;
	--gold-light: #e0bc4a;
	--cream: #f8f6f1;
	--text: #2c3e50;
	--text-muted: #5a6c7d;
	--white: #ffffff;
	--shadow: 0 4px 24px rgba(15, 39, 68, 0.12);
	--radius: 6px;
	--font-heading: "Cormorant Garamond", Georgia, serif;
	--font-body: "Source Sans 3", system-ui, sans-serif;
	--max-width: 1200px;
	--header-height: 80px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text);
	background: var(--white);
}

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

a {
	color: var(--navy);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

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

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	color: var(--navy);
	line-height: 1.2;
	font-weight: 600;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.5rem; }

.container {
	width: min(100% - 2rem, var(--max-width));
	margin-inline: auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: var(--shadow);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
	gap: 1.5rem;
}

.site-branding a {
	text-decoration: none;
	color: var(--navy);
}

.site-title {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
}

.site-tagline {
	font-size: 0.75rem;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0.15rem 0 0;
}

.nav-menu {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.25rem 1.5rem;
}

.nav-menu a {
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--navy);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
	color: var(--gold);
}

.header-cta .btn {
	padding: 0.6rem 1.25rem;
	font-size: 0.9rem;
}

.menu-toggle {
	display: none;
	background: none;
	border: 2px solid var(--navy);
	color: var(--navy);
	padding: 0.5rem 0.75rem;
	cursor: pointer;
	font-family: inherit;
	font-weight: 600;
	border-radius: var(--radius);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.85rem 1.75rem;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
	background: var(--gold);
	color: var(--navy-dark);
	border-color: var(--gold);
}

.btn-primary:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
	color: var(--navy-dark);
}

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

.btn-outline:hover {
	background: var(--white);
	color: var(--navy);
}

.btn-navy {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

.btn-navy:hover {
	background: var(--navy-light);
	border-color: var(--navy-light);
	color: var(--white);
}

/* Hero */
.hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	background: var(--navy-dark);
	color: var(--white);
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(10, 31, 53, 0.92) 0%, rgba(15, 39, 68, 0.75) 55%, rgba(15, 39, 68, 0.5) 100%);
}

.hero .container {
	position: relative;
	z-index: 1;
	padding-block: 4rem;
}

.hero-badge {
	display: inline-block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gold);
	margin-bottom: 1rem;
	font-weight: 600;
}

.hero h1 {
	color: var(--white);
	margin: 0 0 1rem;
	max-width: 14ch;
}

.hero-lead {
	font-size: 1.2rem;
	max-width: 42rem;
	opacity: 0.95;
	margin-bottom: 2rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 2rem;
	color: var(--gold);
}

.hero-stat span {
	font-size: 0.9rem;
	opacity: 0.85;
}

/* Sections */
.section {
	padding: 5rem 0;
}

.section-alt {
	background: var(--cream);
}

.section-header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 3rem;
}

.section-header p {
	color: var(--text-muted);
	margin: 0.75rem 0 0;
}

.section-label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gold);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

/* Two column */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.split-image {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.split-image img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

/* Practice cards */
.practice-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.practice-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.2s, box-shadow 0.2s;
}

.practice-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(15, 39, 68, 0.18);
}

.practice-card img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
}

.practice-card-body {
	padding: 1.5rem;
}

.practice-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
}

.practice-card p {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.practice-card a {
	font-weight: 600;
	text-decoration: none;
	color: var(--gold);
}

/* Clients */
.container > .client-list {
	margin-top: 1.5rem;
}

.client-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.client-list li {
	background: var(--white);
	padding: 1.25rem 1.5rem;
	border-radius: var(--radius);
	border-left: 4px solid var(--gold);
	box-shadow: var(--shadow);
	font-weight: 500;
}

/* CTA band */
.cta-band {
	background: var(--navy);
	color: var(--white);
	text-align: center;
	padding: 4rem 2rem;
}

.cta-band h2 {
	color: var(--white);
	margin: 0 0 0.75rem;
}

.cta-band p {
	opacity: 0.9;
	max-width: 36rem;
	margin: 0 auto 1.5rem;
}

/* Page header */
.page-hero {
	background: var(--navy);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
}

.page-hero h1 {
	color: var(--white);
	margin: 0;
}

.page-hero .breadcrumb {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	opacity: 0.8;
}

/* Content prose */
.prose {
	max-width: 48rem;
}

.prose-wide {
	max-width: 56rem;
}

.prose p,
.prose ul {
	margin: 0 0 1.25rem;
}

.prose h2 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

.prose h3 {
	margin-top: 2rem;
}

/* Contact */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-card {
	background: var(--cream);
	padding: 2rem;
	border-radius: var(--radius);
}

.contact-card h3 {
	margin-top: 0;
}

.contact-card a {
	font-weight: 500;
}

.contact-detail {
	margin-bottom: 1rem;
}

.contact-detail strong {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	margin-bottom: 0.25rem;
}

/* Footer */
.site-footer {
	background: var(--navy-dark);
	color: rgba(255, 255, 255, 0.85);
	padding: 3rem 0 1.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.site-footer h4 {
	color: var(--gold);
	font-family: var(--font-body);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 1rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--gold);
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 0.5rem;
}

.footer-bottom {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 0.9rem;
	text-align: center;
	opacity: 0.75;
}

/* Area detail blocks */
.area-block {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 2.5rem;
	align-items: start;
	margin-bottom: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid rgba(15, 39, 68, 0.1);
}

.area-block:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.area-block img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	aspect-ratio: 4/3;
	object-fit: cover;
	width: 100%;
}

/* Values grid */
.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
}

.value-card {
	padding: 1.75rem;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border-top: 3px solid var(--gold);
}

.value-card h3 {
	margin-top: 0;
	font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 900px) {
	.menu-toggle {
		display: block;
	}

	.main-navigation {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		padding: 1rem;
		box-shadow: var(--shadow);
	}

	.main-navigation.is-open {
		display: block;
	}

	.nav-menu {
		flex-direction: column;
	}

	.header-cta {
		display: none;
	}

	.split,
	.contact-grid,
	.area-block,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
	}

	.hero-stats {
		gap: 1.5rem;
	}
}
