/**
 * Climbing Industry — v2
 *
 * Bold outdoor editorial: full-bleed imagery, oversized display type, high
 * contrast, generous whitespace.
 *
 * Everything is scoped under .ci-v2 (set via body_class) so this file cannot
 * leak into the v1 Elementor pages even when both exist side by side.
 *
 * Lives in assets/v2/ rather than assets/css/ because inc/setup/enqueue.php
 * auto-enqueues everything under assets/css/ on every page of the site.
 */

.ci-v2 {
	--ink: #0b0b0c;
	--paper: #ffffff;
	--stone: #f4f3f1;
	--line: #e2e0dc;
	--muted: #6b6b70;
	--accent: #e8452c;

	--shell: 1280px;
	--gap: clamp(1rem, 3vw, 2rem);

	--font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);

	background: var(--paper);
	color: var(--ink);
	font-family: var(--font);
	-webkit-font-smoothing: antialiased;
}

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

.ci-v2 img {
	max-width: 100%;
	height: auto;
	display: block;
}

.ci-v2-shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gap);
}

/* =========================================================== motion base = */

/* Initial hidden states are scoped to .ci-v2-js, a class the head script adds
   before first paint. If JavaScript never runs, none of this applies and the
   page renders plainly visible rather than stranded at opacity 0. */

.ci-v2-js [data-reveal] {
	opacity: 0;
	transform: translate3d(0, 26px, 0);
	transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
	will-change: opacity, transform;
}

.ci-v2-js [data-reveal].is-revealed {
	opacity: 1;
	transform: none;
	will-change: auto;
}

/* Line-by-line headline reveal: each line rides up from behind a clip edge. */
.ci-v2-line {
	display: block;
	overflow: hidden;
}

.ci-v2-js [data-ci-split] .ci-v2-line > * ,
.ci-v2-js [data-ci-split] .ci-v2-line {
	will-change: transform;
}

.ci-v2-js [data-ci-split] .ci-v2-line {
	transform: translate3d(0, 100%, 0);
	opacity: 0;
	transition: transform 0.9s var(--ease), opacity 0.6s var(--ease);
}

.ci-v2-js [data-ci-split].is-revealed .ci-v2-line {
	transform: none;
	opacity: 1;
}

/* Scroll progress bar */
.ci-v2-progress {
	position: fixed;
	inset: 0 0 auto 0;
	height: 3px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: 0 50%;
	z-index: 100;
	pointer-events: none;
}

[data-ci-parallax] {
	will-change: transform;
}

[data-ci-tilt],
[data-ci-magnetic] {
	transition: transform 0.45s var(--ease);
}

.ci-v2-skip {
	position: absolute;
	left: -9999px;
}

.ci-v2-skip:focus {
	left: 1rem;
	top: 1rem;
	z-index: 100;
	background: var(--ink);
	color: var(--paper);
	padding: 0.75rem 1rem;
	border-radius: 4px;
}

/* ---------------------------------------------------------------- header - */

.ci-v2-announce {
	background: var(--ink);
	color: var(--paper);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.6rem 0;
	text-align: center;
}

.ci-v2-announce-sep {
	margin-inline: 0.75rem;
	opacity: 0.5;
}

.ci-v2-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

.ci-v2-header {
	transition: transform 0.45s var(--ease), box-shadow 0.3s var(--ease);
}

.ci-v2-header.is-scrolled {
	box-shadow: 0 1px 20px rgba(11, 11, 12, 0.09);
}

/* Tucks away while scrolling down, returns instantly on scroll up. */
.ci-v2-header.is-tucked {
	transform: translate3d(0, -100%, 0);
}

.ci-v2-header.is-scrolled .ci-v2-header-inner {
	min-height: 62px;
}

.ci-v2-header-inner {
	transition: min-height 0.35s var(--ease);
}

.ci-v2-header-inner {
	display: flex;
	align-items: center;
	gap: var(--gap);
	min-height: 76px;
}

.ci-v2-logo img {
	width: auto;
	max-height: 40px;
}

.ci-v2-logo-text {
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: 1.15rem;
}

.ci-v2-nav {
	margin-inline: auto;
}

.ci-v2-nav ul {
	display: flex;
	gap: clamp(1rem, 2.5vw, 2.25rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ci-v2-nav a {
	color: var(--ink);
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding-block: 0.35rem;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s var(--ease);
}

.ci-v2-nav a:hover,
.ci-v2-nav a:focus-visible {
	border-bottom-color: var(--accent);
}

.ci-v2-actions {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-left: auto;
}

.ci-v2-icon-btn {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	border-radius: 50%;
	position: relative;
	transition: background 0.2s var(--ease);
}

.ci-v2-icon-btn:hover {
	background: var(--stone);
}

.ci-v2-icon-btn svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ci-v2-cart-count {
	position: absolute;
	top: 3px;
	right: 3px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 9px;
	background: var(--accent);
	color: #fff;
	font-size: 0.66rem;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

.ci-v2-cart-count.is-empty {
	display: none;
}

/* burger */
.ci-v2-burger {
	display: none;
	flex-direction: column;
	gap: 4px;
}

.ci-v2-burger span {
	display: block;
	width: 19px;
	height: 2px;
	background: currentColor;
	transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.ci-v2-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.ci-v2-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.ci-v2-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* search drawer */
.ci-v2-search {
	border-top: 1px solid var(--line);
	background: var(--paper);
	padding: 1.1rem 0;
}

.ci-v2-search[hidden] {
	display: none;
}

.ci-v2-search form {
	display: flex;
	gap: 0.5rem;
}

.ci-v2-search input[type="search"] {
	flex: 1;
	border: 1px solid var(--line);
	border-radius: 2px;
	padding: 0.8rem 1rem;
	font: inherit;
}

.ci-v2-search button {
	border: 0;
	background: var(--ink);
	color: var(--paper);
	padding-inline: 1.5rem;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	border-radius: 2px;
}

/* mobile drawer */
.ci-v2-drawer {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: var(--paper);
	padding: 6rem var(--gap) 2rem;
	overflow-y: auto;
}

.ci-v2-drawer[hidden] {
	display: none;
}

.ci-v2-js .ci-v2-drawer {
	opacity: 0;
	transition: opacity 0.3s var(--ease);
}

.ci-v2-js .ci-v2-drawer.is-open {
	opacity: 1;
}

.ci-v2-drawer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ci-v2-js .ci-v2-drawer li {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.ci-v2-js .ci-v2-drawer.is-open li {
	opacity: 1;
	transform: none;
}

.ci-v2-drawer a {
	display: block;
	padding: 1.05rem 0;
	border-bottom: 1px solid var(--line);
	color: var(--ink);
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* ------------------------------------------------------------------ type - */

.ci-v2-display {
	font-size: clamp(2.9rem, 9vw, 7rem);
	line-height: 0.94;
	letter-spacing: -0.035em;
	font-weight: 800;
	margin: 0;
	text-wrap: balance;
}

.ci-v2-display em {
	font-style: italic;
	font-weight: 300;
}

.ci-v2-display-sm {
	font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.ci-v2-h2 {
	font-size: clamp(1.7rem, 3.6vw, 3rem);
	line-height: 1.04;
	letter-spacing: -0.03em;
	font-weight: 800;
	margin: 0;
	text-wrap: balance;
}

.ci-v2-eyebrow {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 1rem;
}

.ci-v2-center {
	text-align: center;
}

.ci-v2-lede {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.55;
	color: var(--muted);
	max-width: 46ch;
	margin: 1.5rem 0 0;
}

/* --------------------------------------------------------------- buttons - */

.ci-v2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	background: var(--ink);
	color: var(--paper);
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	border-radius: 2px;
	transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.ci-v2-btn:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

.ci-v2-btn-ghost {
	background: transparent;
	color: var(--ink);
	box-shadow: inset 0 0 0 1.5px currentColor;
}

.ci-v2-btn-ghost:hover {
	background: var(--ink);
	color: var(--paper);
}

.ci-v2-btn-invert {
	background: var(--paper);
	color: var(--ink);
}

.ci-v2-btn-ghost-invert {
	background: transparent;
	color: var(--paper);
	box-shadow: inset 0 0 0 1.5px currentColor;
}

.ci-v2-btn-ghost-invert:hover {
	background: var(--paper);
	color: var(--ink);
}

.ci-v2-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2.25rem;
}

.ci-v2-arrow {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap;
}

.ci-v2-arrow::after {
	content: " \2192";
	transition: transform 0.2s var(--ease);
	display: inline-block;
}

a:hover > .ci-v2-arrow::after,
.ci-v2-arrow:hover::after {
	transform: translateX(4px);
}

/* ------------------------------------------------------------------ hero - */

.ci-v2-hero {
	position: relative;
	background: var(--stone);
	overflow: hidden;
	isolation: isolate;
}

.ci-v2-hero-media {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.ci-v2-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% 50%;
}

/* keeps the oversized display type legible over product photography */
.ci-v2-hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		100deg,
		rgba(255, 255, 255, 0.97) 0%,
		rgba(255, 255, 255, 0.9) 38%,
		rgba(255, 255, 255, 0.45) 62%,
		rgba(255, 255, 255, 0) 100%
	);
}

.ci-v2-hero-inner {
	padding-block: clamp(4.5rem, 13vw, 9.5rem);
	max-width: min(var(--shell), 100%);
	position: relative;
}

/* Parallax layer needs headroom so the translate never exposes an edge. */
.ci-v2-hero-media img {
	scale: 1.12;
}

.ci-v2-scrollcue {
	position: absolute;
	left: 50%;
	bottom: clamp(1.25rem, 3vw, 2.25rem);
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: var(--ink);
}

.ci-v2-scrollcue-text {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	opacity: 0.55;
}

.ci-v2-scrollcue-line {
	width: 1px;
	height: 46px;
	background: linear-gradient(to bottom, transparent, var(--ink));
	transform-origin: 50% 0;
	animation: ci-v2-cue 2.1s var(--ease) infinite;
}

@keyframes ci-v2-cue {
	0%   { transform: scaleY(0); opacity: 0; }
	40%  { transform: scaleY(1); opacity: 1; }
	100% { transform: scaleY(1) translateY(46px); opacity: 0; }
}

/* --------------------------------------------------------------- section - */

.ci-v2-section {
	padding-block: clamp(3.5rem, 8vw, 7rem);
}

.ci-v2-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

/* ----------------------------------------------------------- cat. tiles - */

.ci-v2-tiles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1rem, 2vw, 1.75rem);
}

.ci-v2-tile {
	position: relative;
	display: block;
	text-decoration: none;
	color: var(--ink);
	background: var(--stone);
	overflow: hidden;
	border-radius: 3px;
}

.ci-v2-tile-media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.ci-v2-tile-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.ci-v2-tile:hover .ci-v2-tile-media img {
	transform: scale(1.05);
}

.ci-v2-tile-body {
	padding: clamp(1.25rem, 2.5vw, 2rem);
}

.ci-v2-tile-body h2 {
	font-size: clamp(1.6rem, 3vw, 2.5rem);
	line-height: 1;
	letter-spacing: -0.03em;
	font-weight: 800;
	margin: 0 0 0.4rem;
}

.ci-v2-tile-body p {
	color: var(--muted);
	margin: 0 0 1.1rem;
}

/* -------------------------------------------------------- filter chips - */

.ci-v2-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.ci-v2-chip {
	border: 1.5px solid var(--line);
	background: transparent;
	color: var(--muted);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	padding: 0.6rem 1.15rem;
	border-radius: 100px;
	cursor: pointer;
	transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
		background 0.25s var(--ease), transform 0.25s var(--ease);
}

.ci-v2-chip:hover {
	color: var(--ink);
	border-color: var(--ink);
	transform: translateY(-2px);
}

.ci-v2-chip.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--paper);
}

.ci-v2-grid-empty {
	color: var(--muted);
	margin: 2rem 0 0;
}

/* ----------------------------------------------------------------- grid - */

.ci-v2-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: clamp(1rem, 2vw, 1.75rem);
}

.ci-v2-card {
	text-decoration: none;
	color: var(--ink);
	display: block;
	transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

/* Filtered-out cards collapse rather than vanish, so the grid reflows
   smoothly instead of snapping. */
.ci-v2-card.is-filtered-out {
	display: none;
}

.ci-v2-card-cta {
	position: absolute;
	inset: auto 0 0 0;
	background: var(--ink);
	color: var(--paper);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-align: center;
	padding: 0.85rem;
	transform: translate3d(0, 100%, 0);
	transition: transform 0.4s var(--ease);
}

.ci-v2-card:hover .ci-v2-card-cta,
.ci-v2-card:focus-visible .ci-v2-card-cta {
	transform: none;
}

.ci-v2-card-media {
	position: relative;
	aspect-ratio: 1;
	background: var(--stone);
	overflow: hidden;
	border-radius: 3px;
	margin-bottom: 0.9rem;
}

.ci-v2-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.ci-v2-card:hover .ci-v2-card-media img {
	transform: scale(1.06);
}

.ci-v2-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: var(--accent);
	color: #fff;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.32rem 0.6rem;
	border-radius: 2px;
}

.ci-v2-card-body h3 {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0 0 0.25rem;
}

.ci-v2-price {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.ci-v2-price del {
	opacity: 0.55;
	margin-right: 0.35rem;
}

.ci-v2-price ins {
	text-decoration: none;
	color: var(--accent);
	font-weight: 700;
}

/* -------------------------------------------------------------- fighters - */

.ci-v2-fighters {
	background: var(--ink);
	color: var(--paper);
	text-align: center;
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

/* Cursor-tracked glow. --mx/--my are set by JS on fine pointers only; the
   fallback values park it centred so touch users still get a soft vignette. */
.ci-v2-fighters::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(
		420px circle at var(--mx, 50%) var(--my, 40%),
		rgba(232, 69, 44, 0.22),
		transparent 70%
	);
	transition: opacity 0.4s var(--ease);
}

.ci-v2-fighter img {
	animation: ci-v2-bob 6s ease-in-out infinite;
}

.ci-v2-fighter[data-ci-float="1"] img { animation-delay: -2s; }
.ci-v2-fighter[data-ci-float="2"] img { animation-delay: -4s; }

@keyframes ci-v2-bob {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-10px); }
}

.ci-v2-fighters-head {
	max-width: 52ch;
	margin-inline: auto;
}

.ci-v2-fighters .ci-v2-lede {
	margin-inline: auto;
	color: rgba(255, 255, 255, 0.62);
}

.ci-v2-fighter-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 3vw, 2.5rem);
	margin-top: clamp(2.5rem, 5vw, 4rem);
}

.ci-v2-fighter {
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	padding: clamp(0.75rem, 2vw, 1.5rem);
}

.ci-v2-fighter img {
	max-height: 100%;
	width: auto;
	object-fit: contain;
	transition: transform 0.5s var(--ease);
}

/* Pausing the idle bob hands transform control back to this hover state —
   without the pause the keyframes keep overwriting it every frame. */
.ci-v2-fighter:hover img {
	animation-play-state: paused;
	transform: translateY(-10px) scale(1.05);
}

.ci-v2-fighters-cta {
	justify-content: center;
}

.ci-v2-fighters .ci-v2-btn {
	background: var(--paper);
	color: var(--ink);
}

.ci-v2-fighters .ci-v2-btn:hover {
	background: var(--accent);
	color: var(--paper);
}

/* --------------------------------------------------------------- brands - */

.ci-v2-brands {
	background: var(--stone);
	overflow: hidden;
}

.ci-v2-marquee {
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ci-v2-marquee-track {
	display: flex;
	width: max-content;
}

.ci-v2-marquee-set {
	display: flex;
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
	list-style: none;
	margin: 0;
	padding: 0 clamp(1rem, 3vw, 2.5rem) 0 0;
}

.ci-v2-marquee.is-running .ci-v2-marquee-track {
	animation: ci-v2-scroll 26s linear infinite;
}

.ci-v2-marquee.is-paused .ci-v2-marquee-track {
	animation-play-state: paused;
}

/* Without JS the track simply centres and never animates. */
.ci-v2-marquee.is-static .ci-v2-marquee-track,
.ci-v2-marquee:not(.is-running) .ci-v2-marquee-track {
	width: 100%;
	justify-content: center;
}

.ci-v2-marquee:not(.is-running) .ci-v2-marquee-set:last-child {
	display: none;
}

@keyframes ci-v2-scroll {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(-50%, 0, 0); }
}

.ci-v2-marquee a {
	color: var(--ink);
	text-decoration: none;
	font-size: clamp(1.25rem, 3vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	white-space: nowrap;
	opacity: 0.38;
	transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.ci-v2-marquee a:hover,
.ci-v2-marquee a:focus-visible {
	opacity: 1;
	color: var(--accent);
}

/* ---------------------------------------------------------------- about - */

.ci-v2-about-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}

.ci-v2-about-media {
	aspect-ratio: 4 / 5;
	background: var(--stone);
	border-radius: 3px;
	overflow: hidden;
}

.ci-v2-about-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ci-v2-about-copy p:not(.ci-v2-eyebrow) {
	color: var(--muted);
	line-height: 1.65;
	margin: 1.25rem 0 0;
	max-width: 52ch;
}

.ci-v2-about-copy .ci-v2-btn {
	margin-top: 2rem;
}

/* ------------------------------------------------------------------ cta - */

.ci-v2-cta {
	background: var(--ink);
	color: var(--paper);
	padding-block: clamp(4rem, 10vw, 8rem);
	text-align: center;
}

.ci-v2-cta .ci-v2-cta-row {
	justify-content: center;
}

/* --------------------------------------------------------------- footer - */

/* Sits directly under the dark closing CTA, so it deliberately shares that
   background and separates with a hairline instead of a colour change. */
.ci-v2-footer {
	background: var(--ink);
	color: var(--paper);
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	padding-block: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.ci-v2-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: clamp(2rem, 5vw, 4rem);
}

.ci-v2-wordmark {
	font-size: clamp(1.6rem, 2.6vw, 2.3rem);
	line-height: 0.95;
	letter-spacing: -0.035em;
	font-weight: 800;
	margin: 0 0 1.1rem;
}

.ci-v2-footer-blurb {
	color: rgba(255, 255, 255, 0.58);
	line-height: 1.6;
	font-size: 0.92rem;
	margin: 0;
	max-width: 38ch;
}

.ci-v2-footer-blurb a {
	color: var(--paper);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ci-v2-footer-col h2 {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 1.1rem;
}

.ci-v2-footer-col ul,
.ci-v2-footer-contact,
.ci-v2-footer-social {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ci-v2-footer-col li,
.ci-v2-footer-contact li {
	margin-bottom: 0.6rem;
}

.ci-v2-footer-col a,
.ci-v2-footer-contact a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	font-size: 0.92rem;
	transition: color 0.2s var(--ease);
}

.ci-v2-footer-col a:hover,
.ci-v2-footer-contact a:hover {
	color: var(--paper);
}

.ci-v2-footer-contact {
	margin-top: 1.4rem;
}

.ci-v2-footer-contact a {
	font-weight: 600;
	color: var(--paper);
}

.ci-v2-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.ci-v2-footer-social a {
	color: var(--paper);
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 2px;
	transition: border-color 0.2s var(--ease);
}

.ci-v2-footer-social a:hover {
	border-bottom-color: var(--accent);
}

.ci-v2-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding-top: 1.6rem;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.ci-v2-footer-legal {
	margin: 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
}

.ci-v2-footer-legal a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ci-v2-footer-legal a:hover {
	color: var(--paper);
}

.ci-v2-footer-legal span {
	margin-inline: 0.4rem;
	opacity: 0.45;
}

.ci-v2-footer-pay {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ci-v2-footer-pay img {
	height: 24px;
	width: auto;
	background: var(--paper);
	border-radius: 3px;
	padding: 3px 6px;
}

/* ----------------------------------------------------------- responsive - */

@media (max-width: 1024px) {
	.ci-v2-nav {
		display: none;
	}

	.ci-v2-burger {
		display: flex;
	}

	.ci-v2-footer-grid {
		grid-template-columns: 1fr 1fr;
		row-gap: 2.5rem;
	}

	.ci-v2-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.ci-v2-hide-sm {
		display: none;
	}

	.ci-v2-tiles,
	.ci-v2-about-inner {
		grid-template-columns: 1fr;
	}

	.ci-v2-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.ci-v2-hero-media img {
		object-position: 78% 50%;
	}

	/* photography sits behind text at this width, so lean the scrim vertical */
	.ci-v2-hero-media::after {
		background: linear-gradient(
			170deg,
			rgba(255, 255, 255, 0.95) 0%,
			rgba(255, 255, 255, 0.86) 55%,
			rgba(255, 255, 255, 0.35) 100%
		);
	}

	.ci-v2-cta-row .ci-v2-btn {
		flex: 1 1 100%;
	}

	.ci-v2-fighter-row {
		gap: 0.5rem;
	}

	.ci-v2-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

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

	/* Reveals must land visible, not merely animate fast. The JS also adds
	   .is-revealed immediately under reduced motion; this covers the gap
	   before the script runs. */
	.ci-v2-js [data-reveal],
	.ci-v2-js [data-ci-split] .ci-v2-line {
		opacity: 1 !important;
		transform: none !important;
	}

	/* Purely decorative loops stop entirely rather than flicker. */
	.ci-v2-scrollcue-line,
	.ci-v2-fighter img {
		animation: none !important;
	}

	.ci-v2-marquee .ci-v2-marquee-track {
		animation: none !important;
	}

	.ci-v2-hero-media img {
		scale: 1;
	}
}
