/* =========================================================
   Sky Water Work — Design Tokens
   Palette:
     --deep   #0B3D4C  deep channel navy (primary)
     --steel  #1C7293  steel-blue current (secondary)
     --brass  #C9861A  brass valve accent
     --mist   #EAF1F0  cool mist background
     --ink    #10262B  near-black text
     --patina #7FB6A3  soft patina green (hover/success)
   Type:
     Display: 'Space Grotesk'  — technical, engineered feel
     Body:    'IBM Plex Sans'
     Data:    'IBM Plex Mono'  — specs, stats, numbers
   ========================================================= */

:root {
	--logo-height: 56px;
	--deep: #0B3D4C;
	--steel: #1C7293;
	--brass: #C9861A;
	--mist: #EAF1F0;
	--ink: #10262B;
	--patina: #7FB6A3;
	--white: #FFFFFF;

	--font-display: 'Space Grotesk', sans-serif;
	--font-body: 'IBM Plex Sans', sans-serif;
	--font-mono: 'IBM Plex Mono', monospace;

	--radius: 6px;
	--container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--mist);
	line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--deep);
	line-height: 1.15;
	margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.eyebrow {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: 12px;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: var(--radius);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--brass); color: var(--white); }
.btn-primary:hover { background: #B37714; transform: translateY(-1px); }
.btn-ghost { border-color: var(--deep); color: var(--deep); }
.btn-ghost:hover { background: var(--deep); color: var(--white); }

/* Topbar */
.topbar { background: var(--deep); color: var(--mist); font-size: 0.85rem; }
.topbar-inner { display: flex; align-items: center; gap: 24px; padding: 8px 24px; }
.topbar-inner a { color: var(--mist); }
.topbar-cta { margin-left: auto; color: var(--brass) !important; font-weight: 600; }
.topbar-hours { opacity: 0.75; }
@media (max-width: 640px) { .topbar-hours { display: none; } }

/* Header */
.site-header { background: var(--white); border-bottom: 1px solid #DCE7E5; position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; gap: 32px; padding: 16px 24px; }
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { max-height: var(--logo-height); width: auto; }
.logo-tagline { font-size: 0.7rem; color: #4A6560; font-family: var(--font-mono); white-space: nowrap; }
@media (max-width: 960px) { .logo-tagline { display: none; } }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--deep); }
.primary-nav { margin-left: auto; }
.nav-menu { display: flex; gap: 28px; }
.nav-menu > li > a {
	font-weight: 600;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--ink);
	padding: 6px 0;
	position: relative;
	display: inline-block;
}
.nav-menu > li > a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--brass);
	transition: width 0.2s ease;
}
.nav-menu > li > a:hover { color: var(--brass); }
.nav-menu > li > a:hover::before { width: 100%; }
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a { color: var(--brass); }
.nav-menu li.current-menu-item > a::before,
.nav-menu li.current_page_item > a::before { width: 100%; }
.nav-menu li { position: relative; }
.nav-menu li.menu-item-has-children > a::after { content: " ▾"; font-size: 0.7em; transition: transform 0.2s ease; display: inline-block; }
.nav-menu li.menu-item-has-children:hover > a::after { transform: rotate(180deg); }
.nav-menu .sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	border: 1px solid #DCE7E5;
	border-top: 3px solid var(--brass);
	border-radius: var(--radius);
	box-shadow: 0 16px 32px rgba(11,61,76,0.15);
	min-width: 420px;
	padding: 12px 0;
	z-index: 60;
	column-count: 2;
	column-gap: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu li { width: 100%; break-inside: avoid; }
.nav-menu .sub-menu a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	font-size: 0.92rem;
	white-space: nowrap;
	color: var(--ink);
	transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
	border-radius: 4px;
	margin: 0 6px;
}
.nav-menu .sub-menu a::before {
	content: "";
	width: 5px; height: 5px;
	border-radius: 50%;
	background: var(--patina);
	flex-shrink: 0;
}
.nav-menu .sub-menu a:hover { background: var(--mist); color: var(--brass); padding-left: 24px; }
.nav-menu .sub-menu a:hover::before { background: var(--brass); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.submenu-toggle { display: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--deep); }

.search-toggle {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--deep);
	display: flex;
	align-items: center;
	padding: 6px;
	transition: color 0.15s ease;
}
.search-toggle:hover { color: var(--brass); }

.search-panel {
	max-height: 0;
	overflow: hidden;
	background: var(--mist);
	transition: max-height 0.25s ease;
}
.search-panel.is-open { max-height: 90px; }
.search-panel .container { padding: 16px 24px; }
.search-panel form { display: flex; gap: 10px; }
.search-panel input[type="search"],
.search-panel input[type="text"] {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid #CBD9D6;
	border-radius: var(--radius);
	font-family: var(--font-body);
}
.search-panel button[type="submit"] {
	padding: 10px 20px;
	background: var(--brass);
	color: var(--white);
	border: none;
	border-radius: var(--radius);
	font-family: var(--font-display);
	font-weight: 600;
	cursor: pointer;
}

@media (max-width: 1024px) and (min-width: 861px) {
	.nav-menu .sub-menu { min-width: 300px; column-count: 1; }
}

@media (max-width: 860px) {
	.primary-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); display: none; }
	.primary-nav.is-open { display: block; }
	.nav-menu { flex-direction: column; padding: 16px 24px; gap: 16px; }
	.nav-toggle { display: flex; }
	.nav-menu li.menu-item-has-children > a::after { display: none; }
	.nav-menu .submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 28px;
		height: 28px;
		margin-left: 8px;
		background: var(--mist);
		border: none;
		border-radius: 50%;
		color: var(--deep);
		font-size: 0.8rem;
		cursor: pointer;
		transition: transform 0.2s ease, background 0.2s ease;
		vertical-align: middle;
	}
	.nav-menu li.submenu-open > .submenu-toggle { transform: rotate(180deg); background: var(--brass); color: var(--white); }
	.nav-menu .sub-menu {
		display: none;
		position: static;
		box-shadow: none;
		border: none;
		border-top: none;
		padding: 4px 0 4px 16px;
		min-width: 0;
		column-count: 1;
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	.nav-menu li.submenu-open > .sub-menu { display: block; }
	.nav-menu .sub-menu a { margin: 0; }
	.nav-menu .sub-menu a:hover { padding-left: 20px; }
}

/* Hero */
.hero { background: linear-gradient(180deg, var(--white), var(--mist)); padding: 72px 0; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-lede { font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.gauge-label { font-family: var(--font-mono); }
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } .hero-diagram { order: -1; max-width: 260px; margin: 0 auto; } }

/* Sections */
.section { padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-cta { text-align: center; margin-top: 32px; }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-grid--full { grid-template-columns: repeat(4, 1fr); }
.category-card {
	background: var(--white);
	border: 1px solid #DCE7E5;
	border-radius: var(--radius);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	opacity: 0.75;
	filter: grayscale(15%);
	transition: opacity 0.25s ease, filter 0.25s ease, border-color 0.15s ease, transform 0.15s ease;
}
.category-card:hover { opacity: 1; filter: grayscale(0%); border-color: var(--brass); transform: translateY(-3px) scale(1.02); }
.category-grid:hover .category-card:not(:hover) { opacity: 0.5; }
.category-thumb { display: block; width: 100%; height: 140px; border-radius: calc(var(--radius) - 4px); overflow: hidden; margin-bottom: 4px; }
.category-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.category-name { font-family: var(--font-display); font-weight: 600; color: var(--deep); }
.category-desc, .category-count { font-size: 0.85rem; color: #4A6560; }
@media (max-width: 960px) { .category-grid, .category-grid--full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .category-grid, .category-grid--full { grid-template-columns: 1fr; } }

/* About / stats */
.about-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat { background: var(--deep); color: var(--white); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-num { display: block; font-family: var(--font-mono); font-size: 1.8rem; color: var(--brass); }
.stat-label { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; }
@media (max-width: 860px) { .about-inner { grid-template-columns: 1fr; } }

/* Clients — auto-scrolling marquee */
.clients-scroller {
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
	display: flex;
	gap: 48px;
	align-items: center;
	width: max-content;
	animation: sww-scroll 25s linear infinite;
}
.clients-scroller:hover .clients-track { animation-play-state: paused; }
.clients-track img {
	max-height: 90px;
	width: auto;
	flex: 0 0 auto;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.2s ease, opacity 0.2s ease;
}
.clients-track img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes sww-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-33.333%); }
}

/* CTA */
.cta-section { background: var(--steel); color: var(--white); text-align: center; }.cta-section h2 { color: var(--white); }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner .btn-primary { margin-top: 16px; }

/* Footer */
.site-footer { background: var(--deep); color: var(--mist); margin-top: 40px; }
.footer-gauge { background: var(--deep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: 40px 24px; }
.footer-logo { color: var(--white); }
.footer-tagline { opacity: 0.8; font-size: 0.9rem; }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a { border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.footer-widget-title, .footer-col h4 { color: var(--brass); font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 8px; opacity: 0.9; }
.footer-col a:hover { color: var(--brass); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 16px 24px; text-align: center; font-size: 0.85rem; opacity: 0.7; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Page / content */
.page-section { background: var(--white); }
.page-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.page-content, .product-content { max-width: 720px; margin: 0 auto; }
.page-content p, .product-content p { text-align: justify; }
.page-content p, .product-content p { margin-bottom: 1.2em; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; margin-top: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { font-weight: 600; font-size: 0.9rem; }
.contact-form input, .contact-form textarea {
	padding: 12px 14px; border: 1px solid #CBD9D6; border-radius: var(--radius);
	font-family: var(--font-body); font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--brass); border-color: var(--brass); }
.contact-details .detail-block { margin-bottom: 20px; }
.contact-details h4 { color: var(--deep); font-size: 1rem; margin-bottom: 4px; }
.form-notice { background: var(--patina); color: var(--white); padding: 12px 18px; border-radius: var(--radius); margin-bottom: 24px; text-align: center; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* Product / blog grids */
.product-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card, .blog-card {
	background: var(--mist); border-radius: var(--radius); overflow: hidden;
	display: block; border: 1px solid #DCE7E5; transition: transform 0.15s ease;
}
.product-card:hover, .blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(11,61,76,0.08); }
.product-thumb { aspect-ratio: 4/3; background: var(--white); display: flex; align-items: center; justify-content: center; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb-placeholder { font-size: 2.5rem; }
.product-thumb-placeholder--lg { font-size: 6rem; aspect-ratio: 1/1; background: var(--white); display: flex; align-items: center; justify-content: center; border-radius: var(--radius); }
.product-name, .blog-card h3 { padding: 14px 16px; font-family: var(--font-display); font-size: 1.05rem; }
.product-excerpt, .blog-card p { padding: 6px 16px 16px; font-size: 0.9rem; color: #4A6560; }
@media (max-width: 860px) { .product-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid, .blog-grid { grid-template-columns: 1fr; } }

/* Single product */
.product-single-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; }
.product-single-media { order: 2; }
.product-single-media img {
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: contain;
	border-radius: var(--radius);
	background: var(--white);
	border: 1px solid #DCE7E5;
}
.product-single-info { order: 1; }
.product-model-select { margin: 18px 0; }
.product-model-select label {
	display: block;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--steel);
	margin-bottom: 8px;
}
.product-model-select select {
	width: 100%;
	max-width: 320px;
	padding: 12px 14px;
	border: 1px solid #DCE7E5;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.95rem;
	background: var(--white);
	color: var(--ink);
	cursor: pointer;
}
.product-model-select select:focus { outline: none; border-color: var(--brass); }
.product-image-zoom { position: relative; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; }
.product-image-zoom .zoom-lens {
	position: absolute;
	inset: 0;
	background-image: var(--zoom-img);
	background-repeat: no-repeat;
	background-size: 200%;
	opacity: 0;
	transition: opacity 0.15s ease;
	pointer-events: none;
}
.product-image-zoom.is-zooming .zoom-lens { opacity: 1; }
.product-image-zoom.is-zooming img { opacity: 0; }
.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.spec-table th, .spec-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #DCE7E5; font-family: var(--font-mono); font-size: 0.9rem; }
.spec-table th { color: var(--steel); width: 40%; }

/* Editor-inserted tables (inside product/page content) */
.product-content table, .page-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}
.product-content table th, .product-content table td,
.page-content table th, .page-content table td {
	padding: 10px 14px;
	border: 1px solid #DCE7E5;
	font-size: 0.9rem;
}
.product-content table th, .page-content table th {
	background: var(--deep);
	color: var(--white);
	font-family: var(--font-display);
}
.product-content table tr:not(:first-child),
.page-content table tr:not(:first-child) {
	transition: background 0.15s ease;
}
.product-content table tr:not(:first-child):hover,
.page-content table tr:not(:first-child):hover {
	background: var(--mist);
}
@media (max-width: 860px) { .product-single-inner { grid-template-columns: 1fr; } .product-single-media, .product-single-info { order: initial; } }

/* Projects — all on one page, expandable */
.project-list { display: flex; flex-direction: column; gap: 16px; }
.project-item {
	background: var(--white);
	border: 1px solid #DCE7E5;
	border-radius: var(--radius);
	overflow: hidden;
}
.project-summary {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 20px;
	cursor: pointer;
	list-style: none;
}
.project-summary::-webkit-details-marker { display: none; }
.project-thumb { width: 120px; height: 90px; flex-shrink: 0; border-radius: calc(var(--radius) - 2px); overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-summary-text { flex: 1; }
.project-toggle-label { display: inline-block; margin-top: 6px; font-size: 13px; color: var(--brass); font-weight: 600; }
.project-item[open] .project-toggle-label { display: none; }
.project-full-content { padding: 0 20px 24px 20px; border-top: 1px solid #EAF1F0; margin-top: 4px; padding-top: 16px; }

/* Hero Slider */
.hero-slider {
	position: relative;
	width: 100%;
	height: 560px;
	overflow: hidden;
	background: var(--deep);
}
.hero-slider-track {
	position: relative;
	width: 100%;
	height: 100%;
}
.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s ease;
	display: flex;
	align-items: center;
}
.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
}
.hero-slide-overlay {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, rgba(11,61,76,0.75) 0%, rgba(11,61,76,0.35) 55%, rgba(11,61,76,0.15) 100%);
}
.hero-slide-content {
	max-width: 560px;
	color: var(--white);
}
.hero-slide-content h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 42px;
	line-height: 1.15;
	margin-bottom: 20px;
}
.hero-slide-content .btn { display: inline-block; }

.hero-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.85);
	border: none;
	color: var(--deep);
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}
.hero-slider-arrow:hover { background: var(--white); }
.hero-slider-prev { left: 24px; }
.hero-slider-next { right: 24px; }

.hero-slider-dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	gap: 10px;
}
.hero-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}
.hero-slider-dot.is-active { background: var(--brass); transform: scale(1.2); }

@media (max-width: 768px) {
	.hero-slider { height: 420px; }
	.hero-slide-content h2 { font-size: 28px; }
	.hero-slider-arrow { width: 36px; height: 36px; }
}

/* Hero slider background video */
.hero-slide-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero-slide.has-video .hero-slide-overlay { position: relative; z-index: 1; }

/* About Us page */
.about-hero-section { padding-top: 60px; }
.section-lede { max-width: 720px; margin: -10px auto 32px; text-align: center; color: var(--ink); opacity: 0.85; line-height: 1.65; }
.stats-grid--about { grid-template-columns: repeat(4, 1fr); max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .stats-grid--about { grid-template-columns: repeat(2, 1fr); } }

.icon-strip--about { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.icon-strip--about .icon-card { background: var(--white); border: 1px solid #DCE7E5; box-shadow: 0 4px 14px rgba(11,61,76,0.05); }

.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-us-card {
	background: var(--white);
	border: 1px solid #DCE7E5;
	border-radius: var(--radius);
	padding: 28px 22px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-us-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(11,61,76,0.08); }
.why-us-icon {
	width: 52px; height: 52px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: var(--mist);
	display: flex; align-items: center; justify-content: center;
}
.why-us-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; color: var(--deep); }
.why-us-card p { font-size: 0.92rem; line-height: 1.55; color: var(--ink); opacity: 0.8; }
@media (max-width: 900px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-us-grid { grid-template-columns: 1fr; } }

.mission-section { padding: 0 0 72px; }
.mission-box {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	background: linear-gradient(160deg, var(--deep), #0A3543);
	color: var(--white);
	border-radius: var(--radius);
	padding: 48px 40px;
}
.mission-box .eyebrow { color: var(--patina); }
.mission-text {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 14px;
}

.about-cta-section { text-align: center; padding-bottom: 80px; }
.about-cta-inner h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 10px; color: var(--deep); }
.about-cta-inner p { margin-bottom: 22px; opacity: 0.8; }

/* About page — custom uploaded hero image */
.about-hero-image { width: 100%; }
.about-hero-image img { width: 100%; height: auto; border-radius: var(--radius); display: block; }

/* Category page title — smaller than default page titles */
.category-page-header h1 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
