/* ============================================================
   MASTER STYLESHEET
   Covers: Home (style.css), About (style2.css), Contact (style3.css)
   ============================================================ */


/* ============================================================
   GLOBAL: Variables, Reset, Body
   ============================================================ */

:root {
	--sage: #191970;
	--deep-teal: #1C39BB;
	--warm-cream: #F8F5F1;
	--terracotta: #FFA500;
	--charcoal: #2B2D2E;
	--soft-white: #FDFDFB;
}

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

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--warm-cream);
	color: var(--charcoal);
	overflow-x: hidden;
}


/* ============================================================
   GLOBAL: Navigation
   ============================================================ */

nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 1.5rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	background: rgba(248, 245, 241, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(28, 57, 187, 0.1);
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.logo svg {
	height: 40px;
	width: 40px;
	flex-shrink: 0;
}

.logo-text {
	font-family: 'Montserrat', serif;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--deep-teal);
	letter-spacing: 0.02em;
}

.nav-links {
	display: flex;
	gap: 2.5rem;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: var(--charcoal);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--terracotta);
	transition: width 0.3s ease;
}

.nav-links a:hover {
	color: var(--deep-teal);
}

.nav-links a:hover:after {
	width: 100%;
}

.cta-button {
	padding: 0.75rem 1.75rem;
	background: var(--deep-teal);
	color: var(--soft-white);
	border: none;
	border-radius: 30px;
	font-weight: 500;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.cta-button:hover {
	background: var(--terracotta);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(28, 57, 187, 0.3);
}


/* ============================================================
   GLOBAL: Mobile Menu
   ============================================================ */

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--deep-teal);
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 70px;
	right: 0;
	width: 250px;
	background: var(--soft-white);
	box-shadow: -2px 0 20px rgba(43, 45, 46, 0.1);
	padding: 2rem 0;
	z-index: 999;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu a {
	display: block;
	padding: 1rem 2rem;
	color: var(--charcoal);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.mobile-menu a:hover {
	background: rgba(28, 57, 187, 0.05);
	border-left-color: var(--deep-teal);
	padding-left: 2.5rem;
}


/* ============================================================
   GLOBAL: Shared Utilities
   ============================================================ */

.section-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--terracotta);
	margin-bottom: 1rem;
	font-weight: 600;
}


/* ============================================================
   HOME PAGE: Hero Section
   ============================================================ */

.hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 8rem 5% 4rem;
	gap: 4rem;
	position: relative;
}

.hero-content {
	max-width: 600px;
	animation: fadeInUp 1s ease-out;
}

.hero-badge {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: rgba(25, 25, 112, 0.1);
	color: var(--deep-teal);
	border-radius: 25px;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	letter-spacing: 0.05em;
}

.hero h1 {
	font-family: 'Montserrat', serif;
	font-size: 4rem;
	font-weight: 300;
	line-height: 1.15;
	color: var(--charcoal);
	margin-bottom: 1.5rem;
}

.hero h1 strong {
	font-weight: 600;
	color: var(--deep-teal);
	font-style: italic;
}

.hero-subtitle {
	font-size: 1.15rem;
	line-height: 1.7;
	color: rgba(43, 45, 46, 0.75);
	margin-bottom: 2.5rem;
}

.hero-image-container {
	position: relative;
	height: 550px;
	animation: fadeIn 1.2s ease-out 0.3s backwards;
}

.hero-image {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 450px;
	height: 550px;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(28, 57, 187, 0.15);
}

.hero-image::before {
	content: '';
	position: absolute;
	top: -20px;
	right: -20px;
	width: 200px;
	height: 200px;
	background: var(--terracotta);
	border-radius: 50%;
	opacity: 0.2;
	z-index: -1;
}

.placeholder-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--soft-white);
	font-family: 'Montserrat', serif;
	font-size: 1.5rem;
	opacity: 0.9;
}

.placeholder-image img {
	height: inherit;
}

.micro-cta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 1.25rem;
	font-size: 0.95rem;
	color: rgba(43, 45, 46, 0.75);
}

.availability-dot {
	width: 8px;
	height: 8px;
	background: #22c55e;
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
	animation: pulse 2s infinite;
}

.micro-cta a {
	color: var(--deep-teal);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.micro-cta a:hover {
	color: var(--terracotta);
}

@keyframes pulse {
	0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
	70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}


/* ============================================================
   HOME PAGE: Mission Section
   ============================================================ */

.mission-section {
	padding: 8rem 5%;
	background: var(--soft-white);
	position: relative;
}

.mission-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

.mission-content {
	max-width: 1000px;
	margin: 0 auto;
}

.mission-heading {
	font-family: 'Montserrat', serif;
	font-size: 2.5rem;
	font-weight: 300;
	line-height: 1.3;
	color: var(--charcoal);
	margin-bottom: 3rem;
	max-width: 800px;
}

.mission-text {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

.mission-paragraph {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(43, 45, 46, 0.8);
}

.mission-paragraph strong {
	color: var(--deep-teal);
	font-weight: 600;
}


/* ============================================================
   HOME PAGE: Services Section
   ============================================================ */

.services-section {
	padding: 8rem 5%;
	background: var(--warm-cream);
}

.services-header {
	max-width: 1200px;
	margin: 0 auto 5rem;
	text-align: center;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: var(--soft-white);
	padding: 3rem;
	border-radius: 20px;
	transition: all 0.4s ease;
	border: 1px solid rgba(28, 57, 187, 0.08);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--sage), var(--terracotta));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(28, 57, 187, 0.12);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card h3 {
	font-family: 'Montserrat', serif;
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--deep-teal);
	margin-bottom: 1rem;
}

.service-card p {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(43, 45, 46, 0.75);
	margin-bottom: 1.5rem;
}

.service-link {
	color: var(--terracotta);
	font-weight: 500;
	text-decoration: none;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease;
}

.service-link:hover {
	gap: 1rem;
}


/* ============================================================
   ABOUT PAGE: Hero Section
   ============================================================ */

.about-hero {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10rem 5% 5rem;
	text-align: center;
	background: var(--soft-white);
	position: relative;
}

.about-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

.about-hero-content {
	max-width: 800px;
	animation: fadeInUp 1s ease-out;
}

.about-badge {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: rgba(25, 25, 112, 0.1);
	color: var(--deep-teal);
	border-radius: 25px;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	letter-spacing: 0.05em;
}

.about-hero h1 {
	font-family: 'Montserrat', serif;
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1.2;
	color: var(--charcoal);
	margin-bottom: 1.5rem;
}

.about-hero h1 strong {
	font-weight: 700;
	color: var(--deep-teal);
}

.about-hero p {
	font-size: 1.15rem;
	line-height: 1.7;
	color: rgba(43, 45, 46, 0.75);
}


/* ============================================================
   ABOUT PAGE: Bio Section
   ============================================================ */

.bio-section {
	padding: 6rem 5%;
	background: var(--warm-cream);
}

.bio-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 5rem;
	align-items: start;
}

.bio-image-wrapper {
	position: relative;
}

.bio-image {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(28, 57, 187, 0.15);
}

.bio-image::after {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	width: 150px;
	height: 150px;
	background: var(--terracotta);
	border-radius: 50%;
	opacity: 0.2;
	z-index: -1;
}

.bio-content h2 {
	font-family: 'Montserrat', serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--deep-teal);
	margin-bottom: 2rem;
	line-height: 1.3;
}

.bio-content p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(43, 45, 46, 0.8);
	margin-bottom: 1.5rem;
}


/* ============================================================
   ABOUT PAGE: Affiliations Section
   ============================================================ */

.affiliations-section {
	padding: 6rem 5%;
	background: var(--soft-white);
}

.affiliations-container {
	max-width: 1200px;
	margin: 0 auto;
}

.affiliations-container h2 {
	font-family: 'Montserrat', serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 3rem;
}

.affiliations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	align-items: center;
	justify-items: center;
}

.affiliation-logo {
	max-width: 180px;
	height: auto;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.affiliation-logo.black-bg {
	background-color: black;
}

.affiliation-logo:hover {
	opacity: 1;
	transform: scale(1.05);
}


/* ============================================================
   ABOUT PAGE: Approach Section
   ============================================================ */

.approach-section {
	padding: 6rem 5%;
	background: var(--warm-cream);
}

.approach-container {
	max-width: 1000px;
	margin: 0 auto;
}

.approach-container h2 {
	font-family: 'Montserrat', serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--deep-teal);
	margin-bottom: 2rem;
}

.approach-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

.approach-card {
	background: var(--soft-white);
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid rgba(28, 57, 187, 0.08);
}

.approach-card h3 {
	font-family: 'Montserrat', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 1rem;
}

.approach-card p {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(43, 45, 46, 0.75);
	margin-bottom: 1.5rem;
}

.cta-section {
	text-align: center;
	margin-top: 4rem;
}


/* ============================================================
   CONTACT PAGE: Hero Section
   ============================================================ */

.contact-hero {
	min-height: 70vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 10rem 5% 5rem;
	gap: 5rem;
	background: var(--soft-white);
	position: relative;
}

.contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

.contact-hero-content {
	animation: fadeInUp 1s ease-out;
}

.contact-badge {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: rgba(25, 25, 112, 0.1);
	color: var(--deep-teal);
	border-radius: 25px;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	letter-spacing: 0.05em;
}

.contact-hero h1 {
	font-family: 'Montserrat', serif;
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--charcoal);
	margin-bottom: 1.5rem;
}

.contact-hero p {
	font-size: 1.15rem;
	line-height: 1.8;
	color: rgba(43, 45, 46, 0.75);
	margin-bottom: 2.5rem;
}

.contact-image-wrapper {
	position: relative;
	animation: fadeIn 1.2s ease-out 0.3s backwards;
}

.contact-image {
	width: 100%;
	max-width: 450px;
	border-radius: 20px;
	box-shadow: 0 30px 60px rgba(28, 57, 187, 0.15);
}

.contact-image-wrapper::before {
	content: '';
	position: absolute;
	top: -20px;
	right: -20px;
	width: 200px;
	height: 200px;
	background: var(--terracotta);
	border-radius: 50%;
	opacity: 0.2;
	z-index: -1;
}


/* ============================================================
   CONTACT PAGE: Contact Methods Section
   ============================================================ */

.contact-methods-section {
	padding: 6rem 5%;
	background: var(--warm-cream);
}

.contact-methods-container {
	max-width: 1000px;
	margin: 0 auto;
}

.contact-methods-container .section-label {
	text-align: center;
}

.contact-methods-container h2 {
	font-family: 'Montserrat', serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 3rem;
	text-align: center;
}

.methods-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.method-card {
	background: var(--soft-white);
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid rgba(28, 57, 187, 0.08);
	text-align: center;
	transition: all 0.3s ease;
}

.method-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(28, 57, 187, 0.12);
}

.method-icon {
	width: 70px;
	height: 70px;
	background: rgba(28, 57, 187, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
}

.method-card h3 {
	font-family: 'Montserrat', serif;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--deep-teal);
	margin-bottom: 1rem;
}

.method-card p {
	color: rgba(43, 45, 46, 0.7);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.method-card a {
	color: var(--deep-teal);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease;
}

.method-card a:hover {
	gap: 1rem;
}


/* ============================================================
   GLOBAL: Footer
   ============================================================ */

footer {
	background: var(--deep-teal);
	color: var(--soft-white);
	padding: 4rem 5% 2rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.footer-brand h3 {
	font-family: 'Montserrat', serif;
	font-size: 1.75rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

.footer-brand p {
	line-height: 1.7;
	opacity: 0.85;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--soft-white);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--terracotta);
	transform: translateY(-3px);
}

.footer-links h4 {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.footer-links ul {
	list-style: none;
}

.footer-links a {
	color: var(--soft-white);
	text-decoration: none;
	opacity: 0.85;
	display: block;
	margin-bottom: 0.75rem;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	opacity: 1;
	padding-left: 5px;
}

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


/* ============================================================
   GLOBAL: Animations
   ============================================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}


/* ============================================================
   RESPONSIVE: Tablet (max-width: 968px)
   ============================================================ */

@media (max-width: 968px) {
	/* Nav */
	.nav-links {
		display: none;
	}
	
	.cta-button {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.mobile-menu {
		display: block;
	}

	/* Home Hero */
	.hero {
		grid-template-columns: 1fr;
		padding-top: 6rem;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.hero-image-container {
		height: 400px;
	}

	.hero-image {
		width: 100%;
		height: 400px;
		position: relative;
		transform: none;
	}

	/* Home Mission */
	.mission-text {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	/* About Hero */
	.about-hero {
		padding-top: 8rem;
	}

	.about-hero h1 {
		font-size: 2.5rem;
	}

	/* About Bio */
	.bio-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	/* About Approach */
	.approach-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	/* Contact Hero */
	.contact-hero {
		grid-template-columns: 1fr;
		padding-top: 8rem;
		gap: 3rem;
	}

	.contact-hero h1 {
		font-size: 2.5rem;
	}

	.contact-image {
		max-width: 100%;
	}

	/* Contact Methods */
	.methods-grid {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}


/* ============================================================
   RESPONSIVE: Mobile (max-width: 640px)
   ============================================================ */

@media (max-width: 640px) {
	.logo-text {
		font-size: 1.15rem;
	}
	/* Home Hero */
	.hero-content {
		max-width: 100%;
		margin-top: 40px;
	}
	.hero-image {
		top: 0;
		width: 90%
	}

	.hero h1 {
		font-size: 2.25rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.placeholder-image img {
		height: auto;
		height: inherit;
	}

	/* About Hero */
	.about-hero h1 {
		font-size: 2rem;
	}

	/* About Affiliations */
	.affiliations-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.affiliation-logo {
		max-width: 150px;
	}

	/* Contact Hero */
	.contact-hero h1 {
		font-size: 2rem;
	}
}