/*
 * T&L Global Supply — core theme styles.
 * Brand palette (do not extend): gold #ca9c4e, gold-bright #e4b65c,
 * gold-foreground #14110f, charcoal #211f1c, charcoal-deep #0f0d0b,
 * graphite #302d2b, cream #fbf8f3, light-gray #f3f1ef.
 */

body {
	font-family: "Inter", ui-sans-serif, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", ui-sans-serif, sans-serif;
	letter-spacing: -0.02em;
}

.text-balance {
	text-wrap: balance;
}

/* ---------------------------------------------------------------------------
 * Primary navigation (output by wp_nav_menu on the "primary" location).
 * WordPress default state classes drive active styling — no manual detection.
 * ------------------------------------------------------------------------- */
.primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s ease;
}

.primary-menu a:hover {
	color: #ffffff;
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-parent > a,
.primary-menu .current-menu-ancestor > a {
	color: #ca9c4e; /* gold */
}

/* Mobile drawer navigation */
.mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a {
	display: block;
	padding: 0.75rem 0;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.2s ease;
}

.mobile-menu a:hover {
	color: #ffffff;
}

.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a {
	color: #ca9c4e; /* gold */
}

/* ---------------------------------------------------------------------------
 * Footer "Company" navigation (footer location).
 * ------------------------------------------------------------------------- */
.footer-menu {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.footer-menu li {
	margin-bottom: 0.5rem;
}

.footer-menu a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s ease;
}

.footer-menu a:hover {
	color: #ca9c4e; /* gold */
}

/* ---------------------------------------------------------------------------
 * Editorial content (blog posts / pages using the_content()).
 * ------------------------------------------------------------------------- */
.entry-content > * + * {
	margin-top: 1.25rem;
}

.entry-content h2 {
	font-size: 1.75rem;
	font-weight: 800;
	color: #211f1c; /* charcoal */
}

.entry-content h3 {
	font-size: 1.375rem;
	font-weight: 700;
	color: #211f1c;
}

.entry-content p,
.entry-content li {
	color: #67625f; /* muted-foreground */
	line-height: 1.75;
}

.entry-content a {
	color: #ca9c4e;
	text-decoration: underline;
}

.entry-content a:hover {
	color: #e4b65c; /* gold-bright */
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.5rem;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content blockquote {
	border-left: 3px solid #ca9c4e;
	padding-left: 1.25rem;
	font-style: italic;
	color: #302d2b; /* graphite */
}

.entry-content img {
	border-radius: 0.75rem;
}
