/*
Theme Name: Carry On Trial
Theme URI: https://hmmuller.com
Description: Independent travel-backpack reviews, long-term tests, real travel experiments, and buyer guidance for the way people actually travel.
Version: 4.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carry-on-trial
Tags: one-column, custom-menu, featured-images, translation-ready, blog, editorial
*/

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
	color-scheme: light;

	/* Editorial palette */
	--paper: #ffffff;
	--ink: #0d0d0d;
	--rule: #0d0d0d;
	--muted: #6b6b6b;
	--paper2: #f4f4f2;

	/* Typography */
	--font-display: 'Archivo', system-ui, -apple-system, sans-serif;
	--font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
	--font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

	/* Layout */
	--container-max: 80rem;   /* 1280px */
	--container-narrow: 52rem; /* ~832px article measure */
	--container-pad: clamp(16px, 4vw, 40px);

	/* Legacy aliases — map old variable names onto the editorial palette so any
	   un-rewritten rule still renders black & white. */
	--color-bg: var(--paper);
	--color-surface: var(--paper);
	--color-surface-2: var(--paper2);
	--color-border: var(--rule);
	--color-text-main: var(--ink);
	--color-text-muted: var(--muted);
	--color-text-subtle: var(--muted);
	--color-accent: var(--ink);
	--color-accent-hover: var(--ink);
	--color-accent-glow: transparent;
	--color-accent-light: var(--paper2);
	--color-accent-border: var(--rule);
	--color-red: var(--ink);
	--color-red-hover: var(--ink);
	--color-green-100: var(--paper2);
	--color-green-200: var(--paper2);
	--color-green-700: var(--ink);

	--font-heading: var(--font-display);
	--font-body: var(--font-display);
	--font-mono-legacy: var(--font-mono);

	/* Flatten radii + shadows everywhere (newspaper = square, no shadow). */
	--radius-sm: 0;
	--radius-md: 0;
	--radius-lg: 0;
	--radius-xl: 0;
	--radius-2xl: 0;
	--radius-3xl: 0;
	--radius-full: 999px; /* keep pills/avatars round where intended */

	--shadow-sm: none;
	--shadow-md: none;
	--shadow-lg: none;
	--shadow-xl: none;

	--container-padding: var(--container-pad);
}

html.cot-theme-dark {
	color-scheme: dark;
	--paper: #0d0d0d;
	--ink: #f4f3ef;
	--rule: #f4f3ef;
	--muted: #9a9a96;
	--paper2: #1a1a1a;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

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

body {
	font-family: var(--font-display);
	background: var(--paper);
	color: var(--ink);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-x: clip;
	transition: background .3s ease, color .3s ease;
}

::selection {
	background: #000;
	color: #fff;
}
html.cot-theme-dark ::selection {
	background: #fff;
	color: #000;
}

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

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

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
	color: inherit;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Full-bleed imagery (full colour). */
.cot-media-img,
.cot-card-image-wrap img,
.cot-single-featured-image img,
.cot-lead-media img,
.cot-index-thumb img,
.cot-news-thumb img,
.cot-guide-lead-media img,
.cot-bagdb-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Legacy element that no longer renders. */
.cot-grid-bg { display: none !important; }

/* ==========================================================================
   3. Layout
   ========================================================================== */

.cot-container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

.cot-container--narrow {
	max-width: var(--container-narrow);
}

.cot-main {
	flex: 1 0 auto;
	width: 100%;
	padding-bottom: clamp(40px, 6vw, 80px);
}

.cot-masthead-bar {
	height: 7px;
	background: var(--ink);
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.cot-btn-primary,
.cot-btn-secondary,
.cot-btn-find {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 13px 20px;
	border: 1px solid var(--ink);
	cursor: pointer;
	transition: background .2s ease, color .2s ease, opacity .2s ease;
	white-space: nowrap;
}

.cot-btn-primary {
	background: var(--ink);
	color: var(--paper);
}
.cot-btn-primary:hover { opacity: .82; }

.cot-btn-secondary {
	background: transparent;
	color: var(--ink);
}
.cot-btn-secondary:hover {
	background: var(--ink);
	color: var(--paper);
}

.cot-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* ==========================================================================
   5. Masthead / Navigation (centered)
   ========================================================================== */

.cot-nav {
	border-bottom: 1px solid var(--rule);
	padding-inline: var(--container-pad);
	background: var(--paper);
}

.cot-nav-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	position: relative;
	padding: 20px 0 0;
	text-align: center;
}

.cot-nav-utility {
	position: absolute;
	top: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.cot-nav-utility--left { left: 0; }
.cot-nav-utility--right { right: 0; }

/* Invert toggle — half ink / half paper circle */
.cot-theme-toggle {
	width: 34px;
	height: 34px;
	border: 1px solid var(--rule);
	background: transparent;
	padding: 0;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	flex: none;
}
.cot-theme-toggle__half { width: 50%; height: 100%; display: block; }
.cot-theme-toggle__half--ink { background: var(--ink); }
.cot-theme-toggle__half--paper { background: var(--paper); }

.cot-btn-find {
	background: var(--ink);
	color: var(--paper);
	padding: 11px 18px;
}
.cot-btn-find:hover { background: transparent; color: var(--ink); }

/* Wordmark */
.cot-logo {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(26px, 4.6vw, 52px);
	letter-spacing: -0.04em;
	text-transform: uppercase;
	line-height: 1;
	color: var(--ink);
}

/* Section nav */
.cot-nav-links {
	display: flex;
	justify-content: center;
	gap: clamp(20px, 3vw, 40px);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 16px 0 18px;
	flex-wrap: wrap;
}
.cot-nav-link {
	color: var(--ink);
	padding-bottom: 2px;
	border-bottom: 2px solid transparent;
	transition: border-color .18s ease;
}
.cot-nav-link:hover,
.cot-nav-link.is-active {
	border-bottom-color: var(--ink);
}

/* Mobile hamburger */
.cot-mobile-toggle {
	width: 38px;
	height: 38px;
	border: 1px solid var(--rule);
	background: transparent;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex: none;
}
.cot-mobile-toggle__bar {
	width: 18px;
	height: 2px;
	background: var(--ink);
	display: block;
}

/* ==========================================================================
   6. Full-screen mobile menu
   ========================================================================== */

.cot-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: var(--paper);
	color: var(--ink);
	padding: 18px var(--container-pad);
	display: none;
	flex-direction: column;
}
.cot-mobile-menu.is-open { display: flex; }
body.menu-open { overflow: hidden; }

.cot-mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--rule);
	padding-bottom: 16px;
}
.cot-mobile-menu-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 20px;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}
.cot-mobile-menu-close {
	width: 38px;
	height: 38px;
	border: 1px solid var(--rule);
	background: transparent;
	font-size: 18px;
	color: var(--ink);
	line-height: 1;
}

.cot-mobile-menu-search {
	margin-top: 16px;
}
.cot-mobile-menu-search input {
	width: 100%;
	font-family: var(--font-display);
	font-size: 15px;
	padding: 12px 14px;
	border: 1px solid var(--rule);
	background: var(--paper);
	color: var(--ink);
}

.cot-mobile-menu-links {
	display: flex;
	flex-direction: column;
	margin-top: 4px;
}
.cot-mobile-menu-link {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(28px, 9vw, 40px);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	padding: 16px 0;
	border-bottom: 1px solid var(--rule);
	color: var(--ink);
}
.cot-mobile-menu-link.is-active { color: var(--muted); }

.cot-mobile-menu-tools { padding: 18px 0; }
.cot-mobile-menu-tools-title {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 12px;
}
.cot-mobile-menu-tools-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.cot-mobile-menu-tool {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 12px;
	border: 1px solid var(--rule);
	color: var(--ink);
}

.cot-mobile-menu-cta {
	margin-top: auto;
	text-align: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	background: var(--ink);
	color: var(--paper);
	padding: 16px;
}

/* ==========================================================================
   7. Footer (dark)
   ========================================================================== */

.cot-footer {
	background: var(--ink);
	color: var(--paper);
	border-top: 1px solid var(--rule);
	padding: clamp(40px, 5vw, 64px) 0 28px;
	margin-top: auto;
}
.cot-footer-top {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	padding-bottom: 36px;
}
.cot-footer-brand { max-width: 320px; }
.cot-footer-logo {
	display: block;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 22px;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin-bottom: 14px;
	color: var(--paper);
}
.cot-footer-youtube {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border: 1px solid rgba(128, 128, 128, .55);
	color: var(--paper);
	padding: 9px 15px;
}
.cot-footer-youtube:hover { opacity: .75; }
.cot-footer-youtube-play {
	width: 0;
	height: 0;
	border-left: 9px solid currentColor;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

.cot-footer-cols {
	display: flex;
	gap: clamp(32px, 5vw, 64px);
	flex-wrap: wrap;
}
.cot-footer-col-title {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: .55;
	margin-bottom: 14px;
}
.cot-footer-col-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 14px;
}
.cot-footer-link { color: var(--paper); }
.cot-footer-link:hover { opacity: .6; }

.cot-footer-bottom {
	border-top: 1px solid rgba(128, 128, 128, .35);
	padding-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: .75;
}
.cot-footer-socials { display: flex; gap: 16px; }
.cot-footer-socials a:hover { opacity: .6; }

/* ==========================================================================
   8. Hero (front page)
   ========================================================================== */

.cot-hero {
	padding: clamp(28px, 5vw, 64px) 0 clamp(24px, 3.5vw, 44px);
}
.cot-hero-kicker {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: clamp(14px, 2vw, 22px);
	color: var(--ink);
}
.cot-hero-row {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 4vw, 56px);
	align-items: flex-end;
}
.cot-hero-title {
	flex: 1 1 540px;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(46px, 9vw, 128px);
	line-height: 0.86;
	letter-spacing: -0.045em;
	text-transform: uppercase;
	margin: 0;
}
.cot-hero-title-line { display: block; }
.cot-hero-aside {
	flex: 1 1 280px;
	max-width: 420px;
	border-top: 1px solid var(--rule);
	padding-top: 18px;
}
.cot-hero-desc {
	font-family: var(--font-serif);
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.5;
	margin: 0 0 18px;
}
.cot-hero-link {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 3px;
	color: var(--ink);
}

/* ==========================================================================
   9. Lead Review
   ========================================================================== */

.cot-lead { padding-bottom: clamp(40px, 6vw, 72px); }
.cot-lead-inner { border: 1px solid var(--rule); }
.cot-lead-media {
	position: relative;
	display: block;
	height: clamp(300px, 42vw, 540px);
	overflow: hidden;
	background: #0d0d0d;
	border-bottom: 1px solid var(--rule);
}
.cot-lead-tag {
	position: absolute;
	top: 18px;
	left: 18px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .5);
	padding: 5px 10px;
}
.cot-lead-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: clamp(20px, 3.5vw, 44px);
	background: linear-gradient(transparent, rgba(0, 0, 0, .78) 60%);
	display: block;
}
.cot-lead-meta {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .85);
	margin-bottom: 12px;
}
.cot-lead-title {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(26px, 4.4vw, 56px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: #fff;
	max-width: 18ch;
}
.cot-lead-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: clamp(16px, 2vw, 24px) clamp(18px, 3vw, 32px);
}
.cot-lead-excerpt {
	font-family: var(--font-serif);
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.5;
	margin: 0;
	flex: 1 1 420px;
	max-width: 64ch;
}

/* ==========================================================================
   10. The Index (numbered list) + section kicker
   ========================================================================== */

.cot-section-kicker {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--rule);
	padding-bottom: 10px;
	margin-bottom: clamp(16px, 2vw, 26px);
	color: var(--ink);
}

.cot-index { padding-bottom: clamp(44px, 6vw, 80px); }
.cot-index-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 2px solid var(--rule);
	padding-bottom: 12px;
	margin-bottom: 6px;
}
.cot-index-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(24px, 3.4vw, 40px);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin: 0;
}
.cot-index-all {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	padding-bottom: 6px;
}
.cot-index-all:hover { color: var(--ink); }

.cot-index-row {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.5vw, 26px);
	padding: clamp(13px, 1.6vw, 18px) 0;
	border-bottom: 1px solid var(--rule);
	color: var(--ink);
	transition: opacity .15s ease;
}
.cot-index-row:hover { opacity: .6; }
.cot-index-num {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(22px, 2.6vw, 32px);
	letter-spacing: -0.02em;
	width: clamp(40px, 4vw, 58px);
	flex: none;
}
.cot-index-thumb {
	width: 64px;
	height: 48px;
	flex: none;
	overflow: hidden;
	background: #0d0d0d;
	border: 1px solid var(--rule);
	display: block;
}
.cot-index-body { flex: 1; min-width: 0; }
.cot-index-row-title {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(17px, 2vw, 24px);
	letter-spacing: -0.015em;
	line-height: 1.15;
}
.cot-index-row-excerpt {
	display: block;
	font-family: var(--font-serif);
	font-size: 14.5px;
	color: var(--muted);
	margin-top: 5px;
}
.cot-index-row-meta {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	flex: none;
	text-align: right;
	width: clamp(74px, 8vw, 120px);
}

.cot-home-reviews { padding-bottom: clamp(44px, 6vw, 80px); }
.cot-home-reviews-footer {
	margin-top: clamp(24px, 3vw, 36px);
	display: flex;
	justify-content: center;
}

/* ==========================================================================
   11. Cards + grids
   ========================================================================== */

.cot-grid { display: grid; gap: 0; }
.cot-grid--3col,
.cot-grid--front-reviews {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cot-grid--bordered {
	border-left: 1px solid var(--rule);
	border-top: 1px solid var(--rule);
}

.cot-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border-right: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	transition: background .18s ease;
}
/* Non-bordered grids (fallback) still get an outline per card. */
.cot-grid:not(.cot-grid--bordered) .cot-card {
	border: 1px solid var(--rule);
}
.cot-card:hover { background: var(--paper2); }

.cot-card-link {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.cot-card-image-wrap {
	position: relative;
	height: 190px;
	overflow: hidden;
	background: #0d0d0d;
	border-bottom: 1px solid var(--rule);
}
.cot-card-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
}
.cot-badge-brand {
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .5);
	padding: 4px 7px;
	background: rgba(0, 0, 0, .25);
}
.cot-card-image-overlay { display: none; }
.cot-card-image-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-mono);
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 12px;
	text-align: center;
}

.cot-card-content {
	padding: 18px 18px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.cot-card-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -0.015em;
	line-height: 1.16;
	margin: 0 0 10px;
	order: 2;
}
.cot-card-tags {
	order: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}
.cot-tag {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.cot-tag + .cot-tag::before {
	content: "·";
	margin-right: 8px;
	color: var(--muted);
}
.cot-card-excerpt {
	order: 3;
	font-family: var(--font-serif);
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--muted);
	margin: 0 0 16px;
	flex: 1;
}
.cot-card-content::after {
	order: 4;
	content: "Read \2192";
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink);
	text-align: right;
	border-top: 1px solid var(--rule);
	padding-top: 12px;
}

/* ==========================================================================
   12. List heads (reviews / news / guides / archive / search)
   ========================================================================== */

.cot-list-head {
	padding: clamp(30px, 5vw, 52px) 0 clamp(18px, 2.5vw, 26px);
}
.cot-database-page .cot-list-head,
.cot-airfit-page .cot-list-head { padding-inline: 0; }

.cot-list-kicker {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 14px;
	color: var(--ink);
}
.cot-list-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(44px, 8vw, 108px);
	line-height: 0.88;
	letter-spacing: -0.045em;
	text-transform: uppercase;
	margin: 0;
}
.cot-list-title span { color: var(--muted); }
.cot-list-subtitle {
	font-family: var(--font-serif);
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.5;
	max-width: 62ch;
	margin: 18px 0 0;
}

/* ==========================================================================
   13. Review chips + filter toolbar
   ========================================================================== */

.cot-review-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	border-top: 1px solid var(--rule);
	padding-top: 18px;
	margin-bottom: 6px;
}
.cot-review-chip {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 9px 16px;
	border: 1px solid var(--rule);
	margin: 0 -1px -1px 0;
	background: transparent;
	color: var(--ink);
}
.cot-review-chip.is-active {
	background: var(--ink);
	color: var(--paper);
}

.cot-review-tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
	border-bottom: 1px solid var(--rule);
	padding: 16px 0;
	margin-top: 20px;
}
.cot-review-tools-meta {
	flex: 1 1 320px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.cot-review-results-count {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
#cot-review-helper-copy {
	font-family: var(--font-serif);
	font-size: 14px;
	color: var(--muted);
}
.cot-review-tools-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.cot-review-view-toggle {
	display: inline-flex;
	border: 1px solid var(--rule);
}
.cot-review-view-button {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 8px 14px;
	background: transparent;
	color: var(--ink);
	border-right: 1px solid var(--rule);
}
.cot-review-view-button:last-child { border-right: none; }
.cot-review-view-button.is-active {
	background: var(--ink);
	color: var(--paper);
}
.cot-review-search-toggle,
.cot-review-tools-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 8px 14px;
	border: 1px solid var(--rule);
	background: transparent;
	color: var(--ink);
}
.cot-review-search-toggle.is-active { background: var(--ink); color: var(--paper); }
.cot-review-search-toggle svg { width: 15px; height: 15px; }

.cot-review-search-panel {
	flex: 1 1 100%;
	margin-top: 4px;
}
.cot-review-search-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--rule);
	padding: 0 12px;
}
.cot-review-search-wrap svg { width: 16px; height: 16px; color: var(--muted); }
.cot-review-input {
	flex: 1;
	font-family: var(--font-display);
	font-size: 15px;
	padding: 12px 0;
	border: none;
	background: transparent;
	color: var(--ink);
	outline: none;
}
.cot-review-tools-panel {
	flex: 1 1 100%;
	margin-top: 4px;
}
.cot-review-tools-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.cot-review-select {
	font-family: var(--font-display);
	font-size: 14px;
	padding: 10px 13px;
	border: 1px solid var(--rule);
	background: var(--paper);
	color: var(--ink);
}
.cot-review-reset {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 9px 16px;
	border: 1px solid var(--rule);
	background: transparent;
	color: var(--ink);
}
.cot-review-reset:hover { background: var(--ink); color: var(--paper); }

.cot-review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-left: 1px solid var(--rule);
	border-top: 1px solid var(--rule);
	margin-top: 20px;
}
.cot-review-grid .cot-card {
	border-right: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	border-top: none;
	border-left: none;
}
/* Compact list mode */
.cot-review-grid.is-list {
	display: block;
	border-left: none;
	border-top: 1px solid var(--rule);
}
.cot-review-grid.is-list .cot-card {
	flex-direction: row;
	align-items: stretch;
	border: none;
	border-bottom: 1px solid var(--rule);
}
.cot-review-grid.is-list .cot-card-image-wrap {
	width: 160px;
	height: auto;
	flex: none;
	border-bottom: none;
	border-right: 1px solid var(--rule);
}
.cot-review-grid.is-list .cot-card-content::after { display: none; }
.cot-review-grid.is-list .cot-card-image-placeholder { position: static; }

.cot-review-empty { grid-column: 1 / -1; }

/* ==========================================================================
   14. News list
   ========================================================================== */

.cot-news-list {
	border-top: 1px solid var(--rule);
	margin-top: clamp(20px, 3vw, 30px);
}
.cot-news-row {
	display: flex;
	align-items: stretch;
	gap: clamp(16px, 3vw, 30px);
	padding: clamp(18px, 2.2vw, 26px) 0;
	border-bottom: 1px solid var(--rule);
	color: var(--ink);
	transition: opacity .15s ease;
}
.cot-news-row:hover { opacity: .7; }
.cot-news-thumb {
	width: clamp(120px, 16vw, 200px);
	align-self: stretch;
	min-height: 96px;
	flex: none;
	overflow: hidden;
	background: #0d0d0d;
	border: 1px solid var(--rule);
	display: block;
}
.cot-news-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cot-news-meta {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 9px;
}
.cot-news-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(18px, 2.2vw, 27px);
	letter-spacing: -0.02em;
	line-height: 1.13;
	margin-bottom: 8px;
}
.cot-news-excerpt {
	font-family: var(--font-serif);
	font-size: 15px;
	line-height: 1.5;
	color: var(--muted);
	max-width: 70ch;
}

/* ==========================================================================
   15. Guides
   ========================================================================== */

.cot-guide-lead {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--rule);
	margin-bottom: clamp(24px, 3vw, 40px);
	color: var(--ink);
	transition: background .18s ease;
}
.cot-guide-lead:hover { background: var(--paper2); }
.cot-guide-lead-media {
	flex: 1 1 380px;
	min-height: 300px;
	position: relative;
	overflow: hidden;
	background: #0d0d0d;
	display: block;
}
.cot-guide-lead-body {
	flex: 1 1 360px;
	padding: clamp(24px, 3vw, 44px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cot-guide-lead-kicker {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 14px;
}
.cot-guide-lead-title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin-bottom: 16px;
}
.cot-guide-lead-excerpt {
	font-family: var(--font-serif);
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.55;
	margin-bottom: 22px;
}
.cot-guide-lead-cta {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	align-self: flex-start;
	border-bottom: 2px solid var(--ink);
	padding-bottom: 3px;
}

/* ==========================================================================
   16. About
   ========================================================================== */

.cot-about { padding-top: clamp(30px, 5vw, 52px); }
.cot-about-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(44px, 8vw, 104px);
	line-height: 0.88;
	letter-spacing: -0.045em;
	text-transform: uppercase;
	margin: 0 0 26px;
}
/* ==========================================================================
   17. Single article + editorial prose
   ========================================================================== */

.cot-single { padding-top: clamp(28px, 4vw, 44px); }
.cot-single-back {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--rule);
	padding-bottom: 3px;
	color: var(--ink);
}
.cot-single-kicker {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 14px;
}
.cot-single-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(30px, 5vw, 58px);
	line-height: 0.98;
	letter-spacing: -0.035em;
	text-transform: uppercase;
	margin: 0 0 22px;
}
.cot-single-featured-image {
	position: relative;
	height: clamp(220px, 40vw, 460px);
	overflow: hidden;
	background: #0d0d0d;
	border: 1px solid var(--rule);
	margin-bottom: clamp(26px, 3.5vw, 36px);
}

/* Prose */
.cot-single-content {
	font-family: var(--font-serif);
	font-size: clamp(17px, 1.5vw, 19px);
	line-height: 1.75;
	color: var(--ink);
}
.cot-single-content > *:first-child { margin-top: 0; }
.cot-single-content p { margin: 0 0 18px; }
.cot-single-content p:first-of-type {
	font-size: clamp(19px, 2vw, 24px);
	line-height: 1.5;
	margin-bottom: 30px;
}
.cot-single-content h2 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(22px, 2.6vw, 28px);
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 32px 0 14px;
}
.cot-single-content h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(19px, 2vw, 23px);
	letter-spacing: -0.015em;
	margin: 28px 0 12px;
}
.cot-single-content h4 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	margin: 24px 0 10px;
}
.cot-single-content a {
	color: var(--ink);
	border-bottom: 1px solid var(--ink);
}
.cot-single-content a:hover { color: var(--muted); border-color: var(--muted); }
.cot-single-content ul,
.cot-single-content ol { margin: 0 0 18px; padding-left: 1.3em; }
.cot-single-content li { margin-bottom: 8px; }
.cot-single-content blockquote {
	font-style: italic;
	border-left: 3px solid var(--ink);
	padding: 2px 0 2px 22px;
	margin: 30px 0;
	font-size: clamp(20px, 2.4vw, 26px);
	line-height: 1.4;
}
.cot-single-content img,
.cot-single-content figure { margin: 24px 0; }
.cot-single-content figure img { border: 1px solid var(--rule); }
.cot-single-content figcaption {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 8px;
}
.cot-single-content hr {
	border: none;
	border-top: 1px solid var(--rule);
	margin: 32px 0;
}
.cot-single-content code {
	font-family: var(--font-mono);
	font-size: 0.85em;
	background: var(--paper2);
	padding: 2px 5px;
}
.cot-single-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-family: var(--font-display);
	font-size: 15px;
}
.cot-single-content th,
.cot-single-content td {
	border: 1px solid var(--rule);
	padding: 10px 14px;
	text-align: left;
}
.cot-single-content th {
	font-family: var(--font-mono);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Post nav */
.cot-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--rule);
	margin-top: clamp(30px, 4vw, 44px);
	padding-top: 20px;
}
.cot-post-nav a { display: flex; flex-direction: column; gap: 5px; max-width: 45%; }
.cot-post-nav-next { text-align: right; margin-left: auto; }
.cot-post-nav-label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.cot-post-nav-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	line-height: 1.2;
}
.cot-post-nav a:hover .cot-post-nav-title { color: var(--muted); }

.cot-related { padding-top: clamp(36px, 5vw, 56px); }

/* ==========================================================================
   18. Page title, pagination, no-results, 404
   ========================================================================== */

.cot-page-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(36px, 6vw, 72px);
	line-height: 0.92;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	margin: 0;
}
.cot-page-content { padding-top: clamp(24px, 4vw, 40px); }

.cot-pagination {
	margin-top: clamp(28px, 4vw, 44px);
	display: flex;
	justify-content: center;
}
.cot-pagination .page-numbers,
.cot-pagination a.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	margin: 0 -1px 0 0;
	border: 1px solid var(--rule);
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--ink);
}
.cot-pagination .page-numbers.current {
	background: var(--ink);
	color: var(--paper);
}
.cot-pagination a.page-numbers:hover { background: var(--paper2); }
.cot-pagination .nav-links { display: flex; }

.cot-no-results {
	border: 1px solid var(--rule);
	padding: 48px 24px;
	text-align: center;
	font-family: var(--font-serif);
	font-size: 17px;
	color: var(--muted);
	margin-top: 20px;
}
.cot-no-results h2 {
	font-family: var(--font-display);
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 10px;
}
.cot-no-results a:not(.cot-btn-primary):not(.cot-btn-secondary) {
	color: var(--ink);
	border-bottom: 1px solid var(--ink);
}
.cot-no-results .cot-btn-primary { margin-top: 18px; }

.cot-404 {
	padding: clamp(48px, 9vw, 120px) 0;
	text-align: center;
}
.cot-404-code {
	display: block;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(90px, 22vw, 260px);
	line-height: 0.9;
	letter-spacing: -0.05em;
}
.cot-404-title {
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	font-size: clamp(22px, 3vw, 32px);
	margin: 10px 0 12px;
}
.cot-404-text {
	font-family: var(--font-serif);
	font-size: 17px;
	color: var(--muted);
	margin-bottom: 24px;
}

/* ==========================================================================
   19. Forms (shared) + WP blocks
   ========================================================================== */

input[type="text"],
input[type="search"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select {
	font-family: var(--font-display);
	font-size: 15px;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--rule);
	border-radius: 0;
	padding: 11px 13px;
	outline: none;
}
textarea { line-height: 1.5; }
input:focus,
textarea:focus,
select:focus { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }

button[type="submit"],
input[type="submit"],
.cot-btn,
.cot-btn--primary {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 13px 20px;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--paper);
	cursor: pointer;
}
button[type="submit"]:hover,
input[type="submit"]:hover,
.cot-btn:hover { opacity: .82; }

.cot-form-message {
	border: 1px solid var(--rule);
	padding: 14px 16px;
	font-family: var(--font-serif);
	margin-bottom: 18px;
}
.cot-form-message--success { border-left: 4px solid var(--ink); }
.cot-form-message--error { border-left: 4px solid var(--ink); background: var(--paper2); }

/* Gutenberg alignment inside prose */
.entry-content .alignwide { max-width: min(100%, 1080px); margin-inline: auto; }
.entry-content .alignfull { max-width: none; }
.entry-content .wp-block-image img { border: 1px solid var(--rule); }
.entry-content .wp-block-button__link {
	border-radius: 0;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.05em;
}

/* Legacy primitive kept harmless */
.cot-glass-card { border: 1px solid var(--rule); background: var(--paper); }

/* ==========================================================================
   20. Tool: Pack Picker / Bag Database (cot-bagdb-*)
   ========================================================================== */

.cot-pack-picker-page,
.cot-airfit-page,
.cot-bag-finder-page,
.cot-database-page {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

.cot-bagdb-module { padding-top: clamp(20px, 3vw, 32px); }
.cot-bagdb-hero { margin-bottom: clamp(20px, 3vw, 34px); }
.cot-bagdb-eyebrow {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.cot-bagdb-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(36px, 6vw, 84px);
	line-height: 0.9;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.cot-bagdb-copy {
	font-family: var(--font-serif);
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.5;
	color: var(--ink);
	max-width: 64ch;
}

.cot-bagdb-layout { display: block; }
.cot-bagdb-panel {
	border: 1px solid var(--rule);
	margin-bottom: 18px;
}
.cot-bagdb-panel-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid var(--rule);
	padding: 12px 16px;
}
.cot-bagdb-panel-kicker {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}
.cot-bagdb-panel-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.cot-bagdb-panel-note {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
	max-width: 40ch;
}

.cot-bagdb-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 16px;
}
.cot-bagdb-field { display: flex; flex-direction: column; gap: 7px; }
.cot-bagdb-field--wide { grid-column: 1 / -1; }
.cot-bagdb-field > span {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}
.cot-bagdb-field select,
.cot-bagdb-field input { width: 100%; }

.cot-bagdb-advanced { border-top: 1px solid var(--rule); }
.cot-bagdb-advanced-toggle {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 16px;
	cursor: pointer;
}
.cot-bagdb-advanced-toggle::-webkit-details-marker { display: none; }
.cot-bagdb-advanced-title {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	display: block;
}
.cot-bagdb-advanced-caption {
	font-family: var(--font-serif);
	font-size: 13px;
	color: var(--muted);
	display: block;
	margin-top: 3px;
}
.cot-bagdb-advanced-state {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-left: auto;
}
.cot-bagdb-advanced-icon {
	width: 10px; height: 10px;
	border-right: 1.5px solid var(--ink);
	border-bottom: 1.5px solid var(--ink);
	transform: rotate(45deg);
	flex: none;
}
.cot-bagdb-advanced[open] .cot-bagdb-advanced-icon { transform: rotate(-135deg); }
.cot-bagdb-advanced-inner { border-top: 1px solid var(--rule); }
.cot-bagdb-grid--advanced { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.cot-bagdb-actions {
	display: flex;
	justify-content: flex-end;
	padding: 0 16px 16px;
}
.cot-bagdb-button {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 9px 16px;
	border: 1px solid var(--rule);
	background: transparent;
	color: var(--ink);
}
.cot-bagdb-button:hover,
.cot-bagdb-button--secondary:hover { background: var(--ink); color: var(--paper); }

.cot-bagdb-results { margin-top: clamp(24px, 3vw, 40px); }
.cot-bagdb-results-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	border-bottom: 2px solid var(--rule);
	padding-bottom: 12px;
}
.cot-bagdb-results-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(22px, 3vw, 34px);
	letter-spacing: -0.03em;
	text-transform: uppercase;
}
.cot-bagdb-results-meta {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.cot-bagdb-notice {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.06em;
	color: var(--muted);
	line-height: 1.7;
	margin: 14px 0;
}
.cot-bagdb-empty {
	border: 1px solid var(--rule);
	padding: 40px 20px;
	text-align: center;
	font-family: var(--font-serif);
	color: var(--muted);
}
.cot-bagdb-matches {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-left: 1px solid var(--rule);
	border-top: 1px solid var(--rule);
	margin-top: 6px;
}
.cot-bagdb-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-right: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	background: var(--paper);
}
.cot-bagdb-card:hover { background: var(--paper2); }
.cot-bagdb-media {
	position: relative;
	height: 180px;
	overflow: hidden;
	background: #0d0d0d;
	border-bottom: 1px solid var(--rule);
}
.cot-bagdb-content {
	padding: 16px 16px 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.cot-bagdb-card-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.015em;
	line-height: 1.16;
	margin: 0 0 12px;
}
.cot-bagdb-score {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 10px;
}
.cot-bagdb-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px;
}
.cot-bagdb-chip {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.04em;
	border: 1px solid var(--rule);
	padding: 4px 8px;
}
.cot-bagdb-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--rule);
	padding-top: 12px;
	margin-top: auto;
}
.cot-bagdb-link {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink);
	position: relative;
	z-index: 2;
}
.cot-bagdb-link--primary {
	font-family: var(--font-display);
	font-weight: 700;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 2px;
}

/* ==========================================================================
   21. Tool: Airline Fit Check (cot-airfit-*)
   ========================================================================== */

.cot-airfit-app { padding-top: clamp(20px, 3vw, 32px); }
.cot-airfit-page-header { margin-bottom: clamp(20px, 3vw, 34px); }
.cot-airfit-page-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(36px, 6vw, 84px);
	line-height: 0.9;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.cot-airfit-page-copy {
	font-family: var(--font-serif);
	font-size: clamp(15px, 1.4vw, 19px);
	line-height: 1.5;
	max-width: 66ch;
	color: var(--ink);
}
.cot-airfit-page-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin-top: 18px;
	border-left: 1px solid var(--rule);
	border-top: 1px solid var(--rule);
	max-width: 560px;
}
.cot-airfit-page-stat {
	flex: 1 1 150px;
	border-right: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	padding: 14px 16px;
}
.cot-airfit-page-stat strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 24px;
	letter-spacing: -0.02em;
}
.cot-airfit-page-stat span {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.cot-airfit-layout {
	display: grid;
	grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
	gap: 0;
	border: 1px solid var(--rule);
}
.cot-airfit-controls-wrap { border-right: 1px solid var(--rule); }
.cot-airfit-card { display: flex; flex-direction: column; }
.cot-airfit-card-head { padding: 16px 20px; border-bottom: 1px solid var(--rule); }
.cot-airfit-card-head--dark { background: var(--ink); color: var(--paper); }
.cot-airfit-card-kicker {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: .75;
}
.cot-airfit-card-title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}
.cot-airfit-form { padding: 20px; }
.cot-airfit-field-group { margin-bottom: 16px; }
.cot-airfit-field-label {
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 7px;
}
.cot-airfit-segmented {
	display: inline-flex;
	border: 1px solid var(--rule);
	width: 100%;
}
.cot-airfit-segmented__button {
	flex: 1;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 9px 12px;
	background: transparent;
	color: var(--ink);
	border-right: 1px solid var(--rule);
}
.cot-airfit-segmented__button:last-child { border-right: none; }
.cot-airfit-segmented__button.is-active { background: var(--ink); color: var(--paper); }

.cot-airfit-results { display: flex; flex-direction: column; }
.cot-airfit-summary {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-bottom: 1px solid var(--rule);
}
.cot-airfit-summary-card {
	padding: 14px 16px;
	border-right: 1px solid var(--rule);
	text-align: center;
}
.cot-airfit-summary-card:last-child { border-right: none; }
.cot-airfit-summary-card strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 22px;
}
.cot-airfit-summary-card span {
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}
.cot-airfit-summary-card--fit strong,
.cot-airfit-summary-card--over strong { color: var(--ink); }

.cot-airfit-table-wrap { overflow-x: auto; }
.cot-airfit-table { width: 100%; border-collapse: collapse; }
.cot-airfit-table th,
.cot-airfit-table td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--rule);
	text-align: left;
	vertical-align: top;
}
.cot-airfit-table th {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.cot-airfit-airline-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
}
.cot-airfit-airline-meta,
.cot-airfit-rule-meta,
.cot-airfit-note-source {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
}
.cot-airfit-rule-main { font-family: var(--font-mono); font-size: 13px; }
.cot-airfit-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 6px 12px;
	border: 1px solid var(--ink);
}
.cot-airfit-status-pill--fit { background: var(--ink); color: var(--paper); }
.cot-airfit-status-pill--over { background: var(--ink); color: var(--paper); text-decoration: line-through; }
.cot-airfit-status-pill--close { background: transparent; color: var(--ink); }
.cot-airfit-status-pill--no-rule,
.cot-airfit-status-pill--awaiting { background: transparent; color: var(--muted); border-color: var(--muted); }
.cot-airfit-status-pill__icon { display: inline-flex; }
.cot-airfit-status-pill__icon svg { width: 13px; height: 13px; }
.cot-airfit-policy-link {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--ink);
	border-bottom: 1px solid var(--ink);
}
.cot-airfit-empty {
	padding: 40px 20px;
	text-align: center;
	font-family: var(--font-serif);
	color: var(--muted);
}
/* Any filter row/search inside the fit tool */
.cot-airfit-filters,
.cot-airfit-search { padding: 16px 20px; border-bottom: 1px solid var(--rule); }

/* ==========================================================================
   22. Tool: Bag Finder Quiz (cot-bag-finder-*)
   ========================================================================== */

.cot-bag-finder-hero { padding: clamp(20px, 3vw, 34px) 0; }
.cot-bag-finder-eyebrow {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.cot-bag-finder-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(36px, 6vw, 84px);
	line-height: 0.9;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.cot-bag-finder-copy {
	font-family: var(--font-serif);
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.5;
	max-width: 64ch;
	margin-bottom: 18px;
}
.cot-bag-finder-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
	gap: 0;
	border: 1px solid var(--rule);
}
.cot-bag-finder-main { padding: clamp(18px, 2.5vw, 28px); }
.cot-bag-finder-sidebar { border-left: 1px solid var(--rule); }
.cot-bag-finder-sidebar-card { padding: clamp(18px, 2.5vw, 24px); border-bottom: 1px solid var(--rule); }
.cot-bag-finder-sidebar-kicker {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
}
.cot-bag-finder-sidebar-copy {
	font-family: var(--font-serif);
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 12px;
}
.cot-bag-finder-progress { margin-bottom: 20px; }
.cot-bag-finder-progress-copy {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
}
.cot-bag-finder-progress-track {
	height: 4px;
	background: var(--paper2);
	border: 1px solid var(--rule);
}
.cot-bag-finder-progress-bar { display: block; height: 100%; background: var(--ink); width: 0; transition: width .3s ease; }

.cot-bag-finder-panel { min-height: 240px; }
.cot-bag-finder-question {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(22px, 3vw, 34px);
	text-transform: uppercase;
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin-bottom: 18px;
}
.cot-bag-finder-options { display: grid; gap: 0; border-left: 1px solid var(--rule); border-top: 1px solid var(--rule); }
.cot-bag-finder-option {
	text-align: left;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16px;
	padding: 16px 18px;
	border-right: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	background: transparent;
	color: var(--ink);
}
.cot-bag-finder-option:hover { background: var(--ink); color: var(--paper); }
.cot-bag-finder-summary {
	list-style: none;
	font-family: var(--font-serif);
	font-size: 14px;
	color: var(--ink);
}
.cot-bag-finder-summary li {
	padding: 8px 0;
	border-bottom: 1px solid var(--rule);
}
.cot-bag-finder-notes {
	font-family: var(--font-serif);
	font-size: 13px;
	color: var(--muted);
	padding-left: 1.1em;
}
.cot-bag-finder-controls { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cot-bag-finder-control {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 10px 16px;
	border: 1px solid var(--rule);
	background: transparent;
	color: var(--ink);
}
.cot-bag-finder-control:hover { background: var(--ink); color: var(--paper); }
.cot-bag-finder-result-card {
	border: 1px solid var(--rule);
	margin-bottom: 16px;
	display: flex;
	flex-wrap: wrap;
}
.cot-bag-finder-result-media {
	flex: 1 1 200px;
	min-height: 180px;
	background: #0d0d0d;
	position: relative;
	overflow: hidden;
}
.cot-bag-finder-result-body { flex: 1 1 320px; padding: 20px; }
.cot-bag-finder-result-score {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.cot-bag-finder-result-reason {
	font-family: var(--font-serif);
	font-size: 15px;
	color: var(--ink);
	line-height: 1.5;
}
.cot-bag-finder-loading,
.cot-bag-finder-error {
	font-family: var(--font-serif);
	color: var(--muted);
	padding: 24px 0;
}

/* ==========================================================================
   23. Tool: CPT Database table (cot-db-*)
   ========================================================================== */

.cot-db-filters { margin: clamp(18px, 2.5vw, 26px) 0; }
.cot-db-filters-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: 10px;
}
.cot-db-search-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--rule);
	padding: 0 12px;
}
.cot-db-search-wrap svg { width: 16px; height: 16px; color: var(--muted); }
.cot-db-search {
	flex: 1;
	border: none;
	background: transparent;
	padding: 11px 0;
}
.cot-db-select { width: 100%; }
.cot-db-table-wrap { border: 1px solid var(--rule); }
.cot-db-table-scroll { overflow-x: auto; }
.cot-db-table { width: 100%; border-collapse: collapse; font-family: var(--font-display); font-size: 14px; }
.cot-db-table th {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: left;
	padding: 12px 14px;
	border-bottom: 2px solid var(--rule);
	cursor: pointer;
	white-space: nowrap;
	background: var(--paper);
}
.cot-db-table th.sort-asc,
.cot-db-table th.sort-desc { background: var(--ink); color: var(--paper); }
.cot-db-table td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--rule);
	white-space: nowrap;
}
.cot-db-table tbody tr:hover { background: var(--paper2); }
.cot-db-type-badge {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 1px solid var(--rule);
	padding: 3px 8px;
}
.cot-db-score { font-family: var(--font-mono); }

/* ==========================================================================
   24. Responsive
   ========================================================================== */

@media (max-width: 1040px) {
	.cot-grid--3col,
	.cot-grid--front-reviews,
	.cot-review-grid,
	.cot-bagdb-matches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cot-bagdb-grid,
	.cot-bagdb-grid--advanced { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
	.cot-airfit-layout { grid-template-columns: 1fr; }
	.cot-airfit-controls-wrap { border-right: none; border-bottom: 1px solid var(--rule); }
}

@media (min-width: 701px) and (max-width: 1280px) {
	.cot-hero-row {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
		gap: clamp(24px, 4vw, 44px);
	}
	.cot-hero-title {
		width: 100%;
		max-width: none;
		font-size: clamp(50px, 6.6vw, 82px);
		line-height: 0.9;
	}
	.cot-hero-aside {
		width: 100%;
		max-width: none;
	}
}

@media (max-width: 860px) {
	.cot-bag-finder-shell { grid-template-columns: 1fr; }
	.cot-bag-finder-sidebar { border-left: none; border-top: 1px solid var(--rule); }
	.cot-db-filters-grid { grid-template-columns: 1fr 1fr; }
	.cot-airfit-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cot-bag-finder-options { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
	.cot-index-row-excerpt { display: none; }
}

@media (max-width: 700px) {
	.cot-nav-links { display: none; }
	.cot-btn-find { display: none; }
	.cot-mobile-toggle { display: flex; }
	.cot-nav-inner { padding-top: 18px; }
	.cot-logo { font-size: clamp(24px, 8vw, 40px); }
	.cot-hero-title {
		font-size: clamp(32px, 9.5vw, 42px);
		line-height: 0.91;
		letter-spacing: -0.035em;
	}

	.cot-grid--3col,
	.cot-grid--front-reviews,
	.cot-review-grid,
	.cot-bagdb-matches { grid-template-columns: 1fr; }
	.cot-bagdb-grid,
	.cot-bagdb-grid--advanced { grid-template-columns: 1fr; }

	.cot-review-grid.is-list .cot-card { flex-direction: column; }
	.cot-review-grid.is-list .cot-card-image-wrap { width: 100%; border-right: none; border-bottom: 1px solid var(--rule); }

	.cot-news-thumb { display: none; }
	.cot-index-thumb { display: none; }
}

@media (max-width: 560px) {
	.cot-db-filters-grid { grid-template-columns: 1fr; }
	.cot-airfit-summary { grid-template-columns: 1fr 1fr; }
	.cot-lead-foot { flex-direction: column; align-items: flex-start; }
	.cot-post-nav { flex-direction: column; }
	.cot-post-nav a { max-width: 100%; }
	.cot-post-nav-next { text-align: left; margin-left: 0; }
}
