/**
 * Logos Communications - theme styles.
 *
 * Every colour, font and size below resolves to a CSS custom property emitted
 * by inc/dynamic-css.php from the Customizer settings. Nothing here hardcodes a
 * brand value, so changing an option updates the whole page coherently.
 */

/* -------------------------------------------------------------------------
 * Tokens that are not user-configurable
 * ---------------------------------------------------------------------- */

:root {
	--lc-container: 1180px;
	--lc-gutter: 32px;

	--lc-radius-sm: 8px;
	--lc-radius-md: 12px;
	--lc-radius-lg: 14px;
	--lc-radius-xl: 22px;

	--lc-space-section: 88px;
	--lc-space-section-sm: 64px;

	--lc-header-height: 76px;

	--lc-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--lc-transition: 240ms var(--lc-ease);
	--lc-transition-fast: 150ms var(--lc-ease);

	/* The design is border-led; shadows stay almost invisible by intent. */
	--lc-shadow-soft: 0 1px 2px rgba(56, 51, 45, 0.06);
	--lc-shadow-card: 0 2px 8px rgba(56, 51, 45, 0.06);
}

/* -------------------------------------------------------------------------
 * Base
 * ---------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

/* Anchor links must not slide under the sticky header. */
body.has-sticky-header {
	scroll-padding-top: var(--lc-header-height);
}

html:focus-within {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: var(--lc-color-bg);
	color: var(--lc-color-text);
	font-family: var(--lc-font-body);
	font-size: var(--lc-font-size-base);
	font-weight: 400;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--lc-color-primary);
	text-decoration: none;
	transition: color var(--lc-transition-fast);
}

a:hover,
a:focus {
	color: var(--lc-color-primary-dark);
}

/* A visible, on-brand focus ring for keyboard users everywhere. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--lc-color-primary);
	outline-offset: 2px;
	border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--lc-font-heading);
	color: var(--lc-color-heading);
	font-weight: var(--lc-heading-weight);
	line-height: 1.32;
	margin: 0 0 0.5em;
}

h1 { font-size: var(--lc-size-h1); line-height: 1.1; }
h2 { font-size: var(--lc-size-h2); }
h3 { font-size: var(--lc-size-h3); }
h4 { font-size: var(--lc-size-h4); }

p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

blockquote {
	margin: 1.5em 0;
	padding-left: 20px;
	border-left: 2px solid var(--lc-color-primary-light);
	font-family: var(--lc-font-heading);
	font-style: italic;
	color: var(--lc-color-primary-dark);
}

code, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.9em;
}

pre {
	overflow-x: auto;
	padding: 20px;
	background: var(--lc-color-bg-alt);
	border-radius: var(--lc-radius-md);
}

hr {
	border: 0;
	border-top: 1px solid var(--lc-color-border);
	margin: 48px 0;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th, td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--lc-color-border);
	text-align: left;
}

/* -------------------------------------------------------------------------
 * Accessibility helpers
 * ---------------------------------------------------------------------- */

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 100;
	padding: 12px 20px;
	background: var(--lc-color-primary);
	color: var(--lc-color-on-primary);
	border-radius: 0 0 var(--lc-radius-sm) var(--lc-radius-sm);
	font-size: 15px;
	transition: top var(--lc-transition-fast);
}

.skip-link:focus {
	top: 0;
	color: var(--lc-color-on-primary);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* -------------------------------------------------------------------------
 * Layout
 * ---------------------------------------------------------------------- */

.lc-container {
	max-width: var(--lc-container);
	margin: 0 auto;
	padding-left: var(--lc-gutter);
	padding-right: var(--lc-gutter);
	width: 100%;
}

.lc-section {
	padding-top: var(--lc-space-section);
	padding-bottom: var(--lc-space-section);
}

.lc-section--tight {
	padding-top: var(--lc-space-section-sm);
	padding-bottom: 0;
}

.lc-section--alt {
	background: var(--lc-color-bg-alt);
}

.lc-section__head--center {
	text-align: center;
}

/* -------------------------------------------------------------------------
 * Typographic components
 * ---------------------------------------------------------------------- */

.lc-eyebrow {
	font-family: var(--lc-font-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lc-color-primary);
	margin-bottom: 12px;
}

.lc-eyebrow--muted {
	font-weight: 400;
	letter-spacing: 0.16em;
	color: var(--lc-color-text-faint);
}

.lc-lede {
	font-size: 17px;
	line-height: 1.55;
	color: var(--lc-color-text-muted);
	max-width: 640px;
	margin: 0 0 48px;
}

/* -------------------------------------------------------------------------
 * Buttons
 * ---------------------------------------------------------------------- */

.lc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	border: 1px solid transparent;
	border-radius: var(--lc-radius-sm);
	font-family: var(--lc-font-body);
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background var(--lc-transition-fast), color var(--lc-transition-fast), border-color var(--lc-transition-fast);
}

.lc-btn--primary {
	background: var(--lc-color-primary);
	color: var(--lc-color-on-primary);
}

.lc-btn--primary:hover,
.lc-btn--primary:focus {
	background: var(--lc-color-primary-dark);
	color: var(--lc-color-on-primary);
}

.lc-btn--outline {
	background: transparent;
	border-color: var(--lc-color-border-strong);
	color: var(--lc-color-text);
}

.lc-btn--outline:hover,
.lc-btn--outline:focus {
	border-color: var(--lc-color-primary);
	color: var(--lc-color-primary);
}

.lc-btn--sm {
	padding: 11px 22px;
	font-size: 15px;
}

/* -------------------------------------------------------------------------
 * Logo
 * ---------------------------------------------------------------------- */

.lc-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: inherit;
}

.lc-logo:hover { color: inherit; }

.lc-logo__img img,
.lc-logo img {
	max-height: var(--lc-logo-max-height);
	width: auto;
}

/* The three-bar mark from the design, drawn in CSS so it inherits the palette
 * and needs no asset. */
.lc-logo__mark {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 22px;
	flex: none;
}

.lc-logo__mark span {
	display: block;
	width: 2px;
	border-radius: 1px;
}

.lc-logo__mark span:nth-child(1) { height: 12px; background: var(--lc-color-primary-light); }
.lc-logo__mark span:nth-child(2) { height: 22px; background: var(--lc-color-primary); }
.lc-logo__mark span:nth-child(3) { height: 16px; background: var(--lc-color-primary-mid); }

.lc-logo__text {
	display: block;
	font-family: var(--lc-font-heading);
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
	color: var(--lc-color-primary-dark);
}

.lc-logo__sub {
	display: block;
	font-family: var(--lc-font-body);
	font-size: 9px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lc-color-text-faint);
	margin-top: 3px;
}

/* -------------------------------------------------------------------------
 * Header
 * ---------------------------------------------------------------------- */

.lc-header {
	position: relative;
	z-index: 20;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background var(--lc-transition), border-color var(--lc-transition), backdrop-filter var(--lc-transition);
}

body.has-sticky-header .lc-header {
	position: sticky;
	top: 0;
}

/* Opaque from the start unless the transparent-until-scroll option is on. */
body:not(.has-transparent-header) .lc-header,
.lc-header.is-scrolled {
	background: var(--lc-header-bg);
	backdrop-filter: var(--lc-header-blur);
	-webkit-backdrop-filter: var(--lc-header-blur);
	border-bottom: var(--lc-header-border);
}

.lc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--lc-header-height);
}

.lc-nav ul {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lc-nav a {
	font-family: var(--lc-font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	color: var(--lc-color-text-muted);
}

.lc-nav a:hover,
.lc-nav a:focus,
.lc-nav .current-menu-item > a {
	color: var(--lc-color-primary);
}

/* Header variant: centred logo, nav below. */
.logos-header--centered .lc-header__inner {
	flex-direction: column;
	gap: 14px;
	padding: 18px 0;
	text-align: center;
}

.logos-header--centered .lc-header__actions {
	order: 3;
}

/* Header variant: minimal, no nav, logo and CTA only. */
.logos-header--minimal .lc-nav {
	display: none;
}

.lc-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* Mobile menu toggle, hidden on desktop. */
.lc-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--lc-color-border-strong);
	border-radius: var(--lc-radius-sm);
	color: var(--lc-color-text);
	cursor: pointer;
}

.lc-nav-toggle__bar,
.lc-nav-toggle__bar::before,
.lc-nav-toggle__bar::after {
	display: block;
	width: 18px;
	height: 1.5px;
	background: currentColor;
	transition: transform var(--lc-transition-fast), opacity var(--lc-transition-fast);
}

.lc-nav-toggle__bar {
	position: relative;
}

.lc-nav-toggle__bar::before,
.lc-nav-toggle__bar::after {
	content: "";
	position: absolute;
	left: 0;
}

.lc-nav-toggle__bar::before { top: -6px; }
.lc-nav-toggle__bar::after { top: 6px; }

.lc-nav-toggle[aria-expanded="true"] .lc-nav-toggle__bar {
	background: transparent;
}

.lc-nav-toggle[aria-expanded="true"] .lc-nav-toggle__bar::before {
	transform: translateY(6px) rotate(45deg);
}

.lc-nav-toggle[aria-expanded="true"] .lc-nav-toggle__bar::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* -------------------------------------------------------------------------
 * Hero
 * ---------------------------------------------------------------------- */

.lc-hero {
	padding-top: 96px;
	padding-bottom: 88px;
}

.lc-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 64px;
	align-items: center;
}

.lc-hero__title {
	margin: 0 0 22px;
}

.lc-hero__text {
	font-size: 17px;
	color: var(--lc-color-text-muted);
	max-width: 480px;
	margin: 0 0 32px;
}

.lc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.lc-hero__media img {
	width: 100%;
	border-radius: var(--lc-radius-xl);
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

/* Shown when no hero image has been set, so the layout never collapses. */
.lc-hero__placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: var(--lc-radius-xl);
	background: var(--lc-color-primary-soft);
	border: 1px dashed var(--lc-color-primary-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
	text-align: center;
	color: var(--lc-color-primary-light);
	font-size: 15px;
}

/* -------------------------------------------------------------------------
 * Services: pillars and tactics
 * ---------------------------------------------------------------------- */

.lc-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 28px;
}

.lc-pillar {
	padding: 28px;
	background: var(--lc-color-surface);
	border: 1px solid var(--lc-color-border);
	border-radius: var(--lc-radius-lg);
	text-align: left;
}

.lc-pillar__icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--lc-color-primary-tint);
	color: var(--lc-color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.lc-pillar__icon svg {
	width: 22px;
	height: 22px;
}

.lc-pillar__title {
	font-family: var(--lc-font-heading);
	font-size: var(--lc-size-h4);
	font-weight: 500;
	line-height: 1.3;
	color: var(--lc-color-heading);
	margin: 0 0 8px;
}

.lc-pillar__desc {
	font-size: 15px;
	line-height: 1.5;
	color: var(--lc-color-text-muted);
	margin: 0;
}

.lc-tactics-wrap {
	border-top: 1px solid var(--lc-color-border);
	padding-top: 28px;
}

.lc-tactics-label {
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lc-color-text-faint);
	margin-bottom: 20px;
}

.lc-tactics {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.lc-tactic {
	padding: 20px 18px;
	background: var(--lc-color-bg);
	border: 1px solid var(--lc-color-border);
	border-radius: var(--lc-radius-md);
}

.lc-tactic svg {
	width: 20px;
	height: 20px;
	color: var(--lc-color-primary);
	margin-bottom: 12px;
}

.lc-tactic__title {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--lc-color-heading);
	margin: 0 0 6px;
}

.lc-tactic__desc {
	font-size: 13px;
	line-height: 1.45;
	color: var(--lc-color-text-faint);
	margin: 0;
}

/* -------------------------------------------------------------------------
 * Client logos
 * ---------------------------------------------------------------------- */

.lc-clients {
	padding-top: var(--lc-space-section-sm);
}

.lc-clients__label {
	text-align: center;
	margin-bottom: 28px;
}

.lc-clients__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 48px;
	opacity: 0.7;
}

.lc-client {
	font-family: var(--lc-font-heading);
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.02em;
	color: var(--lc-color-text-muted);
}

.lc-client img {
	max-height: 40px;
	width: auto;
	filter: grayscale(1);
}

/* -------------------------------------------------------------------------
 * Testimonials
 * ---------------------------------------------------------------------- */

.lc-testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.lc-testimonial {
	background: var(--lc-color-primary-soft);
	border: 1px solid var(--lc-color-primary-tint);
	border-radius: var(--lc-radius-lg);
	padding: 28px;
	margin: 0;
}

.lc-testimonial__quote {
	font-family: var(--lc-font-heading);
	font-size: var(--lc-size-quote);
	font-weight: 300;
	font-style: italic;
	line-height: 1.5;
	color: var(--lc-color-primary-dark);
	margin: 0 0 20px;
}

.lc-testimonial__name {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--lc-color-heading);
	font-style: normal;
}

.lc-testimonial__role {
	font-size: 13px;
	line-height: 1.4;
	color: var(--lc-color-text-faint);
	font-style: normal;
}

/* -------------------------------------------------------------------------
 * Process
 * ---------------------------------------------------------------------- */

.lc-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.lc-process__step {
	padding-right: 28px;
}

.lc-process__num {
	font-family: var(--lc-font-heading);
	font-size: var(--lc-size-numeral);
	font-weight: 300;
	line-height: 1;
	color: var(--lc-color-primary-light);
	margin-bottom: 16px;
}

.lc-process__title {
	font-family: var(--lc-font-heading);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--lc-color-heading);
	margin: 0 0 10px;
}

.lc-process__desc {
	font-size: 15px;
	line-height: 1.55;
	color: var(--lc-color-text-muted);
	margin: 0;
}

/* -------------------------------------------------------------------------
 * Team
 * ---------------------------------------------------------------------- */

.lc-team {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.lc-team__name {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--lc-color-heading);
}

.lc-team__role {
	font-size: 13px;
	line-height: 1.4;
	color: var(--lc-color-text-faint);
}

/* -------------------------------------------------------------------------
 * Contact
 * ---------------------------------------------------------------------- */

.lc-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
}

.lc-contact__text {
	font-size: 17px;
	color: var(--lc-color-text-muted);
	max-width: 400px;
	margin: 0;
}

.lc-form {
	background: var(--lc-color-surface);
	border: 1px solid var(--lc-color-border);
	border-radius: var(--lc-radius-lg);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lc-field label,
.lc-form label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	color: var(--lc-color-text);
	margin-bottom: 8px;
}

.lc-form input[type="text"],
.lc-form input[type="email"],
.lc-form input[type="tel"],
.lc-form select,
.lc-form textarea,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
select,
textarea {
	width: 100%;
	padding: 11px 14px;
	background: var(--lc-color-surface);
	border: 1px solid var(--lc-color-border-strong);
	border-radius: var(--lc-radius-sm);
	font-family: var(--lc-font-body);
	font-size: 15px;
	line-height: 1.4;
	color: var(--lc-color-text);
	transition: border-color var(--lc-transition-fast);
}

.lc-form textarea,
textarea {
	resize: vertical;
	min-height: 96px;
}

.lc-form input:focus,
.lc-form select:focus,
.lc-form textarea:focus {
	border-color: var(--lc-color-primary);
}

.lc-form button {
	align-self: flex-start;
}

/* Honeypot: hidden from people, reachable by bots. */
.lc-form__hp {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.lc-notice {
	padding: 12px 16px;
	border-radius: var(--lc-radius-sm);
	font-size: 15px;
	margin: 0;
}

.lc-notice--success {
	background: var(--lc-color-primary-soft);
	border: 1px solid var(--lc-color-primary-tint);
	color: var(--lc-color-primary-dark);
}

.lc-notice--error {
	background: #FDF0EE;
	border: 1px solid #F3C9C1;
	color: #97331F;
}

.lc-field__error {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: #97331F;
}

/* -------------------------------------------------------------------------
 * Footer
 * ---------------------------------------------------------------------- */

.lc-footer {
	background: var(--lc-footer-bg);
	border-top: var(--lc-footer-border);
	padding: 40px 0;
	color: var(--lc-footer-text);
	font-size: 13px;
}

.lc-footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.lc-footer .lc-logo__mark { height: 16px; gap: 2px; }
.lc-footer .lc-logo__mark span { width: 1.5px; }
.lc-footer .lc-logo__mark span:nth-child(1) { height: 9px; }
.lc-footer .lc-logo__mark span:nth-child(2) { height: 16px; }
.lc-footer .lc-logo__mark span:nth-child(3) { height: 12px; }

.lc-footer__wordmark {
	font-family: var(--lc-font-heading);
	font-size: 17px;
	font-weight: 300;
	line-height: 1;
	color: var(--lc-color-primary-dark);
}

.lc-footer__copyright {
	color: var(--lc-footer-text);
}

.lc-footer__social {
	display: flex;
	align-items: center;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lc-footer__social a {
	display: inline-flex;
	color: var(--lc-footer-text);
	transition: color var(--lc-transition-fast);
}

.lc-footer__social a:hover,
.lc-footer__social a:focus {
	color: var(--lc-color-primary);
}

.lc-footer__social svg {
	width: 18px;
	height: 18px;
}

/* Footer variant: three widget columns above the baseline row. */
.lc-footer__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	padding-bottom: 40px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--lc-color-border);
}

.lc-footer .widget__title {
	font-family: var(--lc-font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lc-color-text);
	margin: 0 0 16px;
}

.lc-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lc-footer li { margin-bottom: 8px; }

/* Footer variant: everything stacked and centred. */
.logos-footer--centered .lc-footer__inner {
	flex-direction: column;
	justify-content: center;
	text-align: center;
	gap: 16px;
}

.lc-footer-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.lc-footer-nav a { color: var(--lc-footer-text); }
.lc-footer-nav a:hover { color: var(--lc-color-primary); }

/* -------------------------------------------------------------------------
 * Blog and fallback templates
 * ---------------------------------------------------------------------- */

.lc-main {
	padding-top: var(--lc-space-section-sm);
	padding-bottom: var(--lc-space-section);
}

.lc-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 64px;
	align-items: start;
}

body.no-sidebar .lc-layout {
	grid-template-columns: minmax(0, 1fr);
	max-width: 780px;
	margin: 0 auto;
}

.lc-page-header {
	margin-bottom: 48px;
}

.lc-entry + .lc-entry {
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid var(--lc-color-border);
}

.lc-entry__title {
	margin: 0 0 12px;
	font-size: var(--lc-size-h3);
}

.lc-entry__title a { color: inherit; }
.lc-entry__title a:hover { color: var(--lc-color-primary); }

.lc-entry__meta {
	font-size: 13px;
	color: var(--lc-color-text-faint);
	margin-bottom: 16px;
}

.lc-entry__thumb {
	margin-bottom: 20px;
}

.lc-entry__thumb img {
	border-radius: var(--lc-radius-lg);
	width: 100%;
}

.lc-entry__content > * { max-width: 100%; }

.lc-entry__content h2,
.lc-entry__content h3 { margin-top: 1.5em; }

.lc-sidebar .widget + .widget {
	margin-top: 40px;
}

.lc-sidebar .widget__title {
	font-family: var(--lc-font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.lc-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lc-sidebar li { margin-bottom: 10px; }

.lc-pagination {
	margin-top: 64px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.lc-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--lc-color-border);
	border-radius: var(--lc-radius-sm);
	color: var(--lc-color-text-muted);
	font-size: 15px;
}

.lc-pagination .page-numbers.current,
.lc-pagination .page-numbers:hover {
	background: var(--lc-color-primary);
	border-color: var(--lc-color-primary);
	color: var(--lc-color-on-primary);
}

.lc-404 {
	text-align: center;
	padding: 96px 0;
}

.lc-404__code {
	font-family: var(--lc-font-heading);
	font-size: 96px;
	font-weight: 300;
	line-height: 1;
	color: var(--lc-color-primary-light);
	margin-bottom: 16px;
}

.lc-comments {
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid var(--lc-color-border);
}

.lc-comments ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lc-comments .children {
	list-style: none;
	margin: 0 0 0 32px;
	padding: 0;
}

.lc-comments .comment-body {
	padding: 20px 0;
	border-bottom: 1px solid var(--lc-color-border);
}

/* WordPress content alignment classes. */
.alignwide { max-width: min(1180px, 100%); }
.alignfull { max-width: 100%; }
.alignleft { float: left; margin: 0 24px 24px 0; }
.alignright { float: right; margin: 0 0 24px 24px; }
.aligncenter { margin-left: auto; margin-right: auto; }

.wp-caption-text,
figcaption {
	font-size: 13px;
	color: var(--lc-color-text-faint);
	margin-top: 8px;
}

.sticky .lc-entry__title::after {
	content: "\2605";
	margin-left: 8px;
	color: var(--lc-color-primary-light);
}

/* -------------------------------------------------------------------------
 * Responsive
 * ---------------------------------------------------------------------- */

@media (max-width: 1024px) {
	:root {
		--lc-space-section: 72px;
		--lc-space-section-sm: 48px;
	}

	.lc-hero__grid { gap: 40px; }
	.lc-tactics { grid-template-columns: repeat(3, 1fr); }
	.lc-process { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
	.lc-layout { grid-template-columns: minmax(0, 1fr); }
	.lc-sidebar { margin-top: 64px; }
}

@media (max-width: 860px) {
	:root {
		--lc-gutter: 24px;
	}

	/* The nav collapses behind the toggle; theme.js drives aria-expanded. */
	.lc-nav-toggle { display: inline-flex; }

	.logos-header--minimal .lc-nav-toggle { display: none; }

	.lc-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		background: var(--lc-color-bg);
		border-bottom: 1px solid var(--lc-color-border);
		box-shadow: var(--lc-shadow-card);
	}

	.lc-nav.is-open { display: block; }

	.lc-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px var(--lc-gutter) 16px;
	}

	.lc-nav li { border-bottom: 1px solid var(--lc-color-border); }
	.lc-nav li:last-child { border-bottom: 0; }
	.lc-nav a { display: block; padding: 14px 0; font-size: 17px; }

	.lc-header__inner { position: relative; }

	.lc-hero { padding-top: 56px; padding-bottom: 56px; }
	.lc-hero__grid { grid-template-columns: 1fr; }
	.lc-hero__media { order: -1; }
	.lc-hero__media img,
	.lc-hero__placeholder { aspect-ratio: 3 / 2; }

	.lc-pillars { grid-template-columns: 1fr; }
	.lc-tactics { grid-template-columns: repeat(2, 1fr); }
	.lc-testimonials { grid-template-columns: 1fr; }
	.lc-contact__grid { grid-template-columns: 1fr; gap: 40px; }
	.lc-footer__columns { grid-template-columns: 1fr; gap: 32px; }
	.lc-footer__inner { flex-direction: column; text-align: center; }
	.lc-clients__list { gap: 28px; }
}

@media (max-width: 560px) {
	:root {
		--lc-gutter: 20px;
		--lc-space-section: 56px;
	}

	/* Keep the display face readable rather than merely smaller. */
	h1 { font-size: clamp(34px, 9vw, var(--lc-size-h1)); }
	h2 { font-size: clamp(28px, 7.5vw, var(--lc-size-h2)); }

	.lc-tactics { grid-template-columns: 1fr; }
	.lc-process { grid-template-columns: 1fr; }
	.lc-process__step { padding-right: 0; }
	.lc-team { gap: 24px; flex-direction: column; }
	.lc-hero__actions .lc-btn { width: 100%; }
	.lc-form { padding: 20px; }
}

/* -------------------------------------------------------------------------
 * Print
 * ---------------------------------------------------------------------- */

@media print {
	.lc-header,
	.lc-footer__social,
	.lc-nav-toggle,
	.lc-form { display: none; }

	body { background: #fff; color: #000; }
}
