﻿:root {
	--charcoal: #1c1c1e;
	--charcoal-2: #2d2d30;
	--brass: #b08d57;
	--brass-light: #f5ede0;
	--brass-glow: rgba(176,141,87,.15);
	--slate: #5a6070;
	--surface: #f9f7f4;
	--border: #e8e3dc;
	--white: #ffffff;
	--ff-display: 'Cormorant Garamond', Georgia, serif;
	--ff-body: 'DM Sans', sans-serif;
	--r-sm: 8px;
	--r-md: 16px;
	--r-lg: 24px;
	--r-xl: 40px;
}

html {
	scroll-behavior: smooth;
}

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	font-family: var(--ff-body);
	color: var(--charcoal);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff-display);
}

/* NAV */
.navbar {
	background: var(--charcoal);
	padding: 1.1rem 0;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

.navbar-brand {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 1.3rem;
	color: var(--white) !important;
	letter-spacing: .02em;
	display: flex;
	align-items: center;
	gap: .7rem;
}

	.navbar-brand img {
		height: 36px;
		border-radius: 4px;
		filter: brightness(0) invert(1);
		object-fit: contain;
	}

.nav-link {
	font-family: var(--ff-body);
	font-weight: 500;
	font-size: .82rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255,255,255,.6) !important;
	padding: .4rem .9rem !important;
	border-radius: 4px;
	transition: color .2s;
}

	.nav-link:hover {
		color: var(--brass) !important;
	}

.btn-nav {
	background: transparent;
	color: var(--brass) !important;
	border: 1px solid var(--brass);
	border-radius: 4px;
	padding: .45rem 1.2rem !important;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	transition: background .2s,color .2s;
	text-align: center;
}

	.btn-nav:hover {
		background: var(--brass);
		color: var(--charcoal) !important;
	}

/* HERO */
.hero {
	position: relative;
	min-height: 96vh;
	display: grid;
	grid-template-rows: 1fr auto;
	background: var(--charcoal);
	overflow: hidden;
}

.hero-img {
	position: absolute;
	inset: 0;	
	opacity: .22;
}
/* subtle ruled lines texture */
.hero-lines {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(255,255,255,.03) 79px,rgba(255,255,255,.03) 80px);
	pointer-events: none;
}

.hero-brass-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg,var(--brass),#d4a96a,var(--brass));
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	padding-bottom: 4.5rem;
}

.hero-rule {
	width: 48px;
	height: 2px;
	background: var(--brass);
	margin-bottom: 1.4rem;
}

.hero-eyebrow {
	font-family: var(--ff-body);
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: 1.2rem;
}

.hero h1 {
	font-size: clamp(3.2rem,7vw,6rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.05;
	margin-bottom: 1.8rem;
	max-width: 820px;
}

	.hero h1 em {
		font-style: italic;
		color: var(--brass);
	}

.hero-sub {
	font-size: 1.05rem;
	color: rgba(255,255,255,.55);
	font-weight: 300;
	max-width: 500px;
	line-height: 1.85;
	margin-bottom: 2.4rem;
}

.hero-btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-brass {
	background: var(--brass);
	color: var(--charcoal);
	border: none;
	border-radius: 4px;
	padding: .85rem 2rem;
	font-family: var(--ff-body);
	font-weight: 600;
	font-size: .85rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	transition: background .2s,transform .15s;
	box-shadow: 0 6px 24px var(--brass-glow);
}

	.btn-brass:hover {
		background: #c4a06a;
		transform: translateY(-2px);
		color: var(--charcoal);
	}

.btn-outline-brass {
	background: transparent;
	color: rgba(255,255,255,.8);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 4px;
	padding: .83rem 2rem;
	font-family: var(--ff-body);
	font-weight: 500;
	font-size: .85rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	transition: border-color .2s,color .2s,transform .15s;
}

	.btn-outline-brass:hover {
		border-color: var(--brass);
		color: var(--brass);
		transform: translateY(-2px);
	}
/* credential strip */
.cred-strip {
	background: var(--surface);
	border-top: 1px solid var(--border);
	position: relative;
	z-index: 3;
}

.cred-strip-inner {
	display: flex;
	align-items: stretch;
}

.cred-item {
	flex: 1;
	padding: 1.4rem 2rem;
	border-right: 1px solid var(--border);
	display: flex;
	align-items: center;
	gap: 1rem;
}

	.cred-item:last-child {
		border-right: none;
	}

.cred-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: 8px;
	background: var(--brass-light);
	color: var(--brass);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .9rem;
}

.cred-num {
	font-family: var(--ff-display);
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--charcoal);
	line-height: 1;
}

.cred-lbl {
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--slate);
	margin-top: .15rem;
}

/* SHARED */
.sec-pad {
	padding: 100px 0;
}

.sec-kicker {
	font-family: var(--ff-body);
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: .6rem;
	display: flex;
	align-items: center;
	gap: .6rem;
}

	.sec-kicker::after {
		content: '';
		flex: 0 0 20px;
		height: 1px;
		background: var(--brass);
	}

.sec-title {
	font-family: var(--ff-display);
	font-size: clamp(2.2rem,5vw,3.4rem);
	font-weight: 600;
	color: var(--charcoal);
	line-height: 1.12;
}

.sec-body {
	font-size: 1rem;
	color: var(--slate);
	font-weight: 300;
	max-width: 560px;
	line-height: 1.85;
}

/* SERVICES */
.svc-section {
	background: var(--surface);
}

.svc-card {
	background: var(--white);
	border: 1px solid var(--border);
	padding: 2rem;
	height: 100%;
	transition: border-color .25s,box-shadow .25s,transform .2s;
	position: relative;
}

	.svc-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--border);
		transition: background .3s;
	}

	.svc-card:hover::before {
		background: var(--brass);
	}

	.svc-card:hover {
		border-color: var(--border);
		box-shadow: 0 16px 48px rgba(28,28,30,.08);
		transform: translateY(-4px);
	}

.svc-num {
	font-family: var(--ff-display);
	font-size: 3rem;
	font-weight: 400;
	color: var(--border);
	line-height: 1;
	margin-bottom: .5rem;
	transition: color .25s;
}

.svc-card:hover .svc-num {
	color: var(--brass-light);
}

.svc-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: var(--brass-light);
	color: var(--brass);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	transition: background .25s,color .25s;
}

.svc-card:hover .svc-icon {
	background: var(--brass);
	color: var(--white);
}

.svc-card h5 {
	font-family: var(--ff-display);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: .5rem;
}

.svc-card p {
	font-size: .88rem;
	color: var(--slate);
	margin: 0;
	line-height: 1.75;
}

/* ABOUT */
.about-img {
	width: 100%;
	object-fit: cover;
	display: block;
	aspect-ratio: 3/4;
	box-shadow: 0 32px 72px rgba(28,28,30,.18);
}

.about-img-wrap {
	position: relative;
}

.about-year-badge {
	position: absolute;
	bottom: 2rem;
	left: -1.5rem;
	background: var(--brass);
	color: var(--charcoal);
	padding: 1.2rem 1.5rem;
	text-align: center;
	min-width: 100px;
	box-shadow: 0 12px 36px var(--brass-glow);
}

.ayb-num {
	font-family: var(--ff-display);
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1;
}

.ayb-lbl {
	font-family: var(--ff-body);
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .75;
	margin-top: .3rem;
}

.about-divider {
	width: 40px;
	height: 2px;
	background: var(--brass);
	margin: 1.5rem 0;
}

.feat-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

	.feat-list li {
		display: flex;
		align-items: flex-start;
		gap: .9rem;
		padding: .75rem 0;
		border-bottom: 1px solid var(--border);
	}

		.feat-list li:last-child {
			border-bottom: none;
		}

.feat-dot {
	width: 8px;
	height: 8px;
	min-width: 8px;
	border-radius: 50%;
	background: var(--brass);
	margin-top: .45rem;
}

.feat-list h6 {
	font-family: var(--ff-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: .15rem;
}

.feat-list p {
	font-size: .82rem;
	color: var(--slate);
	margin: 0;
}

.btn-dark-solid {
	background: var(--charcoal);
	color: var(--white);
	border: none;
	border-radius: 4px;
	padding: .85rem 1.8rem;
	font-family: var(--ff-body);
	font-weight: 600;
	font-size: .85rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	transition: background .2s,transform .15s;
}

	.btn-dark-solid:hover {
		background: var(--charcoal-2);
		transform: translateY(-1px);
		color: var(--white);
	}

/* TESTIMONIALS */
.testi-section {
	background: var(--charcoal);
	position: relative;
	overflow: hidden;
}

.testi-watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-family: var(--ff-display);
	font-size: 22rem;
	font-weight: 600;
	color: rgba(255,255,255,.02);
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
	line-height: 1;
}

.testi-section .sec-kicker {
	color: var(--brass);
}

	.testi-section .sec-kicker::after {
		background: var(--brass);
	}

.testi-section .sec-title {
	color: var(--white);
}

.testi-section .sec-body {
	color: rgba(255,255,255,.45);
}
/* featured quote */
.feature-quote {
	border-left: 3px solid var(--brass);
	padding: 2rem 2.5rem;
	background: rgba(176,141,87,.07);
	margin-bottom: 2rem;
}

.fq-text {
	font-family: var(--ff-display);
	font-size: clamp(1.4rem,2.5vw,2rem);
	font-style: italic;
	font-weight: 400;
	color: var(--white);
	line-height: 1.55;
	margin-bottom: 1.5rem;
}

.fq-author-name {
	font-family: var(--ff-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--brass);
}

.fq-author-role {
	font-size: .78rem;
	color: rgba(255,255,255,.45);
	font-family: var(--ff-body);
}

.fq-stars {
	color: var(--brass);
	font-size: .78rem;
	margin-bottom: .5rem;
}

.mini-q {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.09);
	padding: 1.6rem;
	height: 100%;
	transition: border-color .2s,background .2s;
}

	.mini-q:hover {
		background: rgba(255,255,255,.07);
		border-color: rgba(176,141,87,.35);
	}

.mq-stars {
	color: var(--brass);
	font-size: .75rem;
	margin-bottom: .8rem;
}

.mq-text {
	font-family: var(--ff-display);
	font-style: italic;
	font-size: 1rem;
	color: rgba(255,255,255,.75);
	line-height: 1.75;
	margin-bottom: 1.2rem;
}

.mq-name {
	font-family: var(--ff-display);
	font-size: .95rem;
	font-weight: 600;
	color: var(--white);
}

.mq-role {
	font-size: .75rem;
	color: rgba(255,255,255,.4);
	font-family: var(--ff-body);
}

/* CONTACT */
.contact-section {
	background: var(--surface);
}

.contact-card {
	background: var(--white);
	border: 1px solid var(--border);
	padding: 2.8rem;
	box-shadow: 0 16px 48px rgba(28,28,30,.07);
}

	.contact-card h4 {
		font-family: var(--ff-display);
		font-size: 1.7rem;
		font-weight: 600;
		color: var(--charcoal);
		margin-bottom: 1.6rem;
	}

.form-label {
	font-family: var(--ff-body);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--slate);
	margin-bottom: .4rem;
}

.form-control, .form-select {
	border: 1px solid var(--border);
	border-radius: 0;
	padding: .75rem 1rem;
	font-family: var(--ff-body);
	font-size: .92rem;
	color: var(--charcoal);
	background: var(--white);
	transition: border-color .2s,box-shadow .2s;
}

	.form-control:focus, .form-select:focus {
		border-color: var(--brass);
		box-shadow: 0 0 0 3px var(--brass-glow);
		outline: none;
	}

	.form-control::placeholder {
		color: #b0b8c4;
		font-style: italic;
	}

textarea.form-control {
	resize: vertical;
	min-height: 140px;
}

.btn-submit {
	background: var(--brass);
	color: var(--charcoal);
	border: none;
	padding: .85rem 2rem;
	font-family: var(--ff-body);
	font-weight: 600;
	font-size: .85rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	transition: background .2s,transform .15s;
	box-shadow: 0 4px 16px var(--brass-glow);
}

	.btn-submit:hover {
		background: #c4a06a;
		transform: translateY(-1px);
	}

.ci-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.2rem 0;
	border-bottom: 1px solid var(--border);
}

	.ci-row:last-of-type {
		border-bottom: none;
	}

.ci-ico {
	width: 42px;
	height: 42px;
	min-width: 42px;
	background: var(--brass-light);
	color: var(--brass);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .9rem;
}

.ci-lbl {
	font-family: var(--ff-body);
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--slate);
	margin-bottom: .2rem;
}

.ci-val {
	font-size: .9rem;
	color: var(--charcoal);
	margin: 0;
	line-height: 1.65;
}

.contact-photo {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 16/9;
	display: block;
	margin-top: auto;
}

/* FOOTER */
footer {
	background: var(--charcoal);
	padding: 1.8rem 0;
	border-top: 2px solid var(--brass);
}

.footer-copy {
	font-size: .8rem;
	color: rgba(255,255,255,.35);
	font-family: var(--ff-body);
}

	.footer-copy a {
		color: rgba(255,255,255,.5);
		text-decoration: none;
	}

		.footer-copy a:hover {
			color: var(--brass);
		}

.footer-social {
	display: flex;
	gap: .4rem;
}

	.footer-social a {
		width: 34px;
		height: 34px;
		border-radius: 3px;
		background: rgba(255,255,255,.06);
		color: rgba(255,255,255,.4);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: .8rem;
		text-decoration: none;
		transition: background .2s,color .2s;
	}

		.footer-social a:hover {
			background: var(--brass);
			color: var(--charcoal);
		}

/* ANIM */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.hero-rule {
	animation: fadeUp .5s ease both;
}

.hero-eyebrow {
	animation: fadeUp .5s .1s ease both;
}

.hero h1 {
	animation: fadeUp .6s .2s ease both;
}

.hero-sub {
	animation: fadeUp .6s .32s ease both;
}

.hero-btns {
	animation: fadeUp .6s .42s ease both;
}

@media(max-width:991.98px) {
	.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.about-year-badge {
		left: .5rem;
		bottom: .5rem;
	}
}

@media(max-width:767.98px) {
.hero-inner {
	padding: 3rem 1.5rem;
}
	.hero {
		min-height: 85vh;
	}

	.cred-strip-inner {
		flex-direction: column;
	}

	.cred-item {
		border-right: none;
		border-bottom: 1px solid var(--border);
	}

		.cred-item:last-child {
			border-bottom: none;
		}

	.sec-pad {
		padding: 64px 0;
	}

	.about-year-badge {
		display: none;
	}
}
