:root {
	--black: #070707;
	--black-soft: #101010;
	--charcoal: #191919;
	--orange: #ff6700;
	--orange-light: #ff812b;
	--white: #f7f4ee;
	--muted: #b7b2aa;
	--line: rgba(255,255,255,.14);
	--max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--black); color: var(--white); font-family: "Arial Narrow", "Roboto Condensed", Impact, Arial, sans-serif; font-size: 18px; line-height: 1.65; }
body.menu-is-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--orange-light); text-decoration-thickness: 2px; text-underline-offset: 4px; }
a:hover { color: var(--white); }
h1, h2, h3, h4 { margin: 0 0 .55em; font-weight: 900; line-height: .98; letter-spacing: -.025em; text-transform: uppercase; }
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { color: var(--orange); font-size: clamp(2.2rem, 5vw, 4.3rem); }
h3 { color: var(--orange); font-size: clamp(1.4rem, 3vw, 2.2rem); }
p { margin: 0 0 1.35em; }
::selection { background: var(--orange); color: #000; }

.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { position: fixed; z-index: 10000; top: 12px; left: 12px; width: auto; height: auto; clip: auto; padding: 12px 18px; background: #fff; color: #000; }

.site-header { position: relative; z-index: 100; height: 136px; background: rgba(5,5,5,.98); border-bottom: 1px solid var(--line); transition: height .25s ease, background .25s ease; }
.header-inner { width: min(var(--max), calc(100% - 48px)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.brand { align-self: flex-start; width: 154px; height: 154px; flex: 0 0 154px; transform: translateY(12px); filter: drop-shadow(0 12px 18px rgba(0,0,0,.78)); position: relative; z-index: 2; }
.brand > a, .brand img, .brand .custom-logo-link, .brand .custom-logo { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; clip-path: circle(48% at 50% 50%); }
.primary-navigation { margin-left: auto; }
.primary-navigation ul { display: flex; align-items: center; flex-wrap: wrap; gap: clamp(24px, 3.2vw, 52px); margin: 0; padding: 0; list-style: none; }
.primary-navigation a { color: var(--orange); font-weight: 900; font-size: 18px; line-height: 1.2; text-decoration: none; text-transform: uppercase; transition: color .2s ease; }
.primary-navigation a:hover, .primary-navigation .current-menu-item > a, .primary-navigation .current_page_item > a { color: var(--white); }
.menu-toggle { display: none; background: transparent; color: var(--white); border: 0; font: inherit; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.menu-toggle-icon { display: grid; gap: 5px; }
.menu-toggle-icon i { display: block; width: 28px; height: 2px; background: var(--orange); }

.hero { min-height: min(790px, calc(100vh - 136px)); position: relative; display: flex; align-items: flex-end; overflow: hidden; background: #18100c; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background-size: cover; background-position: center; animation: hero-in 1.1s ease both; }
.hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.77) 0%, rgba(0,0,0,.18) 56%, rgba(0,0,0,.18) 100%), linear-gradient(0deg, rgba(0,0,0,.82), transparent 42%); }
.hero-content { position: relative; z-index: 1; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 90px 0 80px; }
.eyebrow { color: var(--orange); font-size: .85rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.hero h1 { max-width: 780px; margin-bottom: .35em; font-size: clamp(4rem, 10vw, 9rem); color: var(--white); text-shadow: 0 8px 28px rgba(0,0,0,.45); }
.hero h1 span { color: var(--orange); }
.hero-link { display: inline-flex; gap: 22px; align-items: center; padding-bottom: 7px; border-bottom: 2px solid var(--orange); color: var(--white); font-weight: 900; text-decoration: none; text-transform: uppercase; }
.hero-link span { color: var(--orange); font-size: 1.4em; }

.content-section { padding: clamp(78px, 10vw, 150px) 24px; }
.content-inner { width: min(1100px, 100%); margin: auto; display: grid; grid-template-columns: minmax(180px, 290px) minmax(0, 1fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.content-narrow { width: min(890px, 100%); margin: auto; }
.section-logo { position: sticky; top: 40px; }
.section-logo img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; clip-path: circle(48% at 50% 50%); filter: drop-shadow(0 12px 22px rgba(0,0,0,.72)) drop-shadow(0 0 18px rgba(255,103,0,.18)); }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content > h1:first-child { color: var(--orange); font-size: clamp(2.8rem, 6vw, 5.7rem); }
.entry-content .is-style-lead, .is-style-lead { font-size: clamp(1.25rem, 2.2vw, 1.65rem); line-height: 1.45; color: var(--white); }
.entry-content p { max-width: 830px; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content li::marker { color: var(--orange); }
.lhc-facebook-profile { margin-top: 22px; }
.lhc-facebook-profile a { display: inline-flex; align-items: center; gap: 18px; padding: 12px 20px; border: 2px solid var(--orange); background: transparent; color: var(--orange); font-weight: 900; line-height: 1.2; text-decoration: none; text-transform: uppercase; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.lhc-facebook-profile a:hover, .lhc-facebook-profile a:focus-visible { background: var(--orange); color: #080808; }
.lhc-facebook-profile span { font-size: 1.35em; line-height: .8; }
.wp-block-columns { gap: clamp(30px, 7vw, 90px); }
.wp-block-image img { border-radius: 50%; filter: drop-shadow(0 10px 35px rgba(255,103,0,.15)); }

.wp-block-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.wp-block-button__link, a.wp-block-button__link { display: inline-block; border: 2px solid var(--orange); border-radius: 0; padding: 14px 26px; background: var(--orange); color: #080808; font-weight: 900; line-height: 1.2; text-decoration: none; text-transform: uppercase; transition: background .2s, color .2s; }
.wp-block-button__link:hover { background: var(--white); border-color: var(--white); color: #080808; }
.wp-block-button.is-style-outline .wp-block-button__link { background: transparent; color: var(--orange); }
.wp-block-button.is-style-outline .wp-block-button__link:hover { background: var(--orange); color: #080808; }

.quick-links { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-links a { min-height: 280px; padding: clamp(32px, 5vw, 72px); border-right: 1px solid var(--line); color: var(--white); display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; transition: background .25s ease; }
.quick-links a:last-child { border-right: 0; }
.quick-links a:hover { background: var(--orange); color: #080808; }
.quick-links span { color: var(--orange); font-weight: 900; }
.quick-links a:hover span { color: #080808; }
.quick-links strong { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; text-transform: uppercase; }
.quick-links em { font-style: normal; font-weight: 900; text-transform: uppercase; }

.page-hero { min-height: 500px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-image, .page-hero-overlay { position: absolute; inset: 0; }
.page-hero-image { background-size: cover; background-position: center 55%; }
.page-hero-overlay { background: linear-gradient(0deg, rgba(0,0,0,.93), rgba(0,0,0,.08) 75%); }
.page-hero-inner { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 70px 0; position: relative; z-index: 1; }
.page-hero-inner p { margin: 0 0 8px; color: var(--orange); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.page-hero-inner h1 { margin: 0; font-size: clamp(3.2rem, 8vw, 7.5rem); }
.page-content { padding-top: clamp(54px, 7vw, 105px); background: linear-gradient(120deg, #080808, #13110f); }
.page-content .entry-content > h1:first-child { display: none; }
.archive-header { margin-bottom: 60px; }
.post-card { padding: 36px 0; border-top: 1px solid var(--line); }
.post-card h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.post-card h2 a { color: var(--white); text-decoration: none; }
.post-meta { margin: 0 0 8px; color: var(--orange); font-weight: 900; text-transform: uppercase; }
.error-page { min-height: 65vh; display: flex; align-items: center; }

.site-footer { border-top: 1px solid var(--line); background: #030303; }
.footer-inner { width: min(var(--max), calc(100% - 48px)); margin: auto; padding: 62px 0; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 22px; }
.footer-brand img { width: 96px; }
.footer-brand strong, .footer-brand span { display: block; text-transform: uppercase; }
.footer-brand strong { color: var(--orange); font-size: 1.3rem; }
.footer-brand span { color: var(--muted); font-size: .75rem; letter-spacing: .14em; }
.footer-contact { display: flex; flex-direction: column; text-align: right; }
.footer-contact a { text-decoration: none; }
.footer-contact .footer-facebook-link { align-self: flex-end; display: inline-flex; align-items: center; gap: 11px; margin-top: 13px; padding: 8px 13px; border: 1px solid var(--orange); color: var(--orange); font-size: 12px; font-weight: 900; line-height: 1.2; letter-spacing: .025em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.footer-contact .footer-facebook-link:hover, .footer-contact .footer-facebook-link:focus-visible { background: var(--orange); color: #080808; }
.footer-facebook-link span { font-size: 1.25em; line-height: .8; }
.footer-bottom { padding: 18px 24px; border-top: 1px solid var(--line); color: #777; text-align: center; font-size: 14px; }
.footer-bottom p { margin: 0; }

@keyframes hero-in { from { opacity: 0; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 900px) {
	.site-header { height: 104px; }
	.header-inner { width: min(100% - 30px, var(--max)); }
	.brand { width: 112px; height: 112px; flex-basis: 112px; transform: translateY(8px); filter: drop-shadow(0 9px 14px rgba(0,0,0,.78)); }
	.menu-toggle { display: flex; align-items: center; gap: 12px; }
	.primary-navigation { position: fixed; inset: 104px 0 0; visibility: hidden; opacity: 0; background: rgba(5,5,5,.985); transform: translateY(-10px); transition: opacity .2s, transform .2s, visibility .2s; }
	.primary-navigation.is-open { visibility: visible; opacity: 1; transform: none; }
	.primary-navigation ul { height: 100%; padding: 42px 30px 80px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; overflow-y: auto; }
	.primary-navigation li { width: 100%; border-bottom: 1px solid var(--line); }
	.primary-navigation a { display: block; padding: 18px 0; font-size: clamp(1.6rem, 7vw, 3rem); }
	.hero { min-height: calc(100svh - 104px); }
	.hero-content { width: calc(100% - 36px); padding-bottom: 55px; }
	.hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.08) 75%); }
	.content-inner { grid-template-columns: 1fr; }
	.section-logo { position: static; width: 170px; }
	.quick-links { grid-template-columns: 1fr; }
	.quick-links a { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
	.quick-links a:last-child { border-bottom: 0; }
	.footer-inner { align-items: flex-start; flex-direction: column; }
	.footer-contact { text-align: left; }
	.footer-contact .footer-facebook-link { align-self: flex-start; }
}

@media (max-width: 560px) {
	body { font-size: 16px; }
	.content-section { padding-inline: 18px; }
	.page-hero { min-height: 380px; }
	.page-hero-inner { width: calc(100% - 36px); padding-bottom: 48px; }
	.footer-inner { width: calc(100% - 36px); }
	.footer-brand img { width: 76px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
