﻿:root {
	--ink: #0e1812;
	--ink-2: #1c3028;
	--coral: #d95f3b;
	--coral-h: #c45230;
	--coral-glow: rgba(217,95,59,.15);
	--coral-bg: rgba(217,95,59,.07);
	--cream: #faf7f1;
	--sage: #3d5e4a;
	--sage-light: #eaf0eb;
	--stone: #7a8a82;
	--border: #e2ddd6;
	--white: #ffffff;
	--ff-display: 'Fraunces', Georgia, serif;
	--ff-body: 'Figtree', sans-serif;
}

html {
	scroll-behavior: smooth;
}

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	font-family: var(--ff-body);
	color: var(--ink);
	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(--ink);
	padding: 1.1rem 0;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

.navbar-brand {
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 1.3rem;
	color: var(--white) !important;
	letter-spacing: .02em;
	display: flex;
	align-items: center;
	gap: .7rem;
}

.nav-logo {
	max-width: 290px;
	height: auto;
}

.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,.55) !important;
	padding: .4rem .9rem !important;
	border-radius: 4px;
	transition: color .2s;
}

	.nav-link:hover {
		color: var(--coral) !important;
	}

.btn-nav {
	background: transparent;
	color: var(--coral) !important;
	border: 1px solid var(--coral);
	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;
}

	.btn-nav:hover {
		background: var(--coral);
		color: var(--white) !important;
	}

/* ── HERO ── */
.hero {
	position: relative;
	min-height: 96vh;
	display: grid;
	grid-template-rows: 1fr auto;
	overflow: hidden;
	background: var(--ink);
}

/* diagonal photo panel — right half */
.hero-photo-panel {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 48%;
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
	background: var(--sage-light);
	overflow: hidden;
}

	.hero-photo-panel img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		opacity: .85;
	}

	/* dark gradient fade into left side */
	.hero-photo-panel::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(100deg, var(--ink) 0%, transparent 40%);
	}

/* decorative ring */
.hero-ring {
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	border: 1px solid rgba(217,95,59,.18);
	top: 50%;
	right: 28%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 1;
}

.hero-ring-2 {
	width: 320px;
	height: 320px;
	border-color: rgba(217,95,59,.08);
	right: 31%;
}

/* subtle horizontal rule texture */
.hero-texture {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient( 0deg, transparent, transparent 79px, rgba(255,255,255,.025) 79px, rgba(255,255,255,.025) 80px );
	pointer-events: none;
	z-index: 1;
}

.hero-bottom-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--coral), #e8845e, var(--coral));
	z-index: 5;
}

.hero-inner {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	padding-bottom: 4.5rem;
}

.hero-eyebrow {
	font-family: var(--ff-body);
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--coral);
	margin-bottom: 1.4rem;
	display: flex;
	align-items: center;
	gap: .7rem;
}

	.hero-eyebrow::before {
		content: '';
		width: 28px;
		height: 1.5px;
		background: var(--coral);
		flex-shrink: 0;
	}

.hero h1 {
	font-size: clamp(3.2rem, 6.5vw, 5.8rem);
	font-weight: 500;
	color: var(--white);
	line-height: 1.04;
	margin-bottom: 1.8rem;
	max-width: 680px;
}

	.hero h1 em {
		font-style: italic;
		color: var(--coral);
	}

.hero-sub {
	font-size: 1rem;
	color: rgba(255,255,255,.5);
	font-weight: 300;
	max-width: 460px;
	line-height: 1.85;
	margin-bottom: 2.4rem;
}

.hero-btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-coral {
	background: var(--coral);
	color: var(--white);
	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(--coral-glow);
}

	.btn-coral:hover {
		background: var(--coral-h);
		transform: translateY(-2px);
		color: var(--white);
	}

.btn-outline-coral {
	background: transparent;
	color: rgba(255,255,255,.75);
	border: 1px solid rgba(255,255,255,.22);
	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-coral:hover {
		border-color: var(--coral);
		color: var(--coral);
		transform: translateY(-2px);
	}

/* ── CRED STRIP ── */
.cred-strip {
	background: var(--cream);
	border-top: 1px solid var(--border);
	position: relative;
	z-index: 4;
}

.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(--coral-bg);
	color: var(--coral);
	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(--ink);
	line-height: 1;
}

.cred-lbl {
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--stone);
	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(--coral);
	margin-bottom: .6rem;
	display: flex;
	align-items: center;
	gap: .6rem;
}

	.sec-kicker::after {
		content: '';
		flex: 0 0 20px;
		height: 1px;
		background: var(--coral);
	}

.sec-title {
	font-family: var(--ff-display);
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.1;
}

	.sec-title em {
		font-style: italic;
		color: var(--coral);
	}

.sec-body {
	font-size: 1rem;
	color: var(--stone);
	font-weight: 300;
	max-width: 560px;
	line-height: 1.85;
}

/* ── SERVICES ── */
.svc-section {
	background: var(--cream);
}

.svc-card {
	background: var(--white);
	border: 1px solid var(--border);
	padding: 2rem;
	height: 100%;
	position: relative;
	transition: border-color .25s, box-shadow .25s, transform .2s;
}

	.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(--coral);
	}

	.svc-card:hover {
		box-shadow: 0 16px 48px rgba(14,24,18,.08);
		transform: translateY(-4px);
	}

.svc-num {
	font-family: var(--ff-display);
	font-size: 3rem;
	font-weight: 300;
	color: var(--border);
	line-height: 1;
	margin-bottom: .5rem;
	transition: color .25s;
}

.svc-card:hover .svc-num {
	color: var(--coral-bg);
}

.svc-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: var(--coral-bg);
	color: var(--coral);
	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(--coral);
	color: var(--white);
}

.svc-card h5 {
	font-family: var(--ff-display);
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: .5rem;
}

.svc-card p {
	font-size: .88rem;
	color: var(--stone);
	margin: 0;
	line-height: 1.75;
}

/* ── ABOUT ── */
.about-section {
	background: var(--white);
}

.about-img {
	width: 100%;
	object-fit: cover;
	display: block;
	aspect-ratio: 3/4;
	box-shadow: 0 32px 72px rgba(14,24,18,.15);
}

.about-img-wrap {
	position: relative;
}

.about-year-badge {
	position: absolute;
	bottom: 2rem;
	left: -1.5rem;
	background: var(--coral);
	color: var(--white);
	padding: 1.2rem 1.5rem;
	text-align: center;
	min-width: 100px;
	box-shadow: 0 12px 36px var(--coral-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: .85;
	margin-top: .3rem;
}

.about-divider {
	width: 40px;
	height: 2px;
	background: var(--coral);
	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(--coral);
	margin-top: .45rem;
}

.feat-list h6 {
	font-family: var(--ff-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: .15rem;
}

.feat-list p {
	font-size: .82rem;
	color: var(--stone);
	margin: 0;
}

.btn-dark-solid {
	background: var(--ink);
	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(--ink-2);
		transform: translateY(-1px);
		color: var(--white);
	}

/* ── TESTIMONIALS ── */
.testi-section {
	background: var(--ink);
	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,.022);
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

.testi-section .sec-kicker {
	color: var(--coral);
}

	.testi-section .sec-kicker::after {
		background: var(--coral);
	}

.testi-section .sec-title {
	color: var(--white);
}

.testi-section .sec-body {
	color: rgba(255,255,255,.4);
}

/* ── CONTACT ── */
.contact-section {
	background: var(--cream);
}

.contact-card {
	background: var(--white);
	border: 1px solid var(--border);
	padding: 2.8rem;
	box-shadow: 0 16px 48px rgba(14,24,18,.06);
}

	.contact-card h4 {
		font-family: var(--ff-display);
		font-size: 1.7rem;
		font-weight: 500;
		color: var(--ink);
		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(--stone);
	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(--ink);
	background: var(--white);
	transition: border-color .2s, box-shadow .2s;
}

	.form-control:focus, .form-select:focus {
		border-color: var(--coral);
		box-shadow: 0 0 0 3px var(--coral-glow);
		outline: none;
	}

	.form-control::placeholder {
		color: #b0bab6;
		font-style: italic;
	}

textarea.form-control {
	resize: vertical;
	min-height: 140px;
}

.btn-submit {
	background: var(--coral);
	color: var(--white);
	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(--coral-glow);
}

	.btn-submit:hover {
		background: var(--coral-h);
		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(--coral-bg);
	color: var(--coral);
	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(--stone);
	margin-bottom: .2rem;
}

.ci-val {
	font-size: .9rem;
	color: var(--ink);
	margin: 0;
	line-height: 1.65;
}

/* ── FOOTER ── */
footer {
	background: var(--ink);
	padding: 1.8rem 0;
	border-top: 2px solid var(--coral);
}

.footer-copy {
	font-size: .8rem;
	color: rgba(255,255,255,.3);
	font-family: var(--ff-body);
}

	.footer-copy a {
		color: rgba(255,255,255,.45);
		text-decoration: none;
	}

		.footer-copy a:hover {
			color: var(--coral);
		}

.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,.35);
		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(--coral);
			color: var(--white);
		}

/* ── SCROLL REVEAL ── */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .65s ease, transform .65s ease;
}

	.reveal.visible {
		opacity: 1;
		transform: translateY(0);
	}

.reveal-delay-1 {
	transition-delay: .12s;
}

.reveal-delay-2 {
	transition-delay: .24s;
}

.reveal-delay-3 {
	transition-delay: .36s;
}

/* ── HERO ANIMATIONS ── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-eyebrow {
	animation: fadeUp .5s ease both;
}

.hero h1 {
	animation: fadeUp .6s .12s ease both;
}

.hero-sub {
	animation: fadeUp .55s .24s ease both;
}

.hero-btns {
	animation: fadeUp .55s .36s ease both;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
	.hero-photo-panel {
		display: none;
	}

	.hero {
		min-height: auto;
	}

	.hero-inner {
		padding: 80px 0 100px;
	}

	.about-year-badge {
		left: .5rem;
		bottom: .5rem;
	}
}

@media (max-width: 767.98px) {
	.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;
	}
}
