/* ============================================
   Wasatch Therapy — Main Stylesheet
   Author: Wasatch Therapy Dev
   Version: 1.0.0
   ============================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
	--sage: #8a9e8d;
	--sage-light: #c4d4c5;
	--sage-pale: #eef3ee;
	--stone: #c8bfb0;
	--stone-dark: #8c7e6e;
	--cream: #f7f4ef;
	--warm-white: #fdfcf9;
	--charcoal: #2e2c2a;
	--text: #3d3a36;
	--text-light: #7a756d;
	--accent: #b87c5a;
	--accent-light: #e8c9b4;
	--nav-h: 80px;
	--radius: 2px;
	--shadow-sm: 0 4px 16px rgba(46, 44, 42, 0.07);
	--shadow-md: 0 8px 32px rgba(46, 44, 42, 0.1);
	--shadow-lg: 0 16px 48px rgba(46, 44, 42, 0.12);
	--transition: 0.25s ease;
}

/* ── RESET ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	background: var(--warm-white);
	color: var(--text);
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

/* ── TYPOGRAPHY ── */
.font-sans {
	font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
	font-weight: 300;
}

h1,
h2,
h3,
h4 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 300;
	line-height: 1.2;
	color: var(--charcoal);
}

p {
	font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
	font-weight: 300;
	line-height: 1.85;
}

/* ── UTILITY CLASSES ── */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 8vw;
}

.section-eyebrow {
	font-family: "Jost", sans-serif;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1rem;
	display: block;
}

.section-h2 {
	font-size: clamp(2rem, 3.5vw, 3rem);
	color: var(--charcoal);
	margin-bottom: 1.4rem;
}
.section-h2 em {
	font-style: italic;
	color: var(--sage);
}

.section-lead {
	font-size: 0.95rem;
	color: var(--text-light);
	max-width: 560px;
	line-height: 1.85;
	margin-bottom: 3rem;
}

.text-center {
	text-align: center;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

/* ── BUTTONS ── */
.btn {
	display: inline-block;
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.85rem 2rem;
	border-radius: var(--radius);
	transition:
		background var(--transition),
		color var(--transition),
		border-color var(--transition),
		transform var(--transition);
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--sage);
	color: #fff;
}
.btn-primary:hover {
	background: var(--stone-dark);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--stone);
}
.btn-outline:hover {
	border-color: var(--sage);
	color: var(--sage);
}

.btn-group {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ============================================
   NAVIGATION
   ============================================ */
#main-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 6vw;
	background: rgba(253, 252, 249, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(200, 191, 176, 0.3);
	transition: box-shadow 0.3s;
}

#main-nav.scrolled {
	box-shadow: 0 2px 24px rgba(46, 44, 42, 0.08);
}

.nav-logo {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--charcoal);
	letter-spacing: 0.02em;
	text-decoration: none;
}
.nav-logo span {
	color: var(--sage);
}

.nav-links {
	display: flex;
	gap: 2.4rem;
}
.nav-links a {
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-light);
	transition: color var(--transition);
}
.nav-links a:hover {
	color: var(--charcoal);
}

.nav-cta {
	background: var(--sage);
	color: #fff !important;
	padding: 0.55rem 1.4rem;
	border-radius: var(--radius);
	transition: background var(--transition) !important;
}
.nav-cta:hover {
	background: var(--stone-dark) !important;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}
.hamburger span {
	display: block;
	width: 24px;
	height: 1.5px;
	background: var(--charcoal);
	transition:
		transform 0.3s,
		opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
	display: none;
	position: fixed;
	top: var(--nav-h);
	left: 0;
	right: 0;
	background: rgba(253, 252, 249, 0.98);
	border-bottom: 1px solid rgba(200, 191, 176, 0.3);
	padding: 1.5rem 6vw 2rem;
	z-index: 999;
	flex-direction: column;
	gap: 1rem;
	box-shadow: var(--shadow-md);
}
.mobile-nav.open {
	display: flex;
}
.mobile-nav a {
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-light);
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(200, 191, 176, 0.2);
	transition: color var(--transition);
}
.mobile-nav a:hover {
	color: var(--sage);
}
.mobile-nav .btn-primary {
	text-align: center;
	margin-top: 0.5rem;
}

/* ============================================
   HERO
   ============================================ */
#hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: var(--nav-h);
	overflow: hidden;
}

.hero-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 8vw 5vw 8vw 8vw;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.9s 0.2s forwards;
}

.hero-eyebrow {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 1.4rem;
}

.hero-h1 {
	font-size: clamp(2.8rem, 5vw, 4.2rem);
	font-weight: 300;
	color: var(--charcoal);
	line-height: 1.18;
	margin-bottom: 1.6rem;
}
.hero-h1 em {
	font-style: italic;
	color: var(--sage);
}

.hero-sub {
	font-family: "Jost", sans-serif;
	font-size: 0.95rem;
	color: var(--text-light);
	max-width: 420px;
	margin-bottom: 2.6rem;
	line-height: 1.85;
	font-weight: 300;
}

.hero-image-col {
	position: relative;
	overflow: hidden;
	opacity: 0;
	animation: fadeIn 0.9s 0.5s forwards;
}

.hero-image-col::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--sage-pale) 0%, var(--stone) 100%);
	z-index: 0;
}

.hero-img-wrap {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: url("../images/hero-ther.avif");
	background-size: cover;
	background-position: center 30%;
	opacity: 0.7;
}

.hero-shape {
	position: absolute;
	left: -60px;
	top: 50%;
	transform: translateY(-50%);
	width: 120px;
	height: 400px;
	background: var(--warm-white);
	clip-path: ellipse(60px 200px at 0% 50%);
	z-index: 2;
}

.hero-badge {
	position: absolute;
	bottom: 8%;
	right: 8%;
	z-index: 3;
	background: var(--warm-white);
	padding: 1.2rem 1.5rem;
	border-radius: 4px;
	box-shadow: var(--shadow-lg);
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.05em;
	color: var(--text-light);
	max-width: 180px;
	text-align: center;
}
.hero-badge strong {
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.8rem;
	font-weight: 300;
	color: var(--charcoal);
	line-height: 1.1;
	margin-bottom: 0.3rem;
}

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
	background: var(--charcoal);
	padding: 2.8rem 8vw;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
	flex: 1;
	min-width: 120px;
}

.stat-num {
	font-family: "Cormorant Garamond", serif;
	font-size: 2.4rem;
	font-weight: 300;
	color: var(--sage-light);
	line-height: 1;
	margin-bottom: 0.3rem;
}

.stat-label {
	font-family: "Jost", sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   SECTIONS — BASE
   ============================================ */
section {
	padding: 7rem 8vw;
}

/* ============================================
   ABOUT
   ============================================ */
#about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6vw;
	align-items: center;
	background: var(--cream);
}

.about-image-stack {
	position: relative;
	height: 520px;
}

.about-img-main {
	position: absolute;
	top: 0;
	left: 0;
	width: 72%;
	height: 78%;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

.about-img-accent {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 54%;
	height: 52%;
	object-fit: cover;
	border-radius: var(--radius);
	border: 6px solid var(--cream);
	box-shadow: var(--shadow-md);
}

.about-leaf {
	position: absolute;
	top: 50%;
	left: 68%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background: var(--sage-pale);
	border-radius: 50%;
	border: 6px solid var(--cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	z-index: 2;
	box-shadow: var(--shadow-sm);
}

.about-pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
	margin-bottom: 2.4rem;
}

.pillar {
	background: var(--warm-white);
	padding: 1.2rem;
	border-left: 2px solid var(--sage-light);
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	color: var(--text-light);
	font-weight: 300;
}
.pillar strong {
	display: block;
	font-size: 0.85rem;
	color: var(--charcoal);
	margin-bottom: 0.2rem;
	font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
#services {
	background: var(--warm-white);
}

.services-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3.5rem;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.service-card {
	background: var(--cream);
	padding: 2.4rem 2rem;
	border-radius: var(--radius);
	position: relative;
	overflow: hidden;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.service-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--sage-light);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.service-card:hover::after {
	transform: scaleX(1);
}

.service-icon {
	width: 48px;
	height: 48px;
	background: var(--sage-pale);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 1.4rem;
}

.service-card h3 {
	font-size: 1.35rem;
	font-weight: 400;
	margin-bottom: 0.7rem;
}

.service-card p {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1.4rem;
}

.service-link {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sage);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: gap 0.2s;
}
.service-link:hover {
	gap: 0.7rem;
}
.service-link::after {
	content: "→";
}

/* ============================================
   APPROACH
   ============================================ */
#approach {
	background: var(--sage-pale);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6vw;
	align-items: center;
}

.approach-visual {
	position: relative;
	height: 480px;
}

.approach-bg-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
	opacity: 0.35;
	border-radius: 50%;
}

.approach-quote-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--warm-white);
	padding: 2.4rem;
	border-radius: 4px;
	box-shadow: var(--shadow-lg);
	max-width: 320px;
	text-align: center;
	width: 90%;
}

.approach-quote-card blockquote {
	font-size: 1.3rem;
	font-weight: 300;
	font-style: italic;
	color: var(--charcoal);
	line-height: 1.5;
	margin-bottom: 1rem;
}
.approach-quote-card cite {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sage);
	font-style: normal;
}

.approach-steps {
	list-style: none;
}

.approach-step {
	display: flex;
	gap: 1.5rem;
	padding: 1.8rem 0;
	border-bottom: 1px solid rgba(138, 158, 141, 0.2);
	opacity: 0;
	transform: translateX(-20px);
	transition:
		opacity 0.5s,
		transform 0.5s;
}
.approach-step.visible {
	opacity: 1;
	transform: none;
}

.step-num {
	font-size: 2rem;
	font-weight: 300;
	color: var(--sage-light);
	line-height: 1;
	min-width: 2rem;
	margin-top: 0.2rem;
}

.step-body h4 {
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--charcoal);
	margin-bottom: 0.4rem;
	letter-spacing: 0.02em;
}
.step-body p {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
	background: var(--charcoal);
}

#testimonials .section-eyebrow {
	color: var(--sage-light);
}
#testimonials .section-h2 {
	color: #fff;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 2rem;
	border-radius: var(--radius);
	transition: background 0.3s;
}
.testimonial-card:hover {
	background: rgba(255, 255, 255, 0.09);
}

.stars {
	color: var(--accent-light);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	margin-bottom: 1.2rem;
}

.testimonial-card p {
	font-size: 1.08rem;
	font-weight: 300;
	font-style: italic;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 1.4rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.author-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--sage);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Jost", sans-serif;
	font-size: 0.75rem;
	color: #fff;
	font-weight: 500;
	flex-shrink: 0;
}

.author-name {
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.05em;
}

/* ============================================
   TEAM
   ============================================ */
#team {
	background: var(--cream);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.team-card {
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.5s,
		transform 0.5s;
}
.team-card.visible {
	opacity: 1;
	transform: none;
}

.team-photo {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: var(--radius);
	margin-bottom: 1rem;
	filter: saturate(0.8);
	transition: filter 0.3s;
}
.team-card:hover .team-photo {
	filter: saturate(1);
}

.team-card h3 {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 0.2rem;
}

.team-card .role {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 0.6rem;
}

.team-card .specialty {
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	color: var(--text-light);
}

/* ============================================
   INSURANCE
   ============================================ */
#insurance {
	background: var(--warm-white);
	text-align: center;
}

.insurance-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 2.5rem;
}

.insurance-chip {
	background: var(--cream);
	border: 1px solid var(--stone);
	padding: 0.65rem 1.4rem;
	border-radius: var(--radius);
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	color: var(--text-light);
	transition:
		border-color var(--transition),
		color var(--transition);
	cursor: default;
}
.insurance-chip:hover {
	border-color: var(--sage);
	color: var(--sage);
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
	background: var(--cream);
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 6vw;
	align-items: start;
}

.contact-info {
	padding-top: 0.5rem;
}
.contact-info .section-lead {
	margin-bottom: 2.5rem;
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.6rem;
}

.contact-icon {
	width: 38px;
	height: 38px;
	background: var(--sage-pale);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}

.contact-detail h5 {
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 0.2rem;
	font-weight: 500;
}
.contact-detail p {
	font-size: 0.88rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* ── FORM ── */
.contact-form-wrap {
	background: var(--warm-white);
	padding: 2.8rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.form-title {
	font-size: 1.6rem;
	font-weight: 300;
	margin-bottom: 0.5rem;
}

.form-sub {
	font-family: "Jost", sans-serif;
	font-size: 0.82rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	font-weight: 300;
}

.form-group {
	margin-bottom: 1.3rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.3rem;
}

label {
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 0.5rem;
	font-weight: 500;
}

input,
select,
textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--stone);
	border-radius: var(--radius);
	background: var(--cream);
	font-family: "Jost", sans-serif;
	font-size: 0.88rem;
	font-weight: 300;
	color: var(--text);
	outline: none;
	transition:
		border-color var(--transition),
		box-shadow var(--transition),
		background var(--transition);
	-webkit-appearance: none;
	appearance: none;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--sage);
	box-shadow: 0 0 0 3px rgba(138, 158, 141, 0.15);
	background: var(--warm-white);
}

input::placeholder,
textarea::placeholder {
	color: var(--stone);
}

textarea {
	resize: vertical;
	min-height: 110px;
}

select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a756d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-color: var(--cream);
	padding-right: 2.5rem;
	cursor: pointer;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
}
.checkbox-group input[type="checkbox"] {
	width: 16px;
	height: 16px;
	min-width: 16px;
	padding: 0;
	margin-top: 0.1rem;
	accent-color: var(--sage);
	flex-shrink: 0;
}
.checkbox-group label {
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.82rem;
	color: var(--text-light);
	margin-bottom: 0;
	font-weight: 300;
	line-height: 1.5;
}

.btn-submit {
	width: 100%;
	background: var(--sage);
	color: #fff;
	border: none;
	padding: 1rem;
	font-family: "Jost", sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-radius: var(--radius);
	cursor: pointer;
	margin-top: 0.8rem;
	transition:
		background var(--transition),
		transform var(--transition);
}
.btn-submit:hover {
	background: var(--stone-dark);
	transform: translateY(-1px);
}
.btn-submit:active {
	transform: none;
}

.form-success {
	display: none;
	text-align: center;
	padding: 2.5rem 2rem;
	background: var(--sage-pale);
	border-radius: var(--radius);
	margin-top: 1rem;
}
.form-success.show {
	display: block;
}
.form-success h4 {
	font-size: 1.4rem;
	color: var(--sage);
	margin-bottom: 0.5rem;
}
.form-success p {
	font-size: 0.85rem;
	color: var(--text-light);
}

/* ============================================
   MAP BAND
   ============================================ */
.map-band {
	height: 320px;
	background: linear-gradient(
		135deg,
		var(--sage-pale) 0%,
		var(--stone) 60%,
		var(--sage-light) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.map-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../images/map-bg.svg");
	background-size: cover;
	background-position: center;
	opacity: 0.25;
}

.map-pin-card {
	position: relative;
	z-index: 1;
	background: var(--warm-white);
	padding: 1.6rem 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	text-align: center;
}
.map-pin-card h4 {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 0.4rem;
}
.map-pin-card p {
	font-size: 0.82rem;
	color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
	background: var(--charcoal);
	padding: 5rem 8vw 2.5rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

.footer-brand .nav-logo {
	color: #fff;
	font-size: 1.6rem;
}
.footer-brand p {
	font-size: 0.82rem;
	margin-top: 1rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.4);
	max-width: 260px;
}

.footer-col h5 {
	font-family: "Jost", sans-serif;
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 1.2rem;
	font-weight: 500;
}
.footer-col ul li {
	margin-bottom: 0.6rem;
}
.footer-col ul a {
	font-family: "Jost", sans-serif;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	font-weight: 300;
	transition: color var(--transition);
}
.footer-col ul a:hover {
	color: var(--sage-light);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Jost", sans-serif;
	font-size: 0.75rem;
	flex-wrap: wrap;
	gap: 1rem;
}
.footer-legal {
	display: flex;
	gap: 1.5rem;
}
.footer-bottom a {
	color: rgba(255, 255, 255, 0.4);
	transition: color var(--transition);
}
.footer-bottom a:hover {
	color: var(--sage-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
	to {
		opacity: 1;
		transform: none;
	}
}

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

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.65s,
		transform 0.65s;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 900px) {
	#hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.hero-image-col {
		height: 45vw;
		min-height: 220px;
	}
	.hero-shape {
		display: none;
	}
	#about,
	#approach,
	#contact {
		grid-template-columns: 1fr;
	}
	.about-image-stack {
		height: 340px;
		margin-bottom: 2rem;
	}
	.services-grid {
		grid-template-columns: 1fr 1fr;
	}
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	.nav-links {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 0;
	}
	.stats-band {
		justify-content: center;
	}
	.approach-visual {
		height: 300px;
		margin-bottom: 2rem;
	}
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 560px) {
	section {
		padding: 4rem 6vw;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.team-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.contact-form-wrap {
		padding: 1.8rem;
	}
	.stats-band {
		padding: 2rem 6vw;
	}
	.hero-text {
		padding: 6vw;
	}
	.hero-h1 {
		font-size: 2.4rem;
	}
	.about-image-stack {
		height: 260px;
	}
	.about-img-main {
		width: 80%;
	}
	.about-img-accent {
		width: 58%;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
