/* Fairway Freedom — supplemental CSS. Dark design system, RC1.
 * Base colors/type/spacing are theme.json's job. This file covers layout
 * theme.json's vocabulary can't reach: header behavior, hero, the Decision
 * Console, status-signal language, card architecture, meta row, ad slots,
 * footer, and motion. All motion respects prefers-reduced-motion.
 */

:root {
	--ff-header-h: 68px;
	--ff-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

/* Full-bleed sections (photography) break out of the constrained content
 * column. The classic trick can push a page 1px wider than the viewport
 * when a scrollbar is present -- overflow-x:hidden on the two root
 * elements is the standard, safe guard against that, not a mask for
 * unrelated layout bugs (verified via Playwright after every deploy). */
html, body {
	overflow-x: hidden;
}
.ff-bleed {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* ---------- section rhythm: alternating material, not dark-on-dark ---------- */
.ff-section--paper {
	background: var(--wp--preset--color--paper);
	color: var(--wp--preset--color--ink);
	padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}
.ff-section--paper h2,
.ff-section--paper h3 {
	color: var(--wp--preset--color--ink);
}
.ff-section--paper .ff-eyebrow {
	color: var(--wp--preset--color--red);
}
/* the site-wide .has-text-muted-color utility is tuned for the dark
 * sections (a cool gray-blue) -- on the warm paper background it both
 * clashes and fails contrast, so it gets a warm, paper-appropriate muted
 * tone instead. Both rules carry WP's own !important; this one wins on
 * specificity (two classes vs. one). */
.ff-section--paper .has-text-muted-color {
	color: #6b6355 !important;
}
.ff-section--navy {
	background: var(--wp--preset--color--navy);
	color: var(--wp--preset--color--text);
	padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}
.ff-section-inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* a thin red/white/blue rule -- the one place stripes are allowed, and
 * only ever this thin */
.ff-old-glory-rule {
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--wp--preset--color--navy) 0%,
		var(--wp--preset--color--navy) 33%,
		var(--wp--preset--color--paper) 33%,
		var(--wp--preset--color--paper) 66%,
		var(--wp--preset--color--red) 66%,
		var(--wp--preset--color--red) 100%
	);
	opacity: 0.7;
}

/* ---------- header: sticky, translucent-on-scroll ---------- */
.ff-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 14, 22, 0.72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	padding: 0.9rem 1.5rem;
	transition: background-color 0.25s var(--ff-ease), border-color 0.25s var(--ff-ease);
}
.ff-site-header.is-scrolled {
	background: rgba(10, 14, 22, 0.92);
	border-bottom-color: var(--wp--preset--color--rule);
}
.ff-site-header a,
.ff-site-header .wp-block-site-title a {
	color: var(--wp--preset--color--text);
	text-decoration: none;
}
.ff-wordmark.wp-block-site-title a {
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.ff-wordmark.wp-block-site-title a::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 0.5em;
	border-radius: 50%;
	background: var(--wp--preset--color--green);
	box-shadow: 0 0 8px var(--wp--preset--color--green);
	vertical-align: middle;
}
.ff-header-inner {
	gap: 1.75rem;
}
.ff-nav {
	font-family: var(--wp--preset--font-family--public-sans);
}
.ff-site-header .wp-block-navigation__responsive-container-open,
.ff-site-header .wp-block-navigation__responsive-container-close {
	color: var(--wp--preset--color--text);
}
.ff-site-header .wp-block-navigation__responsive-container-open svg,
.ff-site-header .wp-block-navigation__responsive-container-close svg {
	fill: var(--wp--preset--color--text);
}
/* !important is necessary here: core's navigation-block CSS ships a
 * deliberately doubled-class selector
 * (.wp-block-navigation-item__content.wp-block-navigation-item__content)
 * specifically to out-specificity ordinary theme overrides with
 * `color: inherit`. This is the standard, expected way to win against it. */
.ff-site-header .ff-nav a {
	color: var(--wp--preset--color--text-muted) !important;
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding-bottom: 0.3rem;
	border-bottom: 2px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}
.ff-site-header .ff-nav a:hover,
.ff-site-header .ff-nav a:focus-visible {
	color: var(--wp--preset--color--text) !important;
	border-bottom-color: var(--wp--preset--color--green);
}
.ff-nav .wp-block-navigation__responsive-container.is-menu-open {
	background: var(--wp--preset--color--bg);
}

/* header search (core/search block) */
.ff-header-search.wp-block-search {
	width: auto;
	max-width: 220px;
}
.ff-header-search .wp-block-search__input {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--rule);
	color: var(--wp--preset--color--text);
	border-radius: 3px;
	font-size: 0.85rem;
	padding: 0.4rem 0.7rem;
}
.ff-header-search .wp-block-search__input::placeholder {
	color: var(--wp--preset--color--text-muted);
}
.ff-header-search .wp-block-search__input:focus {
	outline: 2px solid var(--wp--preset--color--cyan);
	outline-offset: 1px;
}
.ff-header-search .wp-block-search__button {
	display: none;
}

/* Below the WP nav block's own mobile breakpoint (~600px) the nav itself
 * collapses to a small hamburger, but the header-inner row (wordmark + nav
 * + search/CTA group) was set to nowrap for the desktop layout and doesn't
 * shrink on its own. Drop the search input on mobile -- it's the least
 * essential of the three (category nav + the Decision Console cover
 * findability) -- and keep the "Today's Deals" CTA, which is the one
 * required to stay prominent on every viewport. */
@media (max-width: 600px) {
	.ff-header-search {
		display: none;
	}
	.ff-header-inner {
		flex-wrap: wrap;
		row-gap: 0.6rem;
	}
	.ff-header-cta.wp-block-button .wp-block-button__link {
		padding: 0.5rem 0.9rem;
		font-size: 0.8rem;
	}
}

/* header CTA */
.ff-header-cta.wp-block-button .wp-block-button__link {
	background: var(--wp--preset--color--green);
	color: #08101f;
	font-size: 0.85rem;
	padding: 0.55rem 1.1rem;
	border-radius: 3px;
	white-space: nowrap;
}
.ff-header-cta.wp-block-button .wp-block-button__link:hover {
	background: #6ee89a;
}

/* ---------- status / signal chip language (New / Used / Skip It) ---------- */
.ff-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	padding: 0.32rem 0.7rem;
	border-radius: 999px;
	border: 1px solid var(--wp--preset--color--rule);
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--text-muted);
}
.ff-chip::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex: none;
}
.ff-chip--new    { color: var(--wp--preset--color--cyan); }
.ff-chip--used   { color: var(--wp--preset--color--green); }
.ff-chip--skip   { color: var(--wp--preset--color--amber); }
.ff-chip--signal { color: var(--wp--preset--color--green); }

@media not (prefers-reduced-motion: reduce) {
	.ff-chip--live::before {
		animation: ff-pulse 2.2s ease-in-out infinite;
	}
}
@keyframes ff-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

/* ---------- hero: photographic ---------- */
.ff-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	background-image:
		linear-gradient(100deg, rgba(6, 9, 14, 0.92) 0%, rgba(6, 9, 14, 0.62) 40%, rgba(6, 9, 14, 0.22) 68%, rgba(6, 9, 14, 0.55) 100%),
		linear-gradient(0deg, rgba(6, 9, 14, 0.75) 0%, rgba(6, 9, 14, 0) 32%),
		url('../images/hero/hero-golf-course-sunset.jpg');
	background-size: cover, cover, cover;
	background-position: left center, center, center 68%;
	background-repeat: no-repeat;
}
.ff-hero-inner {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(6rem, 14vh, 9rem) 1.5rem clamp(2.5rem, 6vh, 4rem);
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: end;
}
@media (max-width: 900px) {
	.ff-hero {
		min-height: 82vh;
		align-items: stretch;
	}
	.ff-hero-inner {
		grid-template-columns: 1fr;
		align-items: start;
		padding-top: clamp(4.5rem, 20vh, 7rem);
	}
}
.ff-hero-eyebrow {
	margin-bottom: 1.1rem;
}
.ff-hero h1 {
	margin: 0 0 1.1rem;
	text-wrap: balance;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.ff-hero-sub {
	font-size: 1.15rem;
	color: #cfd6e2;
	max-width: 46ch;
	margin: 0 0 2rem;
	line-height: 1.6;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.ff-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}
.ff-hero-ctas .wp-block-button__link {
	font-size: 0.98rem;
	padding: 0.85rem 1.5rem;
}
.ff-hero-ctas .is-style-ff-military .wp-block-button__link {
	background: transparent;
	border: 1px solid rgba(237, 240, 243, 0.4);
	color: var(--wp--preset--color--text);
}
.ff-hero-ctas .is-style-ff-military .wp-block-button__link:hover {
	border-color: var(--wp--preset--color--red);
	color: #ff8f85;
}

/* the status panel: a secondary overlay now, not the hero's main feature */
.ff-terminal {
	background: rgba(10, 14, 22, 0.58);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
	max-width: 360px;
	margin-left: auto;
}
@media (max-width: 900px) {
	.ff-terminal {
		max-width: none;
		margin-top: 1.75rem;
	}
}
.ff-terminal-bar {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 0.85rem;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ff-terminal-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
}
.ff-terminal-title {
	margin-left: 0.4rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--text-muted);
}
.ff-terminal-body {
	padding: 0.9rem 1rem 1.05rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.ff-terminal-row {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.76rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	opacity: 0;
	transform: translateY(6px);
}
.ff-terminal-row:last-child { border-bottom: none; }
.ff-terminal-row .dot {
	flex: none;
	width: 7px;
	height: 7px;
	border-radius: 50%;
}
.ff-terminal-row .label {
	color: var(--wp--preset--color--text);
	letter-spacing: 0.01em;
}
.ff-terminal-row.is-in { opacity: 1; transform: none; }
@media not (prefers-reduced-motion: reduce) {
	.ff-terminal-row {
		transition: opacity 0.5s var(--ff-ease), transform 0.5s var(--ff-ease);
	}
}
@media (prefers-reduced-motion: reduce) {
	.ff-terminal-row { opacity: 1; transform: none; }
}
.ff-terminal-row .dot--green { background: var(--wp--preset--color--green); }
.ff-terminal-row .dot--cyan { background: var(--wp--preset--color--cyan); }
.ff-terminal-row .dot--amber { background: var(--wp--preset--color--amber); }
.ff-terminal-cursor {
	display: inline-block;
	width: 8px;
	height: 1em;
	background: var(--wp--preset--color--green);
	margin-left: 2px;
	vertical-align: text-bottom;
}
@media not (prefers-reduced-motion: reduce) {
	.ff-terminal-cursor { animation: ff-blink 1.1s steps(1) infinite; }
}
@keyframes ff-blink {
	0%, 49% { opacity: 1; }
	50%, 100% { opacity: 0; }
}

/* ---------- scroll reveal (generic, JS-toggled) ---------- */
.ff-reveal {
	opacity: 0;
	transform: translateY(16px);
}
.ff-reveal.is-in {
	opacity: 1;
	transform: none;
}
@media not (prefers-reduced-motion: reduce) {
	.ff-reveal {
		transition: opacity 0.6s var(--ff-ease), transform 0.6s var(--ff-ease);
	}
}
@media (prefers-reduced-motion: reduce) {
	.ff-reveal { opacity: 1; transform: none; }
}

/* ---------- Decision Console ---------- */
.ff-console {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--rule);
	border-radius: 12px;
	max-width: 1200px;
	margin: 0 auto clamp(3rem, 6vw, 5rem);
	padding: clamp(1.5rem, 4vw, 2.75rem);
}
.ff-console-head {
	margin-bottom: 1.6rem;
}
.ff-console-head h2 {
	margin: 0.4rem 0 0.5rem;
}
.ff-console-head p {
	color: var(--wp--preset--color--text-muted);
	margin: 0;
	max-width: 60ch;
}
.ff-console-step {
	display: none;
}
.ff-console-step.is-active {
	display: block;
}
.ff-console-options {
	display: flex;
	flex-direction: column;
}
.ff-console-option {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	text-align: left;
	background: none;
	border: none;
	border-bottom: 1px solid var(--wp--preset--color--rule);
	border-radius: 0;
	padding: 1.35rem 0.75rem;
	color: var(--wp--preset--color--text);
	cursor: pointer;
	font: inherit;
	width: 100%;
	position: relative;
	transition: background-color 0.15s ease, padding-left 0.15s ease;
}
.ff-console-options .ff-console-option:first-child {
	border-top: 1px solid var(--wp--preset--color--rule);
}
.ff-console-option::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--wp--preset--color--green);
	transform: scaleY(0);
	transition: transform 0.15s ease;
}
.ff-console-option:hover,
.ff-console-option:focus-visible {
	background: rgba(74, 222, 128, 0.06);
	padding-left: 1.15rem;
	outline: none;
}
.ff-console-option:hover::before,
.ff-console-option:focus-visible::before {
	transform: scaleY(1);
}
.ff-console-option .opt-icon {
	flex: none;
	width: 34px;
	height: 34px;
	color: var(--wp--preset--color--green);
}
.ff-console-option .opt-icon svg {
	width: 100%;
	height: 100%;
}
.ff-console-option .opt-text {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}
.ff-console-option .opt-label {
	font-family: var(--wp--preset--font-family--fraunces);
	font-weight: 600;
	font-size: 1.3rem;
}
.ff-console-option .opt-sub {
	font-size: 0.88rem;
	color: var(--wp--preset--color--text-muted);
}
.ff-console-back {
	background: none;
	border: none;
	color: var(--wp--preset--color--text-muted);
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	padding: 0;
	margin-bottom: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
}
.ff-console-back:hover { color: var(--wp--preset--color--text); }
.ff-console-result {
	border: 1px solid var(--wp--preset--color--rule);
	border-radius: 8px;
	padding: 1.5rem;
	background: var(--wp--preset--color--surface-2);
}
.ff-console-result .result-eyebrow {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--wp--preset--color--green);
	margin: 0 0 0.6rem;
}
.ff-console-result p.result-principle {
	font-size: 1.15rem;
	font-family: var(--wp--preset--font-family--fraunces);
	color: var(--wp--preset--color--text);
	margin: 0 0 1.3rem;
	max-width: 55ch;
}
.ff-console-result .wp-block-button__link {
	font-size: 0.9rem;
}
.ff-console noscript {
	display: block;
	color: var(--wp--preset--color--text-muted);
	font-size: 0.9rem;
}
.ff-console noscript a {
	color: var(--wp--preset--color--cyan);
}

/* ---------- card architecture (reusable pattern; not populated on the
   homepage until real posts exist) ---------- */
.ff-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}
.ff-card {
	display: flex;
	flex-direction: column;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--rule);
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.2s var(--ff-ease), border-color 0.2s var(--ff-ease);
}
.ff-card:hover {
	transform: translateY(-3px);
	border-color: var(--wp--preset--color--rule);
}
.ff-card-media {
	aspect-ratio: 16 / 10;
	background: var(--wp--preset--color--surface-2);
}
.ff-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ff-card-body {
	padding: 1.1rem 1.2rem 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	flex: 1;
}
.ff-card-kicker {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--text-muted);
}
.ff-card-title {
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--wp--preset--color--text);
	margin: 0;
}
.ff-card-title a {
	color: inherit;
	text-decoration: none;
}
.ff-card-title a:hover { color: var(--wp--preset--color--cyan); }
.ff-card-dek {
	font-size: 0.9rem;
	color: var(--wp--preset--color--text-muted);
	margin: 0;
}
.ff-card-foot {
	margin-top: auto;
	padding-top: 0.6rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	color: var(--wp--preset--color--text-muted);
}
/* per-type accent bar */
.ff-card--verdict  { border-top: 3px solid var(--wp--preset--color--green); }
.ff-card--guide    { border-top: 3px solid var(--wp--preset--color--cyan); }
.ff-card--new-used { border-top: 3px solid var(--wp--preset--color--green); }
.ff-card--military  { border-top: 3px solid var(--wp--preset--color--amber); }
.ff-card--deal     { border-top: 3px solid var(--wp--preset--color--cyan); }
.ff-card--improve  { border-top: 3px solid var(--wp--preset--color--rule); }

/* ---------- full-bleed photographic editorial break ----------
 * A real lazy-loaded <img>, not a CSS background-image: this section is
 * below the fold, and background-images load eagerly regardless of scroll
 * position -- loading="lazy" on a real element is the only way to defer it. */
.ff-editorial-break {
	position: relative;
	height: clamp(280px, 45vh, 460px);
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.ff-editorial-break img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	z-index: 0;
}
.ff-editorial-break::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(6, 9, 14, 0.8) 0%, rgba(6, 9, 14, 0) 40%);
	z-index: 1;
}
.ff-editorial-break-caption {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 1.5rem 1.6rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(237, 240, 243, 0.85);
}

/* ---------- Military Golf: patriotic photographic section ----------
 * Same lazy-<img> treatment as the editorial break, for the same reason. */
.ff-military-section {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}
.ff-military-section img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 25%;
	z-index: 0;
}
.ff-military-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(9, 15, 28, 0.94) 0%, rgba(9, 15, 28, 0.75) 45%, rgba(9, 15, 28, 0.55) 100%);
	z-index: 1;
}
.ff-military-inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
@media (max-width: 900px) {
	.ff-military-inner {
		grid-template-columns: 1fr;
	}
}
.ff-military-eyebrow {
	color: var(--wp--preset--color--red);
	border-color: rgba(168, 52, 43, 0.5);
	background: rgba(168, 52, 43, 0.12);
}
.ff-military-section h2 {
	margin: 0.9rem 0 1.1rem;
	text-wrap: balance;
}
.ff-military-section p {
	color: #d7dce6;
	max-width: 52ch;
	line-height: 1.65;
}
.ff-military-status {
	background: rgba(10, 14, 22, 0.55);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	padding: 1.4rem 1.5rem;
}
.ff-military-status h3 {
	font-family: var(--wp--preset--font-family--mono);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.82rem;
	color: var(--wp--preset--color--text-muted);
	margin: 0 0 0.9rem;
}
.ff-military-status p {
	font-size: 0.92rem;
	color: var(--wp--preset--color--text);
	max-width: none;
	margin: 0 0 1.1rem;
}
.ff-military-status .ff-chip {
	background: rgba(74, 222, 128, 0.1);
}

/* ---------- explore / category grid (real links, colored per category --
   no photography here yet, see assets/images/SOURCES.md) ---------- */
.ff-explore-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1px;
	background: var(--wp--preset--color--rule);
	border: 1px solid var(--wp--preset--color--rule);
	border-radius: 10px;
	overflow: hidden;
}
.ff-explore-tile {
	background: var(--wp--preset--color--surface);
	padding: 2rem 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	text-decoration: none;
	color: var(--wp--preset--color--text);
	border-top: 3px solid var(--ff-tile-accent, var(--wp--preset--color--green));
	transition: background-color 0.15s ease;
}
.ff-explore-tile:hover {
	background: var(--wp--preset--color--surface-2);
}
.ff-explore-tile .opt-icon {
	width: 28px;
	height: 28px;
	color: var(--ff-tile-accent, var(--wp--preset--color--green));
}
.ff-explore-tile .opt-icon svg { width: 100%; height: 100%; }
.ff-explore-tile .tile-label {
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: 1.15rem;
	font-weight: 600;
}
.ff-explore-tile .tile-sub {
	font-size: 0.84rem;
	color: var(--wp--preset--color--text-muted);
	line-height: 1.5;
}

/* ---------- Verdict legend (explainer, not a populated review) ---------- */
.ff-verdict-legend {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}
.ff-verdict-legend-item {
	padding: 1.3rem 1.4rem;
	background: var(--wp--preset--color--surface-2);
	border: 1px solid var(--wp--preset--color--rule);
	border-radius: 8px;
}
.ff-verdict-legend-item .ff-chip {
	margin-bottom: 0.7rem;
}
.ff-verdict-legend-item p {
	font-size: 0.86rem;
	color: var(--wp--preset--color--text-muted);
	margin: 0;
	line-height: 1.55;
}

/* ---------- Intel / community CTA band ---------- */
.ff-cta-band {
	background: var(--wp--preset--color--navy);
	padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
	text-align: center;
}
.ff-cta-band-inner {
	max-width: 640px;
	margin: 0 auto;
}
.ff-cta-band h2 {
	margin: 0.7rem 0 0.8rem;
}
.ff-cta-band p {
	color: #cfd6e2;
	margin: 0 0 1.6rem;
}

/* ---------- market board / military tracker shells (dev-flag gated in
   PHP; this CSS is inert on the live homepage since nothing renders it) ---------- */
.ff-board-table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.85rem;
}
.ff-board-table th,
.ff-board-table td {
	text-align: left;
	padding: 0.7rem 0.9rem;
	border-bottom: 1px solid var(--wp--preset--color--rule);
}
.ff-board-table th {
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.7rem;
	color: var(--wp--preset--color--text-muted);
}
.ff-board-wrap {
	overflow-x: auto;
	border: 1px solid var(--wp--preset--color--rule);
	border-radius: 8px;
}

/* ---------- post template: eyebrow + meta row ---------- */
.ff-eyebrow {
	font-family: var(--wp--preset--font-family--mono);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	color: var(--wp--preset--color--green);
	margin-bottom: 0.4rem;
}
.ff-meta-row {
	font-size: 0.85rem;
	color: var(--wp--preset--color--text-muted);
	padding: 0.9rem 0;
	border-top: 1px solid var(--wp--preset--color--rule);
	border-bottom: 1px solid var(--wp--preset--color--rule);
	margin-bottom: 2.2rem;
	gap: 1.4rem;
}
.ff-meta-item {
	gap: 0.4em;
	align-items: baseline;
}
.ff-meta-label {
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.72rem;
	color: var(--wp--preset--color--text-muted);
	margin: 0;
}
.ff-meta-value {
	font-family: var(--wp--preset--font-family--mono);
	font-variant-numeric: tabular-nums;
	color: var(--wp--preset--color--text);
	font-weight: 500;
}
.ff-meta-value--updated {
	color: var(--wp--preset--color--cyan);
}

/* ---------- reserved ad space ---------- */
.ff-ad-slot {
	background: var(--wp--preset--color--surface);
	border: 1px dashed var(--wp--preset--color--rule);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 2.6rem auto;
}
.ff-ad-slot .ff-ad-label {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--text-muted);
	margin: 0;
}
.ff-ad-slot--rect {
	height: 250px;
	max-width: 300px;
}
.ff-ad-slot--banner {
	height: 120px;
	width: 100%;
}

/* ---------- footer ---------- */
.ff-site-footer {
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--text);
	padding: 3rem 1.5rem 2.4rem;
	margin-top: 3rem;
	border-top: 1px solid var(--wp--preset--color--rule);
}
.ff-footer-links {
	gap: 1.4rem;
	margin-bottom: 1.4rem;
}
.ff-footer-links a {
	color: var(--wp--preset--color--text);
	text-decoration: none;
	font-size: 0.88rem;
}
.ff-footer-links a:hover {
	color: var(--wp--preset--color--green);
}
.ff-footer-disclosure {
	font-size: 0.82rem;
	line-height: 1.6;
	color: var(--wp--preset--color--text-muted);
	max-width: 68ch;
	border-top: 1px solid var(--wp--preset--color--rule);
	padding-top: 1.2rem;
}
.ff-footer-copyright {
	font-size: 0.78rem;
	color: var(--wp--preset--color--text-muted);
	margin-top: 1.2rem;
}

/* ---------- utility ---------- */
.ff-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
