/***** VARS *****/
:root {
  --primary: #000000;
  --secondary: #666666;
  --primaryshade: #2b2b2b;
  --secondaryshade: #AAAAAA;
  --accent: #666666;
  --page-gutter: 2rem;
}

/* ----- FONTS ----- */
@font-face {
    font-family: 'FuturaBold';
    src: url('../fonts/futura_condensed_extra_bold-webfont.woff2') format('woff2'),
         url('../fonts/futura_condensed_extra_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaCondensed';
    src: url('../fonts/futura_condensed_medium-webfont.woff2') format('woff2'),
         url('../fonts/futura_condensed_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaThin';
    src: url('../fonts/helveticaneue-thin-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaCondensedBold';
    src: url('../fonts/helveticaneue-condensedbold-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue-condensedbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ----- GENERIC STYLING ----- */
html
{
	position: relative;
	min-height: 100%;
	font-size: 15px;
}

@media (min-width: 768px) { html { font-size: 15px; } }
@media (min-width: 992px) { html { font-size: 16px; } }
@media (min-width: 1200px) { html { font-size: 16px; } }

body
{
	line-height: 1.5;
	font-size: 1rem;
	background: white;
    font-family: 'HelveticaThin', sans-serif;
	color: black;
	margin: 0;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
	padding-left: var(--page-gutter);
	padding-right: var(--page-gutter);
}

@media (min-width: 768px) {
	:root {
		--page-gutter: 1.25rem;
	}
}

h1 
{
	font-family: 'HelveticaCondensedBold', sans-serif;
	font-weight: 400;
	color: var(--primary);
	margin-bottom: 20px;
	font-size: 2.75rem;
}

h2, h3, h4, h5, h6
{
	font-family: 'HelveticaCondensedBold', sans-serif;
}

.btn-gold {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: var(--secondary);
	color: var(--primary);
	font-weight: 600;
	padding: 1rem 2rem;
	border: none;
	border-radius: 0;
	transition: background .2s;
	text-decoration: none;
}

.btn-gold:hover { 
	background: var(--secondaryshade); 
	color: var(--primary); 
}

.btn-outline-white {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	border: 2px solid #fff;
	color: #fff;
	font-weight: 600;
	padding: 1rem 2rem;
	border-radius: 0;
	background: transparent;
	transition: background .2s, color .2s;
	text-decoration: none;
}

.btn-outline-white:hover { 
	background: #fff; 
	color: var(--primary); 
}

/* Quote CTA — light outline style, distinct from .btn-gold */
.btn-quote-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	background: #fff;
	color: var(--primary);
	border: 2px solid var(--primary);
	font-weight: 600;
	padding: 0.65rem 1.15rem;
	border-radius: 10px;
	text-decoration: none;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s;
	margin-top: 30px;
}

.btn-quote-cta:hover {
	background-color: var(--secondaryshade);
	color: var(--primary);
}

.btn-quote-cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	background: transparent;
	color: var(--primary);
	transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.btn-quote-cta-icon svg {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
}

.block 
{
	display: block;
}

main
{
	padding-top: 100px;
	padding-bottom: 40px;
}

@media (min-width: 992px) { main { padding-top: 60px; } }

.gap
{
	padding-bottom: 50px
}

#intro
{
	padding-bottom: 50px;
}

/* ----- HEADER ---- */
header {
	background: var(--primary);
    color: white;
	padding: 10px 20px;
}

header .nav-logo {
	max-width: 200px;
}

header .nav-link {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	padding: .5rem 0;
	transition: color .2s;
}

header .nav-link:hover, 
header .nav-link.show,
header .nav-link.active {	
	color: var(--secondary); 
}

header .nav-link:focus { 
	box-shadow: none;
}

header .dropdown-menu {
	background: var(--primaryshade);
	border: none;
	border-radius: 0;
	min-width: 12rem;
	padding: .5rem 0;
	box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

header .dropdown-item {
	color: #fff;
	font-size: .875rem;
	transition: background .2s, color .2s;
}

header .dropdown-item:hover {
	background: var(--secondary);
	color: var(--primary);
}

.sisterlink {
	padding:.4rem .7rem;
	border-radius:999px;
	font-size:.78rem;
	font-weight:600;
	line-height:1.1;
}

.social-icon {
	color: #fff; 
	transition: color .2s; 
	line-height: 0; 
}

.social-icon:hover { 
	color: var(--secondary); 
}

.social-icon svg { 
	width: 1.25rem; 
	height: 1.25rem; 
}

.header-search {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
	font-size: .875rem;
	padding: .375rem .75rem;
	border-radius: 20px;
	width: 8rem;
	transition: width .3s, border-color .3s;
	outline: none;
}

.header-search::placeholder { 
	color: rgba(255,255,255,.6); 
}

.header-search:focus {
	width: 10rem;
	border-color: var(--secondary);
	background: rgba(255,255,255,.1);
	box-shadow: none;
	color: #fff;
}

.search-wrap { 
	position: relative; 
}

.search-wrap svg {
	position: absolute;
	right: .5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
	height: 1rem;
	color: rgba(255,255,255,.6);
	pointer-events: none;
}

/***** HERO *****/
.hero {
	position: relative;
	height: 600px;
	overflow: hidden;
}

.hero.small {	
    height: 300px;
}

.hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		var(--hero-overlay-start, rgba(0, 0, 0, .9)) 0%,
		var(--hero-overlay-mid, rgba(0, 0, 0, .7)) 50%,
		var(--hero-overlay-end, transparent) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	align-items: center;
}

.small .hero-content {
	text-align: center;
}

.hero-eyebrow {
	display: inline-block;
	font-family: 'HelveticaCondensedBold', sans-serif;
	color: var(--secondary);
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-size: .875rem;
	margin-bottom: 1rem;
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 400;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

.hero p { 
	color: rgba(255,255,255,.9); 
	font-size: 1.125rem; 
	line-height: 1.7; 
	margin-bottom: 2rem; 
}

/***** HOME *****/
.about-section { 
	padding: 5rem 0; 
	background: #fff; 
}

.section-eyebrow {
	font-family: 'HelveticaCondensedBold', sans-serif;
	color: var(--accent);
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-size: .875rem;
}

.section-heading {
	font-weight: 700;
	color: var(--primary);
	margin-top: .75rem;
	margin-bottom: 1.5rem;
}

.quote-box { 
	background: var(--primary); 
	padding: 2.5rem; 
}

.quote-box h3 { 
	color: #fff; 
	font-weight: 700; 
	margin-bottom: .75rem; 
	font-size: 1.5rem; 
}

.quote-box p { 
	color: rgba(255,255,255,.8); 
	margin-bottom: 1.5rem; 
}

.testimonial-ticker { 
	background: #f9fafb; 
	padding: 3rem 0; 
	overflow: hidden; 
}

.ticker-track {
	display: flex;
	gap: 3rem;
	width: max-content;
	animation: ticker 45s linear infinite;
}

@keyframes ticker {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.ticker-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
	padding: 0 2rem;
}
 
.ticker-item svg { 
	width: 2.5rem; 
	height: 2.5rem; 
	color: var(--accent); 
	flex-shrink: 0; 
}

.ticker-item p { 
	color: #374151; 
	font-style: italic; 
	font-size: 1.125rem; 
	white-space: nowrap; 
	margin: 0; 
}

.ticker-item span { 
	color: var(--primary); 
	font-weight: 600; 
	white-space: nowrap; 
}

.services-section { 
	padding: 5rem 0 5rem; 
	background: #fff; 
}

.service-card {
	background: #fff;
	border: 2px solid #f3f4f6;
	padding: 2rem;
	transition: border-color .3s, transform .3s, box-shadow .3s;
	height: 100%;
}

.service-card:hover {
	border-color: var(--accent);
	transform: translateY(-.5rem);
	box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.service-icon {
	width: 4rem;
	height: 4rem;
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: background .3s;
}

.service-card:hover .service-icon { 
	background: var(--accent); 
}

.service-icon svg { 
	width: 2rem; 
	height: 2rem; 
	color: #fff; 
}

.service-card h3 {
	font-size: 1.25rem;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: .75rem;
}

.service-card p {
	color: #4b5563; 
	margin-bottom: 1rem;
}

.learn-more {
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .25rem;
	transition: gap .2s;
}

.learn-more:hover { 
	gap: .5rem; 
	color: var(--accent); 
}

.learn-more svg { 
	width: 1rem; 
	height: 1rem; 
}

.icon {
	padding: 10px 15px 15px 15px;
	display: flex;
	align-items: center;
}

.icon i {
	color: var(--accent);
	font-size: 2rem;
	margin-right: 20px;
}

.icon span {
	font-size: 1rem;
	color: white;
}

.highlights {
	padding: 20px 10px 10px 10px;
}

/***** SERVICES *****/
#services .item {
	background-color: var(--primary);
	border: 1px solid black;
	color: white;
	padding: 0px;
	height: 100%;
	width: 100%;
}

#services .item h2 { 
	color: white;
	font-size: 1.5rem;
	padding: 10px;
}

#services .item p { 
	color: white;
	font-size: 1rem;
	padding: 10px;
}

#services .item .serviceimg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 200px;
	box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.3);
	width: 100%;
	margin: 0px;
}

#services .card-body {
	padding: 0px !important;
}

/***** COMMON *****/
#form textarea {
	color: black;
	border: 1px solid var(--primary);
	padding:10px;
	display: block;
	width: 100%;
	margin-bottom: 0px;
	font-size: 1.25rem;
	resize: none;
	height: 150px;
}

#form label {
	display: block;
	color: var(--primary);
	font-weight: bold;
}

#form input, #form select {
	color: black;
	border: 1px solid var(--primary);
	padding:10px;
	display: block;
	font-size: 1.25rem;
	margin-bottom: 30px;
	width: 100%;
}

#form button {
	display: inline-block;
	margin-top: 40px;
}

main a {
	color: var(--primary);
	font-weight: bold;
	text-decoration: none;
}

main a:hover {
	color: var(--accent);
	text-decoration: none;
}

main .alert {
	margin-bottom: 40px;
}

.main-image {
	float: right;
	margin: 0px 0px 20px 20px;
	max-width: 40%;
}

/* ----- FOOTER ----- */
footer { 
	background: var(--primary); 
	padding: 4rem 0 0; 
}

.footer-logo span { 
	color: #fff; 
	font-size: 1.25rem; 
	font-weight: 700; 
}

.footer-desc { 
	color: rgba(255,255,255,.7); 
	font-size: .875rem; 
	line-height: 1.7; 
}

.footer-heading { 
	color: #fff; 
	font-weight: 700; 
	margin-bottom: 1.5rem; 
}

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

.footer-links li { 
	margin-bottom: .75rem; 
}

.footer-links a { 
	color: rgba(255,255,255,.7); 
	text-decoration: none; 
	font-size: .875rem; 
	transition: color .2s; 
}

.footer-links a:hover { 
	color: var(--secondary); 
}

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

.footer-contact li {
	display: flex;
	align-items: center;
	gap: .5rem;
	color: rgba(255,255,255,.7);
	font-size: .875rem;
	margin-bottom: .75rem;
}

.footer-contact svg { 
	width: 1rem; 
	height: 1rem; 
	color: var(--secondary); 
	flex-shrink: 0; 
}

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

.footer-contact a:hover { 
	color: var(--secondary); 
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 2rem 0;
	margin-top: 3rem;
}

.footer-copy { 
	color: rgba(255,255,255,.5); 
	font-size: .875rem; 
	margin: 0; 
}

.footer-social a { 
	color: rgba(255,255,255,.5); 
	transition: color .2s; 
	line-height: 0; 
}

.footer-social a:hover { 
	color: var(--secondary); 
}

.footer-social svg { 
	width: 1.25rem; 
	height: 1.25rem; 
}

.footer-switch a {
	font-size: 0.875rem;
	margin-top: 10px;
	color: var(--secondary);
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.footer-switch a:hover {
	text-decoration: underline;
}

#footer-logo {
	height: 75px;
}

@media (max-width: 991.98px) {
	header .container-xl {
		padding-left: var(--page-gutter) !important;
		padding-right: var(--page-gutter) !important;
	}

	/* Full-screen mobile menu overlay */
	header #mainNav.collapsing,
	header #mainNav.collapse.show {
		position: fixed;
		inset: 0;
		z-index: 1050;
		width: 100%;
		min-height: 100vh;
		min-height: 100dvh;
		margin: 0;
		padding: max(5rem, env(safe-area-inset-top, 0px) + 3rem) var(--page-gutter) max(2rem, env(safe-area-inset-bottom, 0px) + 1rem);
		border: none;
		background: var(--primary);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		box-sizing: border-box;
		transition: none !important;
	}

	header #mainNav.collapsing ul,
	header #mainNav.collapse.show ul {
		align-items: center !important;
		text-align: center;
	}

	header #mainNav.collapsing .nav-link,
	header #mainNav.collapse.show .nav-link {
		padding: 1rem 0;
		font-size: 1.35rem;
	}

	header:has(#mainNav.show) .navbar-toggler,
	header:has(#mainNav.collapsing) .navbar-toggler {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.mobile-nav-close {
		position: absolute;
		top: max(0.75rem, env(safe-area-inset-top, 0px));
		right: max(0.75rem, env(safe-area-inset-right, 0px));
		display: flex;
		align-items: center;
		justify-content: center;
		width: 3rem;
		height: 3rem;
		padding: 0;
		margin: 0;
		border: 0;
		border-radius: 0.375rem;
		background: transparent;
		color: #fff;
		line-height: 0;
		cursor: pointer;
		transition: color 0.2s, background 0.2s;
	}

	.mobile-nav-close:hover {
		color: var(--secondary);
		background: rgba(255, 255, 255, 0.08);
	}

	.mobile-nav-close:focus {
		outline: none;
		box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
	}
}

/***** CONTACT *****/
#contact .contact-grid {
	row-gap: 2rem;
}

#contact .contact-card {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
	padding: 2rem;
	height: 100%;
}

#contact .contact-copy {
	margin-bottom: 1.5rem;
}

#contact .contact-form label {
	display: block;
	font-family: 'HelveticaCondensedBold', sans-serif;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

#contact .contact-form .form-control {
	border-radius: 0;
	border: 1px solid #d6d6d6;
	padding: 0.75rem 0.875rem;
	min-height: 48px;
	box-shadow: none;
}

#contact .contact-form .form-control:focus {
	border-color: #9f9f9f;
	box-shadow: 0 0 0 3px rgba(170, 170, 170, 0.2);
}

#contact .contact-form textarea.form-control {
	min-height: 140px;
	resize: vertical;
}

#contact .contact-form .btn-gold {
	width: 100%;
	justify-content: center;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

#contact .map-panel {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

#contact .map-card,
#contact .wtw-card {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
	padding: 1.5rem;
}

#contact #gmap {
	height: 50vh;
	min-height: 320px;
	width: 100%;
}

#contact #wtw {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 1.35rem;
	color: #000;
	text-decoration: none;
	font-family: 'HelveticaCondensedBold', sans-serif;
	margin-bottom: 0.75rem;
}

#contact #wtw span {
	color: var(--accent);
}

#contact #wtw:hover {
	color: var(--accent);
}

/***** STUDIES *****/
#studies {
	row-gap: 1.75rem;
}

.study-col {
	display: flex;
}

.study-card {
	width: 100%;
	background: #fff;
	border: 1px solid #e8e8e8;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.study-image {
	position: relative;
	height: 220px;
	background-size: cover;
	background-position: center;
	filter: grayscale(100%);
}

.study-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1));
}

.study-content {
	padding: 1.5rem;
}

.study-meta {
	margin-bottom: 1.25rem;
	border-top: 1px solid #efefef;
}

.study-meta-row {
	display: flex;
	gap: 0.5rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid #efefef;
}

.study-meta-row label {
	font-family: 'HelveticaCondensedBold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	min-width: 82px;
	margin: 0;
	color: #5a5a5a;
}

.study-meta-row span {
	color: #111;
}

.study-heading {
	font-size: 1.25rem;
	margin-bottom: 0.45rem;
}

.study-text {
	color: #333;
	margin-bottom: 1.25rem;
}

.study-text:last-child {
	margin-bottom: 0;
}

.study-quote {
	position: relative;
	background: #f8f8f8;
	border-left: 4px solid var(--accent);
	padding: 1rem 1rem 1rem 1.25rem;
}

.study-quote::before {
	content: "\201C";
	position: absolute;
	top: -6px;
	left: 10px;
	font-size: 3rem;
	line-height: 1;
	color: rgba(0, 0, 0, 0.14);
	font-family: 'HelveticaCondensedBold', sans-serif;
}

.study-quote .study-text {
	position: relative;
	margin-bottom: 0;
	padding-left: 1.1rem;
	color: #2c2c2c;
}

@media (max-width: 767.98px) {
	main {
		padding-top: 80px;
		padding-bottom: 32px;
	}

	h1 {
		font-size: clamp(2rem, 8vw, 2.5rem);
		margin-bottom: 1rem;
	}

	.hero {
		height: 480px;
	}

	.hero p {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 1.5rem;
	}

	.about-section,
	.services-section,
	.testimonial-ticker,
	footer {
		padding-top: 2.25rem;
	}

	.services-section {
		padding-bottom: 2.25rem;
	}

	.quote-box,
	.service-card,
	#contact .contact-card,
	#contact .map-card,
	#contact .wtw-card,
	.study-content {
		padding: 1.25rem;
	}

	.main-image {
		float: none;
		max-width: 100%;
		margin: 0 0 1rem 0;
	}

	#form input,
	#form select,
	#form textarea {
		font-size: 1rem;
	}

	#form input,
	#form select {
		margin-bottom: 1rem;
	}

	.ticker-item {
		gap: .75rem;
		padding: 0 1rem;
	}

	.ticker-item p,
	.ticker-item span {
		white-space: normal;
	}

	#contact #gmap {
		height: 38vh;
		min-height: 240px;
	}

	.study-meta-row {
		flex-direction: column;
		gap: .25rem;
		padding: .5rem 0;
	}

	.study-meta-row label {
		min-width: 0;
	}

	.site-footer {
		padding-top: 2rem;
	}

	.site-footer .row {
		--bs-gutter-y: 1rem;
	}

	.site-footer .footer-logo {
		margin-bottom: .75rem !important;
	}

	.site-footer .footer-desc {
		margin-bottom: 0;
	}

	.site-footer .footer-heading {
		margin-bottom: .75rem;
	}

	.site-footer .footer-links li,
	.site-footer .footer-contact li {
		margin-bottom: .45rem;
	}

	.site-footer .footer-bottom {
		margin-top: 1.25rem;
		padding: .9rem 0;
	}

	.site-footer .footer-copy {
		text-align: center;
		font-size: .8rem;
	}
}