/* ==========================================================================
   Luminous Potential — Brand Refresh (2026)
   Additive stylesheet loaded AFTER main.css. Implements the "Trust & Clarity"
   palette + Inter type + component styles from /updates. Does not delete any
   rules in main.css — safe to remove this file to revert to the old look.
   ========================================================================== */

@font-face {
	font-family: 'Inter';
	src: url('../webfonts-inter/Inter-Variable.ttf') format('truetype-variations'),
		url('../webfonts-inter/Inter-Variable.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--navy: #274d80;
	--navy-deep: #1e3c65;
	--teal: #357e8e;
	--coral: #f79676;
	--coral-strong: #f3776a;
	--gold: #fadfa0;
	--cream: #f2f1e6;
	--cream-soft: #f8f7f1;
	--ink: #223349;
	--ink-soft: #4c5c70;
	--grad-warm: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
	--grad-warm-strong: linear-gradient(135deg, var(--coral-strong) 0%, var(--coral) 45%, var(--gold) 100%);
	--grad-cool: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
	--grad-cool-rev: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
	--radius-lg: 28px;
	--radius-md: 18px;
}

/* ---- base type ---- */

body, input, select, textarea {
	font-family: 'Inter', 'Lato', sans-serif;
	color: var(--ink-soft);
}

body {
	background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', 'Lato', sans-serif;
	color: var(--navy);
	font-weight: 800;
}

#main strong {
	color: var(--coral-strong);
}

a {
	color: var(--teal);
}

.eyebrow {
	display: block;
	font-size: 0.75em;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--coral-strong);
	margin-bottom: 0.75em;
}

/* ---- header / nav ---- */

#header, #header.alt {
	background: transparent;
	box-shadow: none;
	padding: 1.5em 3em;
	position: absolute;
	z-index: 10001;
}

#header:not(.alt) {
	position: fixed;
	background: linear-gradient(180deg, rgba(30, 60, 101, 0.92), rgba(30, 60, 101, 0.85));
	backdrop-filter: blur(6px);
}

#header h1#logo a {
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-size: 1em;
	color: #fff;
}

#header h1#logo a span {
	display: none;
}

#header nav ul li a {
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #fff;
}

#header nav ul li.submenu > a:before {
	content: '';
}

#header nav ul li .button {
	background: var(--navy-deep);
	border-radius: 999px;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 0.75em 1.6em;
}

#header nav ul li .button:hover {
	background: var(--navy);
}

.dropotron {
	background: var(--navy-deep);
	border-top: 3px solid var(--coral);
	box-shadow: 0 12px 30px rgba(20, 35, 60, 0.35);
}

.dropotron.level-0:before {
	border-bottom-color: var(--coral);
}

.dropotron > li > a {
	color: rgba(255, 255, 255, 0.88);
	text-transform: none;
	letter-spacing: 0.02em;
}

.dropotron > li:hover > a {
	background: rgba(247, 150, 118, 0.18);
	border-left-color: var(--coral);
	color: #fff;
}

/* ---- buttons ---- */

.button {
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.78em;
	border: none;
}

.button.primary {
	background: var(--navy);
	color: #fff !important;
	box-shadow: 0 10px 24px rgba(39, 77, 128, 0.25);
}

.button.primary:hover {
	background: var(--navy-deep);
}

.button.fit {
	background: #fff;
	color: var(--navy) !important;
}

.button.gradient {
	background: var(--grad-warm-strong);
	color: var(--navy-deep) !important;
	box-shadow: 0 10px 24px rgba(243, 132, 129, 0.3);
}

.button.gradient:hover {
	filter: brightness(1.05);
}

/* ---- photo hero (home + contact) ---- */

#banner {
	background-image:
		linear-gradient(100deg, var(--navy) 0%, rgba(39, 77, 128, 0.75) 28%, rgba(53, 126, 142, 0.35) 55%, rgba(53, 126, 142, 0) 78%),
		url("../../images/hero-forest.jpg");
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
	background-size: cover, cover;
	background-attachment: scroll;
	padding: 11em 3em 6em 3em;
	text-align: left;
}

#banner .inner {
	background: none;
	opacity: 1;
	animation: none;
	padding: 0;
	text-align: left;
	max-width: 640px;
	margin: 0;
}

#banner .inner header,
#banner .inner header h2 {
	border: none;
	text-align: left;
	padding: 0;
}

#banner .inner header h2 {
	font-size: 1em;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 700;
	margin-bottom: 1em;
}

#banner .inner p {
	text-transform: none;
	letter-spacing: normal;
	font-size: 1.5em;
	line-height: 1.4em;
	font-weight: 800;
	color: #fff;
	text-align: left;
}

#banner .inner p strong {
	color: var(--gold);
}

#banner .inner footer {
	text-align: left;
	margin-top: 2em;
}

#banner .inner footer .buttons {
	justify-content: flex-start;
}

/* ---- page hero (service / new pages, no photo) ---- */

.page-hero {
	position: relative;
	overflow: hidden;
	padding: 11em 3em 5em 3em;
	color: #fff;
}

.page-hero.warm {
	background: var(--grad-warm-strong);
}

.page-hero.cool {
	background: var(--grad-cool-rev);
}

.page-hero .rays {
	position: absolute;
	top: -6%;
	right: -4%;
	width: 26em;
	max-width: 55vw;
	opacity: 0.85;
	pointer-events: none;
}


.page-hero .inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.page-hero h2 {
	color: #fff;
	font-size: 2.2em;
	line-height: 1.2em;
	margin-bottom: 0.4em;
}

.page-hero p {
	font-size: 1.1em;
	line-height: 1.6em;
	color: rgba(255, 255, 255, 0.92);
}

/* ---- sections / bg utilities ---- */

.section {
	padding: 5em 3em;
}

.section.bg-white {
	background: #fff;
}

.section.bg-cream {
	background: var(--cream);
}

.section-inner {
	max-width: 1180px;
	margin: 0 auto;
}

.section h2.section-title {
	font-size: 1.6em;
	margin-bottom: 0.6em;
}

/* ---- image with corner accent ---- */

.accent-frame {
	position: relative;
	display: block;
	border-radius: 0;
}

.accent-frame img {
	display: block;
	width: 100%;
	border-radius: 0;
}

.accent-frame:before,
.accent-frame:after {
	content: '';
	position: absolute;
	width: 4.1em;
	height: 4.1em;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}

.accent-frame:before {
	top: 0;
	left: 0;
	background-image: url('../../images/corner-tl.png');
}

.accent-frame:after {
	bottom: 0;
	right: 0;
	background-image: url('../../images/corner-br.png');
}

/* ---- info cards (paired warm/navy panels) ---- */

.card-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75em;
	margin-top: 2em;
}

.info-card {
	flex: 1 1 320px;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	padding: 2.4em;
}

.info-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3.4em;
	height: 3.4em;
	background-image: url('../../images/corner-tl.png');
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.9;
}

.info-card.no-bracket:before {
	display: none;
}

.info-card.warm {
	background: var(--grad-warm);
	color: var(--navy-deep);
}

.info-card.navy {
	background: var(--grad-cool);
	color: #fff;
}

.info-card h3 {
	font-size: 1.1em;
	margin-bottom: 0.9em;
}

.info-card.warm h3 {
	color: var(--navy-deep);
}

.info-card.navy h3,
.info-card.navy strong {
	color: #fff;
}

.info-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.info-card ul li {
	position: relative;
	padding-left: 1.1em;
	margin-bottom: 0.7em;
	line-height: 1.45em;
}

.info-card ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.6;
}

.info-card.divided > div {
	padding-bottom: 0.9em;
	margin-bottom: 0.9em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.info-card.warm.divided > div {
	border-bottom-color: rgba(30, 60, 101, 0.15);
}

.info-card .rays-corner {
	position: absolute;
	bottom: -3em;
	right: -3em;
	width: 9em;
	opacity: 0.35;
}

/* ---- dark gradient band (support / engagement options) ---- */

.dark-band {
	position: relative;
	overflow: hidden;
	background: var(--grad-cool);
	color: #fff;
	padding: 4.5em 3em;
}

.dark-band .band-head {
	display: flex;
	align-items: center;
	gap: 1.2em;
	max-width: 1180px;
	margin: 0 auto 3em auto;
}

.dark-band .band-head img {
	width: 3.5em;
	height: 3.5em;
	flex-shrink: 0;
}

.dark-band .band-head h2 {
	color: #fff;
	font-size: 1.5em;
	margin-bottom: 0.2em;
}

.dark-band .band-head p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.band-row {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2.5em;
	padding: 2em 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.band-row:last-of-type {
	border-bottom: none;
}

.band-row .accent-frame {
	flex: 1 1 320px;
	max-width: 380px;
}

.band-row .band-text {
	flex: 1 1 380px;
}

.band-row h3 {
	color: #fff;
	font-size: 1.15em;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.6em;
}

.band-row p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0.8em;
}

.band-row ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.band-row ul li {
	position: relative;
	padding-left: 1.1em;
	margin-bottom: 0.4em;
	color: rgba(255, 255, 255, 0.85);
}

.band-row ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--coral);
}

.dark-band .band-cta {
	text-align: center;
	margin-top: 3em;
}

/* ---- CTA band (footer callout) ---- */

#cta {
	position: relative;
	overflow: hidden;
	background: var(--grad-warm-strong);
	text-align: left;
	padding: 5em 3em;
}

#cta:before {
	content: '';
	position: absolute;
	bottom: -30%;
	right: -6%;
	width: 34em;
	max-width: 55vw;
	height: 34em;
	background: url('../../images/logo-mark.png') no-repeat center / contain;
	opacity: 0.18;
}

#cta .section-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2em;
}

#cta header {
	margin: 0;
	text-align: left;
	max-width: 620px;
}

#cta header h2 {
	color: var(--navy-deep);
	font-size: 1.6em;
}

#cta header p {
	color: var(--navy-deep);
	opacity: 0.85;
	margin: 0.4em 0;
}

#cta header h3 {
	color: var(--navy-deep);
	font-size: 1em;
	font-weight: 700;
}

#cta footer {
	margin: 0;
}

/* ---- footer ---- */

#footer {
	position: relative;
	overflow: hidden;
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.65);
	padding: 3em 3em 4em 3em;
}

#footer .footer-ribbon {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: auto;
	max-width: none;
	opacity: 0.9;
	pointer-events: none;
}

#footer .icons,
#footer .copyright {
	position: relative;
	z-index: 1;
}

#footer .icons a {
	color: #fff;
}

#footer .copyright a {
	color: rgba(255, 255, 255, 0.85);
}

/* ---- about / icon header (existing "special container") ---- */

header.special .icon img {
	filter: none;
}

header.special.container {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

header.special h2 {
	border: none !important;
}

/* ---- contact page ---- */

.contact-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-image:
		linear-gradient(100deg, var(--navy) 0%, rgba(39, 77, 128, 0.8) 30%, rgba(53, 126, 142, 0.4) 60%, rgba(53, 126, 142, 0) 85%),
		url("../../images/hero-forest.jpg");
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
	background-size: cover, cover;
	padding: 9em 3em 4em 3em;
	color: #fff;
}

.contact-hero .contact-inner {
	max-width: 720px;
}

.contact-hero .contact-head {
	display: flex;
	align-items: center;
	gap: 1.2em;
	flex-wrap: wrap;
	margin-bottom: 0.6em;
}

.contact-hero .contact-head img {
	width: 3.2em;
	height: 3.2em;
}

.contact-hero h2 {
	color: #fff;
	font-size: 2em;
	margin: 0;
}

.contact-hero .socials {
	display: flex;
	gap: 0.9em;
	margin-left: auto;
}

.contact-hero .socials a {
	color: #fff;
	opacity: 0.85;
}

.contact-hero .socials a:hover {
	opacity: 1;
}

.contact-hero > p.lede {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.05em;
	line-height: 1.6em;
	margin-bottom: 2em;
}

.contact-form .row > div {
	margin-bottom: 1.4em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 10px;
	color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.75);
}

.contact-form input[type="submit"] {
	background: var(--grad-warm-strong);
	color: var(--navy-deep);
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.85em;
	padding: 0 2.4em;
	border: none;
}

/* ---- testimonials (media & impact) ---- */

.placeholder-badge {
	display: inline-block;
	background: rgba(39, 77, 128, 0.08);
	color: var(--navy);
	border: 1px dashed rgba(39, 77, 128, 0.4);
	font-size: 0.7em;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.3em 0.8em;
	border-radius: 999px;
	margin-bottom: 1em;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.75em;
	margin-top: 2em;
}

.testimonial-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(39, 77, 128, 0.12);
	border-radius: var(--radius-lg);
	padding: 2.2em;
	box-shadow: 0 12px 30px rgba(39, 77, 128, 0.06);
}


.testimonial-card .stars {
	color: var(--coral-strong);
	letter-spacing: 0.15em;
	margin-bottom: 0.8em;
}

.testimonial-card blockquote {
	font-size: 1.05em;
	line-height: 1.6em;
	color: var(--ink);
	margin: 0 0 1.2em 0;
	font-style: italic;
}

.testimonial-card .attribution {
	font-weight: 700;
	color: var(--navy);
}

.testimonial-card .attribution span {
	display: block;
	font-weight: 400;
	color: var(--ink-soft);
	font-size: 0.85em;
}

@media screen and (max-width: 736px) {
	.testimonial-grid {
		grid-template-columns: 1fr;
	}
}

/* ---- founder page ---- */

.headshot-placeholder {
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: var(--grad-warm-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 3.4em;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin: 0 auto 1em auto;
	box-shadow: 0 16px 36px rgba(39, 77, 128, 0.18);
}

.founder-credentials {
	list-style: none;
	margin: 1.5em 0 0 0;
	padding: 0;
}

.founder-credentials li {
	position: relative;
	padding-left: 1.6em;
	margin-bottom: 0.7em;
	line-height: 1.45em;
}

.founder-credentials li:before {
	content: '\2726';
	position: absolute;
	left: 0;
	color: var(--coral-strong);
}

/* ---- strategic panel (homepage, full-bleed navy + ribbon graphic) ---- */

.strategic-panel {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	padding: 5em 3em;
	color: #fff;
}

.strategic-panel .panel-box {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	color: #fff;
}

.strategic-panel .ribbon-graphic {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: auto;
	max-width: none;
	opacity: 0.9;
	pointer-events: none;
}

.strategic-panel .panel-content {
	position: relative;
	z-index: 1;
	max-width: 80%;
}

.strategic-panel .bracket {
	position: relative;
	width: 3.75em;
	height: 3.75em;
	margin-bottom: 1.3em;
	background-image: url('../../images/corner-tl.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.strategic-panel h2 {
	color: #fff;
	font-size: 1.75em;
	line-height: 1.3em;
	margin-bottom: 0.6em;
}

.strategic-panel p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* ---- service list (homepage, stacked rows w/ featured first row) ---- */

.service-list {
	background: #fff;
	overflow-x: hidden;
}

.service-row {
	display: flex;
	align-items: center;
	gap: 1.5em;
	max-width: 1180px;
	margin: 0 auto;
	padding: 1.6em 1.5em;
	text-decoration: none;
	color: inherit;
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row.featured {
	max-width: none;
	background: var(--grad-warm);
	border-radius: 0;
	padding: 1.8em calc((100% - 1180px) / 2 + 1.5em);
}

.service-row:hover {
	transform: scale(1.05);
}

.service-row:not(.featured):hover h3 {
	color: var(--coral-strong);
}

.service-row .icon-circle {
	width: 3.4em;
	height: 3.4em;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 8px 20px rgba(39, 77, 128, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.service-row .icon-circle .icon {
	font-size: 1.2em;
	color: var(--navy) !important;
}

.service-row h3 {
	font-size: 1.05em;
	margin-bottom: 0.25em;
	transition: color 0.4s ease;
}

.service-row.featured h3 {
	color: var(--navy-deep);
}

.service-row p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.95em;
}

.service-row.featured p {
	color: var(--navy-deep);
	opacity: 0.85;
}

@media screen and (max-width: 736px) {
	.strategic-panel {
		padding: 2.5em 1.5em;
	}

	.strategic-panel .panel-content {
		max-width: 100%;
	}

	.strategic-panel .ribbon-graphic {
		display: none;
	}

	.service-row {
		flex-direction: column;
		text-align: center;
	}

	.service-row.featured {
		padding: 1.8em 1.5em;
	}
}

/* ---- occasional decorative graphics (light-11, light-12) ---- */

.section-divider {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 2.5em auto;
}

.navy-divider {
	width: 100%;
	height: 1px;
	background: var(--navy);
}

.ribbon-accent {
	position: absolute;
	bottom: -4em;
	right: -3em;
	width: 16em;
	max-width: 40%;
	opacity: 0.9;
	pointer-events: none;
}

/* ---- responsive ---- */

@media screen and (max-width: 980px) {
	#header, #header.alt {
		padding: 1.2em 1.5em;
	}

	#banner, .page-hero {
		padding-top: 8em;
	}

	.card-row {
		flex-direction: column;
	}

	.band-row {
		flex-direction: column;
	}

	#cta .section-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}
