/* Lanticse-Camello Law Office — editorial stylesheet */

:root {
	--bg: #faf7f2;
	--bg-tint: #f3eee5;
	--ink: #161f2a;
	--muted: #5d6873;
	--bronze: #97783d;
	--line: rgba(22, 31, 42, 0.16);
	--navy: #11202f;
	--navy-line: rgba(250, 247, 242, 0.18);
	--cream-soft: rgba(250, 247, 242, 0.82);
	--serif: "Fraunces", Georgia, serif;
	--sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--header-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
	font-family: var(--sans);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
	font-family: var(--serif);
	font-weight: 480;
	line-height: 1.08;
	letter-spacing: -0.015em;
}

a { color: var(--ink); text-decoration: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: var(--bg);
	padding: 0.75rem 1.25rem;
	z-index: 200;
}
.skip-link:focus { left: 0; }

.eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bronze);
}

/* ---------- Header ---------- */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	background: rgba(250, 247, 242, 0.88);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }

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

.brand { display: flex; align-items: baseline; gap: 0.65rem; }
.brand img { width: 26px; height: auto; align-self: center; }
.brand-name {
	font-family: var(--serif);
	font-size: 1.0625rem;
	font-weight: 520;
	letter-spacing: -0.01em;
}
.brand-name em {
	font-style: normal;
	font-family: var(--sans);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--bronze);
	margin-left: 0.4rem;
}

.site-nav { display: flex; align-items: center; gap: 2.25rem; }
.site-nav ul { display: flex; gap: 1.9rem; list-style: none; }
.site-nav ul a {
	font-size: 0.9rem;
	font-weight: 500;
	background-image: linear-gradient(var(--ink), var(--ink));
	background-repeat: no-repeat;
	background-size: 0 1px;
	background-position: 0 100%;
	padding-bottom: 3px;
	transition: background-size 0.25s ease;
}
.site-nav ul a:hover { background-size: 100% 1px; }

.lang-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: var(--muted);
}
.lang-toggle button {
	font-family: var(--sans);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--ink);
	background: none;
	border: 0;
	padding: 0.25rem 0;
	cursor: pointer;
	opacity: 0.4;
	border-bottom: 1px solid transparent;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}
.lang-toggle button:hover { opacity: 0.75; }
.lang-toggle button[aria-pressed="true"] {
	opacity: 1;
	border-bottom-color: var(--bronze);
}

.nav-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	cursor: pointer;
}
.nav-burger span {
	display: block;
	width: 26px;
	height: 1.5px;
	margin-inline: auto;
	background: var(--ink);
	transition: transform 0.25s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero { padding-top: calc(var(--header-h) + clamp(3.5rem, 9vh, 6.5rem)); }

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1.75rem;
}
.hero-badges span {
	display: inline-block;
	border: 1px solid rgba(151, 120, 61, 0.5);
	border-radius: 999px;
	padding: 0.45rem 1.1rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bronze);
}

.hero h1 {
	font-size: clamp(2.75rem, 7.2vw, 5.5rem);
	max-width: 16ch;
	margin-bottom: 1.75rem;
}

.hero-lede {
	max-width: 38rem;
	font-size: 1.1875rem;
	color: var(--muted);
	margin-bottom: 2.5rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
	margin-bottom: clamp(3rem, 8vh, 5rem);
}

.btn {
	display: inline-block;
	background: var(--ink);
	color: var(--bg);
	font-size: 0.9375rem;
	font-weight: 500;
	padding: 0.95rem 2.1rem;
	border-radius: 999px;
	transition: background 0.2s ease;
}
.btn:hover { background: var(--navy); }

.arrow-link {
	font-size: 0.9375rem;
	font-weight: 500;
	border-bottom: 1px solid var(--line);
	padding-bottom: 3px;
	transition: border-color 0.2s ease;
}
.arrow-link::after { content: "\2009\2192"; }
.arrow-link:hover { border-color: var(--ink); }

.hero-meta {
	display: grid;
	grid-template-columns: repeat(3, auto);
	justify-content: start;
	column-gap: clamp(2.5rem, 7vw, 6rem);
	row-gap: 1.25rem;
	border-top: 1px solid var(--line);
	padding: 1.5rem 0 2.75rem;
}
.hero-meta dt {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bronze);
	margin-bottom: 0.2rem;
}
.hero-meta dd { font-size: 0.95rem; }

.hero-figure { overflow: hidden; }
.hero-figure img {
	width: 100%;
	height: clamp(300px, 52vh, 560px);
	object-fit: cover;
	object-position: center 58%;
}

/* ---------- Sections ---------- */

.section { padding: clamp(5rem, 11vh, 8rem) 0; }

.section h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1.5rem;
}

.section-grid {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 2rem 4rem;
	align-items: start;
}
.section-label { padding-top: 0.6rem; }
.section-body { max-width: 44rem; }
.section-body p + p { margin-top: 1.1rem; }
.section-lede { font-size: 1.125rem; color: var(--muted); }

.about-body { max-width: 54rem; }
.about-body h2 { max-width: 22ch; }
.about-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.75rem;
	margin-top: 0.5rem;
}
.about-cols p + p { margin-top: 0; }
.about-note {
	font-family: var(--serif);
	font-size: 1.35rem;
	line-height: 1.5;
	letter-spacing: -0.01em;
	max-width: 36rem;
	border-top: 1px solid var(--line);
	margin-top: 2.75rem;
	padding-top: 1.75rem;
}

/* ---------- Attorney (the one dark moment) ---------- */

.section-dark {
	background: var(--navy);
	color: var(--cream-soft);
}
.section-dark .eyebrow { color: #c9ac6e; }
.section-dark h2 { color: var(--bg); }

.attorney-grid {
	display: grid;
	grid-template-columns: minmax(0, 400px) 1fr;
	gap: 4.5rem;
	align-items: center;
}
.attorney-figure img { width: 100%; border-radius: 2px; }

.attorney-body .eyebrow { margin-bottom: 1.25rem; }
.attorney-body h2 { margin-bottom: 0.6rem; }
.attorney-body .role {
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c9ac6e;
	margin-bottom: 1.5rem;
}
.attorney-body p + p { margin-top: 1.1rem; }

.creds { list-style: none; margin-top: 2rem; }
.creds li {
	border-top: 1px solid var(--navy-line);
	padding: 0.7rem 0;
	font-size: 0.92rem;
}
.creds li:last-child { border-bottom: 1px solid var(--navy-line); }

/* ---------- Services (ruled index) ---------- */

.section-head { margin-bottom: 3.5rem; }

.services-list { list-style: none; border-top: 1px solid var(--line); }
.services-list li {
	display: grid;
	grid-template-columns: 64px 5fr 6fr;
	gap: 1rem 2.5rem;
	align-items: baseline;
	border-bottom: 1px solid var(--line);
	padding: 1.6rem 0.75rem;
	margin: 0 -0.75rem;
	transition: background 0.2s ease;
}
.services-list li:hover { background: var(--bg-tint); }
.services-list span {
	font-family: var(--serif);
	font-size: 0.9rem;
	color: var(--bronze);
}
.services-list h3 { font-size: 1.35rem; font-weight: 500; }
.services-list p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Contact ---------- */

.contact-grid {
	display: grid;
	grid-template-columns: 5fr 6fr;
	gap: 4.5rem;
	align-items: start;
}

.contact-list div {
	border-top: 1px solid var(--line);
	padding: 1.1rem 0;
}
.contact-list div:last-child { border-bottom: 1px solid var(--line); }
.contact-list dt {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bronze);
	margin-bottom: 0.25rem;
}
.contact-list dd { font-size: 1rem; }
.contact-list a {
	border-bottom: 1px solid var(--line);
	padding-bottom: 2px;
	transition: border-color 0.2s ease;
}
.contact-list a:hover { border-color: var(--ink); }

.map-wrap {
	border: 1px solid var(--line);
	border-radius: 2px;
	overflow: hidden;
}
.map-wrap iframe {
	display: block;
	width: 100%;
	height: 440px;
	border: 0;
	filter: grayscale(1) contrast(1.04);
	transition: filter 0.35s ease;
}
.map-wrap:hover iframe { filter: none; }

/* ---------- Footer ---------- */

.site-footer {
	border-top: 1px solid var(--line);
	padding: 3rem 0;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.75rem;
}
.footer-tagline { font-family: var(--serif); font-size: 1.05rem; }
.footer-copy { font-size: 0.82rem; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
	.section-grid { grid-template-columns: 1fr; gap: 1.25rem; }
	.section-label { padding-top: 0; }
	.about-cols { grid-template-columns: 1fr; gap: 1.1rem; }
	.about-note { font-size: 1.2rem; }

	.attorney-grid { grid-template-columns: 1fr; gap: 2.75rem; }
	.attorney-figure img { max-width: 340px; }

	.services-list li {
		grid-template-columns: 48px 1fr;
		grid-template-rows: auto auto;
	}
	.services-list p { grid-column: 2; }

	.contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 720px) {
	.nav-burger { display: flex; }
	.brand-name em { display: none; }

	.site-nav {
		position: absolute;
		top: var(--header-h);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.4rem;
		background: var(--bg);
		border-bottom: 1px solid var(--line);
		padding: 1.75rem 4% 2rem;
		display: none;
	}
	.site-nav.open { display: flex; }
	.site-nav ul { flex-direction: column; gap: 1.1rem; width: 100%; }
	.site-nav ul a { font-size: 1.05rem; }

	.hero-meta { grid-template-columns: 1fr; }
	.hero-figure img { height: 280px; }
	.map-wrap iframe { height: 320px; }
	.footer-inner { flex-direction: column; }
}
