/* ==========================================================================
   Everpointa: design tokens
   ========================================================================== */
:root {
	--color-black: #0b0b0c;
	--color-black-soft: #111214;
	--color-off-white: #f5f5f3;
	--color-white: #ffffff;
	--color-gray-light: #e7e7e5;
	--color-gray-mid: #9a9a96;
	--color-gray-dark: #2a2a2d;

	--color-green: #1f4d3a;
	--color-green-soft: #2f6b4f;
	--color-gold: #b08d45;

	--bg: var(--color-off-white);
	--text: var(--color-black);
	--text-muted: #55554f;
	--border: var(--color-gray-light);

	--font-heading: 'Manrope', 'Segoe UI', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;

	--section-pad-desktop: 160px;
	--section-pad-mobile: 72px;
	--gutter: clamp(24px, 6vw, 96px);
	--max-width: 1360px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: auto;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
}

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	color: inherit;
	margin: 0;
	font-weight: 600;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(40px, 6vw, 64px);
	line-height: 1.05;
	font-weight: 700;
}

h2 {
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.1;
	font-weight: 700;
}

h3 {
	font-size: clamp(19px, 2.4vw, 24px);
	line-height: 1.2;
	font-weight: 600;
}

p {
	margin: 0;
}

.eyebrow {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-green-soft);
	margin: 0 0 12px;
}

.eyebrow--on-dark {
	color: #9fd7bb;
}

.text-muted {
	color: var(--text-muted);
}

::selection {
	background: var(--color-green);
	color: var(--color-off-white);
}

:focus-visible {
	outline: 2px solid var(--color-green-soft);
	outline-offset: 3px;
	border-radius: 2px;
}

/* ==========================================================================
   Reveal-on-scroll (IntersectionObserver adds .is-visible, see main.js)
   ========================================================================== */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Guaranteed on-load fade-in for content that's already visible at the top
   of the page (page-hero blocks), so it never depends on IntersectionObserver
   timing and can't get stuck half-faded on a slow device. */
@keyframes revealImmediate {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal-immediate {
	animation: revealImmediate 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
	.reveal-immediate {
		animation: none;
	}
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	padding: 15px 28px;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
	white-space: nowrap;
}

.btn:active {
	transform: scale(0.98);
}

.btn--primary {
	background: var(--color-black);
	color: var(--color-off-white);
}

.btn--primary:hover {
	background: var(--color-green);
}

.btn--secondary {
	background: transparent;
	color: var(--color-black);
	border-color: var(--color-gray-light);
}

.btn--secondary:hover {
	border-color: var(--color-black);
}

.btn--on-dark {
	background: var(--color-off-white);
	color: var(--color-black);
}

.btn--on-dark:hover {
	background: #9fd7bb;
}

.btn--text {
	padding: 0;
	border-radius: 0;
	background: none;
	color: var(--color-black);
	border-bottom: 1px solid var(--color-gray-dark);
	font-weight: 500;
}

.btn--text:hover {
	border-color: var(--color-green);
	color: var(--color-green);
}

.btn--text-on-dark {
	padding: 0;
	border-radius: 0;
	background: none;
	color: var(--color-off-white);
	border-bottom: 1px solid var(--color-gray-dark);
	font-weight: 500;
}

.btn--text-on-dark:hover {
	border-color: #9fd7bb;
	color: #9fd7bb;
}

/* ==========================================================================
   Section layout
   ========================================================================== */
.section {
	width: 100%;
	padding: var(--section-pad-mobile) 0;
}

@media (min-width: 900px) {
	.section {
		padding: var(--section-pad-desktop) 0;
	}
}

.section-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.section--light {
	background: var(--color-off-white);
	color: var(--color-black);
}

.section--white {
	background: var(--color-white);
	color: var(--color-black);
}

.section--dark {
	background: var(--color-black);
	color: var(--color-off-white);
}

.section--dark .text-muted {
	color: #b7b7b2;
}

.page-hero {
	padding-top: calc(var(--section-pad-mobile) + 64px);
}

@media (min-width: 900px) {
	.page-hero {
		padding-top: calc(var(--section-pad-desktop) + 40px);
	}
}

.page-hero__sub {
	max-width: 560px;
	margin-top: 24px;
	font-size: 18px;
}

/* ---- Stats ---- */
.stats {
	padding-top: 64px;
	padding-bottom: 64px;
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 24px;
	border-left: 1px solid var(--border);
}

.stats__item:first-child {
	border-left: none;
}

.stats__number {
	font-family: var(--font-heading);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--color-black);
}

.stats__label {
	margin-top: 8px;
	font-size: 14px;
	color: var(--text-muted);
}

@media (max-width: 700px) {
	.stats__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.stats__item {
		border-left: none;
		border-top: 1px solid var(--border);
		padding: 24px 0 0;
	}
	.stats__item:first-child {
		border-top: none;
		padding-top: 0;
	}
}

.intro-block {
	max-width: 680px;
	margin-bottom: 72px;
}

.intro-block--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.intro-block__body {
	margin-top: 22px;
	font-size: 18px;
}

.intro-block h2 {
	margin-top: 6px;
}

.final-cta__inner {
	text-align: center;
	max-width: 620px;
	margin: 0 auto;
}

.final-cta__inner p {
	margin-top: 18px;
	font-size: 18px;
}

.final-cta__actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 36px;
	flex-wrap: wrap;
}

.generic-content__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: calc(var(--section-pad-mobile) + 64px) var(--gutter) var(--section-pad-mobile);
}

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */
.hero {
	position: relative;
	height: 100svh;
	min-height: 620px;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	background: var(--color-black);
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 11, 12, 0.55) 0%, rgba(11, 11, 12, 0.35) 40%, rgba(11, 11, 12, 0.85) 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: var(--max-width);
	margin: 0 auto;
	width: 100%;
	padding: 0 var(--gutter) 100px;
	color: var(--color-off-white);
}

.hero__content h1 {
	color: var(--color-off-white);
	max-width: 820px;
	margin-top: 18px;
}

.hero__subhead {
	max-width: 540px;
	margin-top: 24px;
	font-size: 18px;
	line-height: 1.6;
	color: #d8d8d4;
}

.hero__actions {
	display: flex;
	gap: 18px;
	align-items: center;
	margin-top: 40px;
	flex-wrap: wrap;
}

.hero__trust {
	margin-top: 28px;
	font-size: 13px;
	letter-spacing: 0.02em;
	color: #9a9a96;
}

/* ==========================================================================
   Philosophy principle grid (homepage)
   ========================================================================== */
.principle-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

.principle p {
	margin-top: 14px;
}

/* ==========================================================================
   Split sections (image+text, or heading+body)
   ========================================================================== */
.split--media {
	display: grid;
	grid-template-columns: 0.85fr 1fr;
	gap: 80px;
	align-items: center;
}

.split--media.split--reverse {
	direction: rtl;
}

.split--media.split--reverse > * {
	direction: ltr;
}

.split__media img {
	width: 100%;
	max-width: 340px;
	border-radius: 18px;
	margin: 0 auto;
}

.split__text p {
	margin-top: 20px;
	font-size: 18px;
}

.feature-split__actions {
	display: flex;
	gap: 28px;
	align-items: center;
	margin-top: 36px;
	flex-wrap: wrap;
}

.split--text-only {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.split--text-only h2 {
	margin-top: 16px;
}

.split--text-only p {
	margin-top: 0;
}

.split--text-only p + p {
	margin-top: 18px;
}

@media (max-width: 900px) {
	.split--media {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.split__media img {
		max-width: 240px;
	}
	.split--text-only {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ==========================================================================
   Approach list (dark section, homepage)
   ========================================================================== */
.approach-list {
	display: flex;
	flex-direction: column;
}

.approach-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 32px;
	padding: 36px 0;
	border-top: 1px solid var(--color-gray-dark);
}

.approach-item:last-child {
	border-bottom: 1px solid var(--color-gray-dark);
}

.approach-item__n {
	font-family: var(--font-heading);
	font-size: 15px;
	color: #6c6c68;
	padding-top: 4px;
}

.approach-item h3 {
	color: var(--color-off-white);
}

.approach-item p {
	margin-top: 10px;
	max-width: 560px;
}

@media (max-width: 900px) {
	.approach-item {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* ==========================================================================
   About page: image showcase + philosophy grid
   ========================================================================== */
.about-image {
	margin: 0;
	width: 100%;
}

.about-image img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
}

.about-image figcaption {
	max-width: var(--max-width);
	margin: 20px auto 0;
	padding: 0 var(--gutter);
	font-size: 14px;
	color: var(--text-muted);
}

.philosophy-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.philosophy-item {
	padding: 0 32px;
	border-left: 1px solid var(--border);
}

.philosophy-item:first-child {
	border-left: none;
	padding-left: 0;
}

.philosophy-item__index {
	display: block;
	font-family: var(--font-heading);
	font-size: 14px;
	color: var(--color-gold);
	margin-bottom: 18px;
}

.philosophy-item h3 {
	margin-bottom: 12px;
}

.pull-quote {
	padding-top: 96px;
	padding-bottom: 96px;
}

.pull-quote__inner {
	max-width: 840px;
	margin: 0 auto;
	text-align: center;
}

.pull-quote__inner p {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(28px, 4.2vw, 44px);
	line-height: 1.3;
	letter-spacing: -0.01em;
	margin: 0;
}

@media (max-width: 900px) {
	.philosophy-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.philosophy-item {
		border-left: none;
		padding: 32px 0 0;
		border-top: 1px solid var(--border);
	}
	.philosophy-item:first-child {
		border-top: none;
		padding-top: 0;
	}
}

/* ==========================================================================
   Brands page
   ========================================================================== */
.brand-card {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 64px;
	align-items: center;
	padding: 56px 0;
	border-bottom: 1px solid var(--border);
}

.brand-card:first-of-type {
	padding-top: 0;
}

.brand-card__media {
	background: var(--color-off-white);
	border-radius: 20px;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-card__media img {
	width: 100%;
	max-width: 220px;
}

.brand-card__media--future {
	border: 1px dashed var(--color-gray-light);
	background: transparent;
	min-height: 180px;
}

.brand-card__media--future span {
	font-family: var(--font-heading);
	font-size: 40px;
	color: var(--color-gray-mid);
}

.brand-card__status {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-green);
	background: #e7f1eb;
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.brand-card__status--future {
	color: var(--color-gray-mid);
	background: var(--color-off-white);
}

.brand-card__body h2 {
	margin: 6px 0 16px;
	font-size: clamp(26px, 3vw, 36px);
}

.brand-card__body p.text-muted {
	max-width: 560px;
	font-size: 17px;
}

.brand-card__actions {
	margin-top: 28px;
}

@media (max-width: 800px) {
	.brand-card {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 40px 0;
	}
	.brand-card__media {
		max-width: 220px;
	}
}

/* ==========================================================================
   Manifesto page
   ========================================================================== */
.manifesto-hero {
	padding-top: calc(var(--section-pad-mobile) + 64px);
	padding-bottom: 40px;
}

@media (min-width: 900px) {
	.manifesto-hero {
		padding-top: calc(var(--section-pad-desktop) + 40px);
		padding-bottom: 40px;
	}
}

.manifesto-hero__sub {
	max-width: 520px;
	margin-top: 22px;
	font-size: 18px;
	line-height: 1.6;
	color: #b7b7b2;
}

.manifesto-lines {
	background: var(--color-black);
	padding: 60px var(--gutter) 200px;
	display: flex;
	flex-direction: column;
	gap: 88px;
	max-width: 900px;
	margin: 0 auto;
}

.manifesto-line {
	position: relative;
	padding-left: 64px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(22px, 3.2vw, 36px);
	line-height: 1.35;
	letter-spacing: -0.01em;
	margin: 0;
	color: var(--color-off-white);
	opacity: 0.3;
	transition: opacity 0.4s ease-out;
}

.manifesto-line.is-current {
	opacity: 1;
}

.manifesto-line__index {
	position: absolute;
	left: 0;
	top: 0.15em;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-gold);
	letter-spacing: 0.04em;
}

@media (max-width: 640px) {
	.manifesto-line {
		padding-left: 44px;
	}
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 96px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	text-transform: none;
	letter-spacing: normal;
	background: var(--color-off-white);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px 16px;
	outline: none;
	transition: border-color 0.2s ease;
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--color-green-soft);
}

.contact-form button {
	align-self: flex-start;
	margin-top: 8px;
}

.contact-sent {
	padding: 48px;
	background: var(--color-off-white);
	border-radius: 16px;
}

.contact-sent p {
	margin-top: 10px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.contact-info__block h3 {
	margin-bottom: 10px;
}

.contact-info__block a {
	display: inline-block;
	font-size: 17px;
	color: var(--color-green);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.contact-info__block a:hover {
	border-color: var(--color-green);
}

.contact-info__block p.text-muted {
	margin-top: 8px;
	font-size: 14px;
}

@media (max-width: 800px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.contact-form__row {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
	border-bottom: 1px solid transparent;
}

.site-header--solid {
	background: rgba(245, 245, 243, 0.82);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}

.site-header--transparent.is-scrolled {
	background: rgba(245, 245, 243, 0.82);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}

.site-header__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 22px var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: 0.01em;
	color: var(--text);
}

.site-header--transparent:not(.is-scrolled) .site-header__logo {
	color: var(--color-off-white);
}

.site-header__nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

/* wp_nav_menu() with items_wrap '%3$s' outputs bare <li> with no <ul>.
   the flex layout above already handles positioning, this just kills the
   default list-item bullet marker. */
.site-header__nav li,
.mobile-menu__nav li {
	list-style: none;
	margin: 0;
}

.site-header__nav a {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
	position: relative;
	padding: 4px 0;
	transition: color 0.25s ease;
}

.site-header--transparent:not(.is-scrolled) .site-header__nav a {
	color: #d8d8d4;
}

.site-header__nav a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -2px;
	height: 1px;
	background: var(--color-green-soft);
	transition: right 0.3s ease;
}

.site-header__nav a:hover::after,
.site-header__nav .current-menu-item a::after {
	right: 0;
}

.site-header__nav a:hover {
	color: var(--text);
}

.site-header--transparent:not(.is-scrolled) .site-header__nav a:hover {
	color: var(--color-off-white);
}

.site-header__menu-btn {
	display: none;
	width: 32px;
	height: 22px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-direction: column;
	justify-content: space-between;
	z-index: 210;
}

.site-header__menu-btn span {
	display: block;
	height: 1px;
	width: 100%;
	background: var(--text);
}

.site-header--transparent:not(.is-scrolled) .site-header__menu-btn span {
	background: var(--color-off-white);
}

.mobile-menu {
	position: fixed;
	inset: 0;
	background: var(--color-black);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
}

.mobile-menu__close {
	position: absolute;
	top: 26px;
	right: var(--gutter);
	background: none;
	border: none;
	color: var(--color-off-white);
	cursor: pointer;
}

.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.mobile-menu__nav a {
	font-family: var(--font-heading);
	font-size: 34px;
	font-weight: 600;
	color: var(--color-off-white);
	transition: color 0.25s ease;
}

.mobile-menu__nav a:hover {
	color: #9fd7bb;
}

@media (max-width: 860px) {
	.site-header__nav {
		display: none;
	}
	.site-header__menu-btn {
		display: flex;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--color-black);
	color: var(--color-off-white);
	padding: 96px 0 32px;
}

.site-footer__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.site-footer__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 64px;
	padding-bottom: 72px;
	border-bottom: 1px solid var(--color-gray-dark);
}

.site-footer__brand-link {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-off-white);
}

.site-footer__tagline {
	margin-top: 14px;
	color: var(--color-gold);
	font-size: 14px;
	letter-spacing: 0.04em;
}

.site-footer__cols {
	display: flex;
	gap: 72px;
	flex-wrap: wrap;
}

.site-footer__col h3 {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8f8f8a;
	margin-bottom: 18px;
}

.site-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__col a {
	font-size: 15px;
	color: #d8d8d4;
	transition: color 0.2s ease;
}

.site-footer__col a:hover {
	color: #9fd7bb;
}

.site-footer__newsletter p {
	font-size: 14px;
	color: #9a9a96;
	max-width: 220px;
	margin-bottom: 16px;
	line-height: 1.5;
}

.newsletter-form {
	display: flex;
	border-bottom: 1px solid var(--color-gray-dark);
	padding-bottom: 10px;
	max-width: 240px;
}

.newsletter-form input {
	background: none;
	border: none;
	color: var(--color-off-white);
	font-size: 14px;
	flex: 1;
	outline: none;
	font-family: var(--font-body);
}

.newsletter-form input::placeholder {
	color: #6c6c68;
}

.newsletter-form button {
	background: none;
	border: none;
	color: #9fd7bb;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 28px;
	font-size: 13px;
	color: #6c6c68;
}

.site-footer__legal {
	display: flex;
	gap: 20px;
}

.site-footer__legal a {
	color: #6c6c68;
	transition: color 0.2s ease;
}

.site-footer__legal a:hover {
	color: #d8d8d4;
}

@media (max-width: 640px) {
	.site-footer__top {
		gap: 40px;
	}
	.site-footer__cols {
		gap: 40px;
	}
}

/* ==========================================================================
   Legal pages (Privacy, Terms)
   ========================================================================== */
.legal__inner {
	max-width: 720px;
}

.legal__updated {
	margin-top: 16px;
	font-size: 14px;
}

.legal__body {
	margin-top: 56px;
}

.legal__body h2 {
	font-size: 22px;
	margin-top: 40px;
	margin-bottom: 14px;
}

.legal__body h2:first-child {
	margin-top: 0;
}

.legal__body p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.legal__body ul {
	margin: 12px 0 20px;
	padding-left: 20px;
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.7;
}

.legal__body ul li {
	margin-bottom: 6px;
}

.legal__body a {
	color: var(--color-green);
	border-bottom: 1px solid transparent;
}

.legal__body a:hover {
	border-color: var(--color-green);
}

.legal__disclaimer {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	font-size: 13px;
	font-style: italic;
}

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-banner {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 300;
	max-width: 640px;
	margin: 0 auto;
	background: var(--color-black);
	color: var(--color-off-white);
	border-radius: 16px;
	padding: 24px 28px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner__text {
	flex: 1 1 320px;
	font-size: 14px;
	line-height: 1.6;
	color: #d8d8d4;
	margin: 0;
}

.cookie-banner__text a {
	color: var(--color-off-white);
	border-bottom: 1px solid #6c6c68;
}

.cookie-banner__text a:hover {
	border-color: #9fd7bb;
	color: #9fd7bb;
}

.cookie-banner__actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-banner__btn {
	padding: 10px 20px;
	font-size: 14px;
}

.cookie-banner .btn--secondary {
	border-color: var(--color-gray-dark);
	color: var(--color-off-white);
}

.cookie-banner .btn--secondary:hover {
	border-color: #9a9a96;
}

@media (max-width: 640px) {
	.cookie-banner {
		left: 16px;
		right: 16px;
		bottom: 16px;
		padding: 20px;
		flex-direction: column;
		align-items: stretch;
	}
	.cookie-banner__actions {
		justify-content: stretch;
	}
	.cookie-banner__btn {
		flex: 1;
	}
}
