/*
Theme Name: GlassCrafters of Utah
Theme URI: https://glasscraftersofutah.com/
Description: Custom child theme for Glass Crafters of Utah
Author: Glass Crafters of Utah
Template: motif
Version: 1.0.0
Text Domain: glasscrafters-child
*/

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
	--bg:        #090910;
	--accent:    #1e73be;
	--accent-hover: #2589d8;
	--text:      #EAE6D8;
	--text-muted: #9c9a8e;
	--card-bg:   #0f0f1a;
	--border:    rgba(30, 115, 190, 0.2);
	--border-hover: rgba(30, 115, 190, 0.6);
	--nav-height: 72px;
	--social-bar-height: 40px;
	--contact-bar-height: 52px;
	--copyright-bar-height: 28px;
	--footer-total-height: calc(var(--social-bar-height) + var(--contact-bar-height) + var(--copyright-bar-height));
	--font-heading: 'Playfair Display', Georgia, serif;
	--font-body:    'DM Sans', system-ui, sans-serif;
}

/* ================================================================
   GLOBAL RESET / BASE
   ================================================================ */
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	padding-top: var(--nav-height);
	padding-bottom: var(--footer-total-height);
}

/* ================================================================
   FROSTED GLASS STICKY NAV
   ================================================================ */
.gc-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--nav-height);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: rgba(9, 9, 16, 0.82);
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	padding: 0 32px;
}

.gc-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.gc-nav__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
}

.gc-nav__brand-icon {
	width: 36px;
	height: 36px;
	background: var(--accent);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.gc-nav__brand-name {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text);
}

.gc-nav__brand-name span {
	display: block;
	font-family: var(--font-body);
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.gc-nav__links {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gc-nav__links a {
	display: block;
	padding: 6px 12px;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: var(--text-muted);
	text-decoration: none;
	border-radius: 4px;
	transition: color 0.2s, background 0.2s;
}

.gc-nav__links a:hover {
	color: var(--text);
	background: rgba(30, 115, 190, 0.12);
}

.gc-nav__cta {
	background: var(--accent);
	color: #fff !important;
	border-radius: 6px !important;
	padding: 8px 16px !important;
}

.gc-nav__cta:hover {
	background: var(--accent-hover) !important;
	color: #fff !important;
}

.gc-nav__hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 6px;
}

.gc-nav__hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: all 0.3s;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.gc-hero {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 24px 28px;
	overflow: hidden;
	background-image: url('https://glasscraftersofutah.com/wp-content/uploads/2025/12/13173333_1204624796228377_1325680524663590008_o.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.gc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(9, 9, 16, 0.75);
	z-index: 0;
	pointer-events: none;
}


.gc-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin: 0 auto;
}

.gc-hero__eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 28px;
}

.gc-hero__h1 {
	font-family: var(--font-heading);
	font-size: clamp(2.6rem, 6vw, 4.2rem);
	font-weight: 700;
	line-height: 1.12;
	color: var(--text);
	margin: 0 0 24px;
}

.gc-hero__sub {
	font-size: 1.05rem;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.gc-hero__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}

.gc-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s;
	cursor: pointer;
	border: none;
}

.gc-btn--primary {
	background: var(--accent);
	color: #fff;
}

.gc-btn--primary:hover {
	background: var(--accent-hover);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(30, 115, 190, 0.35);
}


/* ================================================================
   SERVICES SECTION
   ================================================================ */
.gc-services {
	padding: 96px 24px;
	background: var(--bg);
}

.gc-section-header {
	text-align: center;
	margin-bottom: 56px;
}

.gc-section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.gc-section-title {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
	color: var(--text);
	margin: 0;
}

.gc-section-label--heading {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(2.2rem, 4vw, 2.75rem);
	font-weight: 700;
	color: #EAE6D8;
	letter-spacing: 0;
	text-transform: none;
	margin-bottom: 0;
}

.gc-services__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	max-width: 1300px;
	margin: 0 auto;
}

.gc-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

.gc-card:hover {
	border-color: var(--border-hover);
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(30, 115, 190, 0.15);
}

.gc-card__img-wrap {
	position: relative;
	width: 100%;
	padding-top: 62%;
	overflow: hidden;
}

.gc-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.gc-card:hover .gc-card__img {
	transform: scale(1.05);
}

.gc-card__body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.gc-card__title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 10px;
}

.gc-card__desc {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.65;
	margin: 0 0 20px;
	flex: 1;
}

.gc-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--accent);
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: gap 0.2s;
}

.gc-card__link:hover {
	color: var(--accent-hover);
	gap: 10px;
}

.gc-card__link svg {
	width: 14px;
	height: 14px;
}

/* ================================================================
   PHILOSOPHY SECTION
   ================================================================ */
.gc-philosophy {
	padding: 100px 24px;
	background: #0c0c16;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.gc-philosophy__inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.gc-philosophy__quote-mark {
	font-family: var(--font-heading);
	font-size: 5rem;
	line-height: 0.6;
	color: var(--accent);
	opacity: 0.4;
	display: block;
	margin-bottom: 24px;
}

.gc-philosophy__text {
	font-family: var(--font-heading);
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.75;
	color: var(--text);
}

.gc-philosophy__sig {
	margin-top: 36px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
}

/* ================================================================
   CONTACT BAR (fixed bottom)
   ================================================================ */
.gc-contact-bar {
	position: fixed;
	bottom: var(--copyright-bar-height);
	left: 0;
	right: 0;
	z-index: 999;
	height: var(--contact-bar-height);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: rgba(9, 9, 16, 0.92);
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	padding: 0 24px;
}

.gc-contact-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.gc-contact-bar__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s;
}

.gc-contact-bar__item:hover {
	color: var(--text);
}

.gc-contact-bar__item svg {
	width: 14px;
	height: 14px;
	color: var(--accent);
	flex-shrink: 0;
}

.gc-contact-bar__divider {
	width: 1px;
	height: 24px;
	background: var(--border);
}

/* ================================================================
   PAGE CONTENT OVERRIDE (non-front-page pages)
   ================================================================ */
#page {
	background: var(--bg);
	min-height: 100vh;
}

.site-header {
	display: none;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
	.gc-services__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 860px) {
	.gc-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	/* ── Update bar height variables so body padding and social bar
	      position update automatically ── */
	:root {
		--contact-bar-height:   140px;
		--social-bar-height:    44px;
		--copyright-bar-height: 28px;
	}

	.gc-nav__links {
		display: none;
		position: absolute;
		top: var(--nav-height);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: rgba(9, 9, 16, 0.98);
		padding: 16px;
		border-bottom: 1px solid var(--border);
		gap: 4px;
	}

	.gc-nav__links.is-open {
		display: flex;
	}

	.gc-nav__links a {
		padding: 10px 16px;
	}

	.gc-nav__hamburger {
		display: flex;
	}

	.gc-hero {
		min-height: 50vh;
		padding: 40px 20px 20px;
	}

	/* ── Contact bar: stack vertically, auto height ── */
	.gc-contact-bar {
		height: auto;
		min-height: var(--contact-bar-height);
		padding: 10px 16px;
	}

	.gc-contact-bar__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		flex-wrap: nowrap;
		padding: 0;
	}

	.gc-contact-bar__item {
		font-size: 11px;
		width: 100%;
	}

	.gc-contact-bar__divider {
		display: none;
	}

	/* ── Social bar: compact, stays horizontal ── */
	.gc-social-bar {
		height: auto;
		padding: 6px 16px;
	}

	.gc-social-bar__inner {
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.gc-services__grid {
		grid-template-columns: 1fr;
	}
}

/* ================================================================
   !IMPORTANT OVERRIDES — defeat any parent-theme bleeds
   ================================================================ */
html,
body,
#page,
.hfeed,
.site {
	background-color: #090910 !important;
	color: #EAE6D8 !important;
}

body {
	font-family: 'DM Sans', system-ui, sans-serif !important;
}

.gc-hero {
	background-color: #090910 !important;
	color: #EAE6D8 !important;
}

.gc-hero__h1 {
	color: #EAE6D8 !important;
}

.gc-hero__eyebrow {
	color: #1e73be !important;
}

.gc-services,
.gc-card,
.gc-card__body,
.gc-philosophy {
	background-color: #090910 !important;
}

.gc-card {
	background-color: #0f0f1a !important;
}

.gc-philosophy {
	background-color: #0c0c16 !important;
}

.gc-philosophy__text {
	color: #EAE6D8 !important;
}

.gc-section-title,
.gc-card__title {
	color: #EAE6D8 !important;
}

/* Hide Motif's original header — we use gc-nav instead */
#masthead,
.site-header,
.site-branding,
.main-navigation,
#site-navigation,
.site-footer,
#colophon,
.widget-area,
#secondary {
	display: none !important;
}

/* ================================================================
   NAV LOGO IMAGE
   ================================================================ */
.gc-nav__logo-img {
	max-height: 60px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* ================================================================
   SUBPAGE TEMPLATE (page.php)
   ================================================================ */
.gc-page {
	background-color: #090910 !important;
	min-height: 100vh;
}

.gc-page-hero {
	padding: 80px 24px 60px;
	text-align: center;
	background-color: #090910 !important;
	border-bottom: 1px solid rgba(30, 115, 190, 0.2);
}

.gc-page-hero__inner {
	max-width: 900px;
	margin: 0 auto;
}

.gc-page-hero__title {
	font-family: 'Playfair Display', Georgia, serif !important;
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 700;
	color: #EAE6D8 !important;
	margin: 0;
	line-height: 1.15;
}

.gc-page-content {
	padding: 80px 24px;
	background-color: #090910 !important;
}

.gc-page-content__inner {
	max-width: 860px;
	margin: 0 auto;
}

.gc-entry-content {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #EAE6D8 !important;
}

.gc-entry-content h2,
.gc-entry-content h3,
.gc-entry-content h4 {
	font-family: 'Playfair Display', Georgia, serif !important;
	color: #EAE6D8 !important;
	margin: 2em 0 0.75em;
}

.gc-entry-content h2 { font-size: 1.8rem; }
.gc-entry-content h3 { font-size: 1.4rem; }
.gc-entry-content h4 { font-size: 1.15rem; }

.gc-entry-content p {
	color: #9c9a8e !important;
	margin: 0 0 1.25em;
}

.gc-entry-content ul,
.gc-entry-content ol {
	color: #9c9a8e !important;
	padding-left: 1.5em;
	margin: 0 0 1.5em;
}

.gc-entry-content li { margin-bottom: 0.5em; }

.gc-entry-content strong { color: #EAE6D8 !important; }

.gc-entry-content a:not(.gc-btn) {
	color: #1e73be !important;
	text-decoration: none;
}

.gc-entry-content a:not(.gc-btn):hover {
	color: #2589d8 !important;
	text-decoration: underline;
}

.gc-entry-content a.gc-btn--primary,
.gc-entry-content a.gc-btn--primary:hover {
	color: #fff !important;
	text-decoration: none !important;
}

.gc-entry-content img {
	max-width: 100%;
	border-radius: 8px;
	margin-bottom: 1.5em;
	border: 1px solid rgba(30, 115, 190, 0.15);
}

/* ================================================================
   SERVICE PAGE INLINE IMAGE
   ================================================================ */
.gc-page-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
	border: 1px solid rgba(30, 115, 190, 0.15);
	margin: 28px 0 36px;
	max-height: 480px;
	object-fit: cover;
}

/* ================================================================
   GALLERY PAGE
   ================================================================ */
.gc-gallery-page {
	padding: 60px 24px 80px;
	background-color: #090910 !important;
}

.gc-gallery-grid {
	columns: 4;
	column-gap: 12px;
	max-width: 1200px;
	margin: 0 auto;
}

.gc-gallery-item {
	break-inside: avoid;
	margin-bottom: 12px;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(30, 115, 190, 0.15);
	transition: border-color 0.3s, transform 0.3s;
}

.gc-gallery-item:hover {
	border-color: rgba(30, 115, 190, 0.5);
	transform: scale(1.02);
}

.gc-gallery-item img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 1024px) {
	.gc-gallery-grid { columns: 3; }
}

@media (max-width: 680px) {
	.gc-gallery-grid { columns: 2; }
}

@media (max-width: 400px) {
	.gc-gallery-grid { columns: 1; }
}

/* ================================================================
   BLOG INDEX PAGE
   ================================================================ */
.gc-blog-index {
	padding: 60px 24px 80px;
	background-color: #090910 !important;
}

.gc-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}

.gc-blog-card {
	background: #0f0f1a;
	border: 1px solid rgba(30, 115, 190, 0.18);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s, transform 0.3s;
}

.gc-blog-card:hover {
	border-color: rgba(30, 115, 190, 0.5);
	transform: translateY(-3px);
}

.gc-blog-card__img-wrap {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.gc-blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.gc-blog-card:hover .gc-blog-card__img {
	transform: scale(1.04);
}

.gc-blog-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.gc-blog-card__meta {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1e73be;
	margin-bottom: 10px;
}

.gc-blog-card__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #EAE6D8;
	margin: 0 0 12px;
	line-height: 1.3;
}

.gc-blog-card__title a {
	color: #EAE6D8 !important;
	text-decoration: none !important;
	transition: color 0.2s;
}

.gc-blog-card__title a:hover {
	color: #1e73be !important;
}

.gc-blog-card__excerpt {
	color: #9c9a8e;
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0 0 20px;
	flex: 1;
}

.gc-blog-empty {
	color: #9c9a8e;
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 0;
	font-size: 1rem;
}

@media (max-width: 900px) {
	.gc-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.gc-blog-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SINGLE POST
   ================================================================ */
.gc-post-thumb {
	background: #090910;
	padding: 0 24px;
	max-width: 860px;
	margin: 48px auto 0;
}

.gc-post-thumb__img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
	border: 1px solid rgba(30, 115, 190, 0.15);
}

.gc-post-nav {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(30, 115, 190, 0.18);
}

/* ================================================================
   REVIEWS PAGE
   ================================================================ */
.gc-reviews-page {
	padding: 60px 24px 80px;
	background-color: #090910 !important;
	max-width: 960px;
	margin: 0 auto;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.gc-contact-page {
	padding: 60px 24px 80px;
	background-color: #090910 !important;
}

.gc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 960px;
	margin: 0 auto;
}

.gc-contact-info__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 28px;
}

.gc-contact-info__icon {
	color: #1e73be;
	flex-shrink: 0;
	margin-top: 2px;
}

.gc-contact-info__label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1e73be;
	display: block;
	margin-bottom: 4px;
}

.gc-contact-info__val {
	color: #EAE6D8;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* CF7 dark-theme overrides */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
	background: #0f0f1a !important;
	border: 1px solid rgba(30, 115, 190, 0.25) !important;
	color: #EAE6D8 !important;
	border-radius: 6px !important;
	padding: 10px 14px !important;
	width: 100% !important;
	font-family: 'DM Sans', system-ui, sans-serif !important;
	font-size: 0.95rem !important;
	transition: border-color 0.2s !important;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
	outline: none !important;
	border-color: #1e73be !important;
}

.wpcf7-form label {
	display: block !important;
	font-size: 0.82rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	color: #9c9a8e !important;
	margin-bottom: 6px !important;
}

.wpcf7-form .wpcf7-form-control-wrap {
	display: block !important;
	margin-bottom: 18px !important;
}

.wpcf7-form input[type="submit"],
.wpcf7-submit {
	background: #1e73be !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 13px 32px !important;
	font-family: 'DM Sans', system-ui, sans-serif !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: background 0.2s !important;
	width: 100% !important;
}

.wpcf7-form input[type="submit"]:hover {
	background: #2589d8 !important;
}

@media (max-width: 680px) {
	.gc-contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* ================================================================
   HERO TAGLINE SEPARATORS
   ================================================================ */
.gc-hero__tagline {
	color: #EAE6D8 !important;
	font-size: 1rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.04em;
}

.gc-tagline-sep {
	color: #1e73be;
	padding: 0 10px;
	font-weight: 700;
	opacity: 0.9;
}

/* ================================================================
   COPYRIGHT BAR (fixed, absolute bottom)
   ================================================================ */
.gc-copyright-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 997;
	background: #090910;
	padding: 6px 24px;
	text-align: center;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 11px;
	line-height: 1.5;
	color: rgba(234, 230, 216, 0.3);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ================================================================
   SOCIAL LINKS BAR
   ================================================================ */
.gc-social-bar {
	position: fixed;
	bottom: calc(var(--contact-bar-height) + var(--copyright-bar-height));
	left: 0;
	right: 0;
	z-index: 998;
	height: var(--social-bar-height);
	background: #0d0d18;
	border-top: 1px solid rgba(30, 115, 190, 0.18);
	display: flex;
	align-items: center;
}

.gc-social-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.gc-social-bar__link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1e73be;
	transition: color 0.2s, transform 0.2s;
	line-height: 0;
}

.gc-social-bar__link:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

.gc-social-bar__link svg {
	width: 17px;
	height: 17px;
}

/* ================================================================
   NUCLEAR DARK-THEME OVERRIDE
   Forces our dark palette on subpages/blog pages where the parent
   Motif theme's default light styles were bleeding through.
   ================================================================ */
html body,
html body #page,
html body #content,
html body #primary,
html body #main,
html body .site,
html body .site-content,
html body .site-main,
html body .content-area,
html body main,
html body article,
html body .hentry,
html body .entry-content,
html body .post,
html body .page,
html body .gc-page,
html body .gc-blog,
html body .gc-blog-grid,
html body .gc-blog-card {
	background-color: #090910 !important;
	background: #090910 !important;
	color: #EAE6D8 !important;
}

html body .widget-area,
html body .sidebar,
html body #secondary {
	display: none !important;
}

/* ================================================================
   BLOG CARD DARK-THEME OVERRIDES
   Explicit colors so cards/titles/dates/excerpts/links stay dark
   even with the nuclear override above forcing text/bg on ancestors.
   ================================================================ */
html body .gc-blog-card {
	background-color: #0f0f1a !important;
	border-color: rgba(30, 115, 190, 0.2) !important;
}

html body .gc-blog-card__title,
html body .gc-blog-card__title a {
	color: #EAE6D8 !important;
}

html body .gc-blog-card__meta {
	color: #9c9a8e !important;
}

html body .gc-blog-card__excerpt {
	color: #9c9a8e !important;
}

html body .gc-card__link {
	color: #1e73be !important;
}

html body .gc-card__link:hover {
	color: #2589d8 !important;
}
