/* =========================================================
   Royal Chimney — design system
   ========================================================= */

:root {
	--color-bg:        #ffffff;
	--color-surface:   #f5f7fa;
	--color-surface-2: #eef2f7;
	--color-nav:       #0a2540;
	--color-nav-2:     #123456;
	--color-primary:   #1e6091;
	--color-primary-2: #154a73;
	--color-accent:    #c9a961;
	--color-text:      #1f2937;
	--color-muted:     #6b7280;
	--color-border:    #e5e7eb;
	--radius:          4px;
	--radius-lg:       8px;
	--shadow-sm:       0 1px 2px rgba(10, 37, 64, 0.06);
	--shadow-md:       0 6px 18px rgba(10, 37, 64, 0.10);
	--container:       1200px;
	--gutter:          24px;
	--font-sans:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}
img, picture, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--color-primary-2); }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .6em; color: var(--color-text); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.8rem, 2.5vw + 1rem, 3rem); }
h2 { font-size: clamp(1.5rem, 1.5vw + 1rem, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25rem; }

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

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px;
	overflow: hidden;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
}
.skip-link:focus {
	left: 1rem; top: 1rem;
	background: var(--color-nav);
	color: #fff;
	padding: .5rem 1rem;
	z-index: 999;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
	display: inline-block;
	font: 600 14px/1 var(--font-sans);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 14px 26px;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .18s ease;
	text-decoration: none;
	white-space: nowrap;
}
.btn-primary {
	background: var(--color-primary);
	color: #fff !important;
	border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-2); border-color: var(--color-primary-2); color: #fff !important; }
.btn-outline {
	background: transparent;
	color: var(--color-primary) !important;
	border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff !important; }
.btn-ghost {
	background: transparent;
	color: #fff !important;
	border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-sm  { padding: 10px 18px; font-size: 12px; }
.btn-lg  { padding: 16px 32px; font-size: 15px; }

/* =========================================================
   Top utility bar
   ========================================================= */
.rc-topbar {
	background: var(--color-nav);
	color: #dbe3ee;
	font-size: 13px;
}
.rc-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 38px;
	gap: 16px;
}
.rc-topbar__tagline { opacity: .75; }
.rc-topbar__nav { display: flex; gap: 18px; flex-wrap: wrap; }
.rc-topbar__link { color: #dbe3ee; }
.rc-topbar__link:hover { color: #fff; }
@media (max-width: 640px) { .rc-topbar__tagline { display: none; } }

/* =========================================================
   Header
   ========================================================= */
.rc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}
.rc-header__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 80px;
	flex-wrap: nowrap;
}
.rc-header__brand { flex: 0 0 auto; min-width: 0; }
.rc-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-nav);
	text-decoration: none;
}
.rc-brand__crown {
	font-size: 28px;
	color: var(--color-accent);
	line-height: 1;
}
.rc-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.rc-brand__name {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: .01em;
}
.rc-brand__sub {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: var(--color-muted);
}

.rc-nav { flex: 1 1 auto; min-width: 0; }
.rc-nav__list {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px 22px;
	margin: 0;
	padding: 0;
}
.rc-nav__list > li { position: relative; }
.rc-nav__list > li > a {
	display: inline-block;
	padding: 28px 0;
	color: var(--color-text);
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .06em;
	white-space: nowrap;
}
.rc-nav__list > li > a:hover,
.rc-nav__list .current-menu-item > a { color: var(--color-primary); }

.rc-nav__sub,
.rc-nav__list .sub-menu {
	display: none;
	list-style: none;
	position: absolute;
	top: 100%;
	left: -16px;
	min-width: 240px;
	margin: 0;
	padding: 10px 0;
	background: #fff;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-md);
	border-radius: var(--radius-lg);
	z-index: 60;
}
.rc-nav__list > li:hover > .rc-nav__sub,
.rc-nav__list > li:hover > .sub-menu,
.rc-nav__list > li:focus-within > .rc-nav__sub,
.rc-nav__list > li:focus-within > .sub-menu,
.rc-nav__list > li.is-open > .rc-nav__sub,
.rc-nav__list > li.is-open > .sub-menu { display: block; }
.rc-nav__sub a,
.rc-nav__list .sub-menu a {
	display: block;
	padding: 10px 18px;
	color: var(--color-text);
	font-size: 14px;
	text-transform: none;
	letter-spacing: normal;
}
.rc-nav__sub a:hover,
.rc-nav__list .sub-menu a:hover {
	background: var(--color-surface);
	color: var(--color-primary);
}

.rc-header__tools {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}
.rc-search-toggle {
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
	color: var(--color-text);
	border-radius: 50%;
}
.rc-search-toggle:hover { background: var(--color-surface); color: var(--color-primary); }

.rc-nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
	margin-left: auto;
}
.rc-nav-toggle__bars,
.rc-nav-toggle__bars::before,
.rc-nav-toggle__bars::after {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-text);
	content: "";
	position: relative;
	transition: transform .2s ease;
}
.rc-nav-toggle__bars::before { position: absolute; top: -8px; }
.rc-nav-toggle__bars::after  { position: absolute; top: 8px; }
.rc-nav-toggle[aria-expanded="true"] .rc-nav-toggle__bars { background: transparent; }
.rc-nav-toggle[aria-expanded="true"] .rc-nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.rc-nav-toggle[aria-expanded="true"] .rc-nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

.rc-search {
	border-top: 1px solid var(--color-border);
	padding: 16px 0;
	background: var(--color-surface);
}
.rc-searchform {
	display: flex;
	gap: 8px;
	max-width: 720px;
	margin: 0 auto;
}
.rc-searchform__input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	font: inherit;
	background: #fff;
}
.rc-searchform__input:focus {
	outline: 0;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(30,96,145,0.15);
}

@media (max-width: 1180px) {
	.rc-nav__list { gap: 4px 16px; }
	.rc-nav__list > li > a { font-size: 12px; letter-spacing: .04em; }
	.rc-brand__sub { display: none; }
}
@media (max-width: 1080px) {
	.rc-header__inner { flex-wrap: wrap; }
	.rc-nav-toggle { display: inline-flex; }
	.rc-nav {
		flex-basis: 100%;
		order: 4;
		display: none;
		border-top: 1px solid var(--color-border);
		padding: 8px 0 16px;
	}
	.rc-nav.is-open { display: block; }
	.rc-nav__list { flex-direction: column; gap: 0; flex-wrap: nowrap; }
	.rc-nav__list > li > a {
		padding: 12px 0;
		display: block;
		border-bottom: 1px solid var(--color-border);
		font-size: 14px;
		letter-spacing: .08em;
	}
	.rc-nav__sub,
	.rc-nav__list .sub-menu {
		position: static;
		box-shadow: none;
		border: 0;
		padding-left: 16px;
		min-width: 0;
	}
	.rc-brand__sub { display: block; }
}
@media (max-width: 720px) {
	.rc-header__cta { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.rc-hero {
	position: relative;
	overflow: hidden;
	background: var(--color-nav);
	color: #fff;
}
.rc-hero__track {
	position: relative;
	min-height: clamp(420px, 55vh, 640px);
}
.rc-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	opacity: 0;
	transition: opacity .6s ease;
	pointer-events: none;
}
.rc-hero__slide.is-active { opacity: 1; pointer-events: auto; }
.rc-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10,37,64,0.85) 0%, rgba(10,37,64,0.55) 55%, rgba(10,37,64,0.25) 100%);
}
.rc-hero__content {
	position: relative;
	z-index: 2;
	max-width: 620px;
	padding: 56px 24px;
}
.rc-hero__title {
	color: #fff;
	font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem);
	margin-bottom: .4em;
}
.rc-hero__body {
	color: #e7eef7;
	font-size: 1.05rem;
	margin-bottom: 1.6em;
}
.rc-hero__dots {
	position: absolute;
	bottom: 22px;
	left: 0; right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	z-index: 3;
}
.rc-hero__dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,0.45);
	cursor: pointer;
	padding: 0;
}
.rc-hero__dot.is-active { background: #fff; transform: scale(1.2); }

/* =========================================================
   Section & eyebrow
   ========================================================= */
.rc-section { padding: 72px 0; }
.rc-section--surface { background: var(--color-surface); }
.rc-section__head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.rc-section__title { margin: 8px 0 14px; }
.rc-section__sub { color: var(--color-muted); }

.rc-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--color-primary);
	padding-bottom: 8px;
	border-bottom: 2px solid var(--color-accent);
}
.rc-eyebrow--light { color: #ffd27a; }

/* =========================================================
   Category cards grid
   ========================================================= */
.rc-grid { display: grid; gap: 24px; }
.rc-grid--cards    { grid-template-columns: repeat(3, 1fr); }
.rc-grid--products { grid-template-columns: repeat(4, 1fr); }
.rc-grid--posts    { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) {
	.rc-grid--cards    { grid-template-columns: repeat(2, 1fr); }
	.rc-grid--products { grid-template-columns: repeat(2, 1fr); }
	.rc-grid--posts    { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.rc-grid--cards, .rc-grid--products { grid-template-columns: 1fr; }
}

.rc-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: inherit;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rc-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--color-primary);
}
.rc-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-color: var(--color-surface);
}
.rc-card__body { padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.rc-card__title {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--color-text);
}
.rc-card__cta {
	font-size: 13px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 600;
}

/* =========================================================
   Product cards (Woo + homepage featured)
   ========================================================= */
.rc-product {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	transition: transform .2s ease, box-shadow .2s ease;
}
.rc-product:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rc-product__link { text-decoration: none; color: inherit; display: block; }
.rc-product__image {
	display: block;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	background-color: var(--color-surface);
	border-radius: var(--radius);
	margin-bottom: 12px;
}
.rc-product__title { margin: 0; font-size: 1rem; color: var(--color-text); }
.rc-product__excerpt { color: var(--color-muted); font-size: .9rem; margin: 0; flex: 1; }

/* =========================================================
   Promise section
   ========================================================= */
.rc-promise__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.rc-promise__media {
	min-height: 420px;
	background-size: cover;
	background-position: center;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}
@media (max-width: 860px) {
	.rc-promise__grid { grid-template-columns: 1fr; gap: 32px; }
	.rc-promise__media { min-height: 280px; }
}

/* =========================================================
   Contact CTA band
   ========================================================= */
.rc-cta {
	background: linear-gradient(135deg, var(--color-nav) 0%, var(--color-nav-2) 100%);
	color: #fff;
}
.rc-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.rc-cta__title { color: #fff; margin: 8px 0 10px; }
.rc-cta__body { color: #d4def0; max-width: 520px; }
.rc-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   Trust strip
   ========================================================= */
.rc-trust {
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	padding: 36px 0;
}
.rc-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.rc-trust__item {
	display: flex;
	align-items: center;
	gap: 16px;
}
.rc-trust__badge {
	flex: 0 0 auto;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--color-nav);
	color: var(--color-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 16px;
}
.rc-trust__item strong { display: block; font-weight: 700; color: var(--color-text); }
.rc-trust__item p { margin: 2px 0 0; color: var(--color-muted); font-size: .9rem; }
@media (max-width: 860px) { .rc-trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rc-trust__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.rc-footer {
	background: var(--color-nav);
	color: #b9c6d6;
	padding-top: 56px;
}
.rc-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 40px;
}
.rc-footer__col--brand .rc-brand { color: #fff; }
.rc-footer__col--brand .rc-brand__sub { color: #90a3bb; }
.rc-footer__address { margin-top: 16px; font-style: normal; line-height: 1.7; }
.rc-footer__address a { color: #dde5f0; }
.rc-footer__address a:hover { color: #fff; }

.footer-title {
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .18em;
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--color-accent);
	display: inline-block;
}
.rc-footer__list { list-style: none; margin: 0; padding: 0; }
.rc-footer__list li { margin-bottom: 8px; }
.rc-footer__list a { color: #b9c6d6; font-size: 14px; }
.rc-footer__list a:hover { color: #fff; }

.rc-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 18px 0;
	font-size: 13px;
}
.rc-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.rc-footer__copy, .rc-footer__meta { margin: 0; color: #90a3bb; }
.rc-footer__meta a { color: #b9c6d6; }

@media (max-width: 860px) {
	.rc-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	.rc-footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Page hero + breadcrumbs
   ========================================================= */
.rc-pagehero {
	background: linear-gradient(135deg, var(--color-nav) 0%, var(--color-nav-2) 100%);
	color: #fff;
	padding: 48px 0 40px;
}
.rc-pagehero__title { color: #fff; margin: 10px 0 0; }
.rc-pagehero__meta  { color: #b9c6d6; margin-top: 6px; font-size: .9rem; }
.rc-breadcrumbs {
	font-size: 13px;
	color: #b9c6d6;
	text-transform: uppercase;
	letter-spacing: .14em;
}
.rc-breadcrumbs a { color: #ffd27a; }
.rc-breadcrumbs a:hover { color: #fff; }

/* =========================================================
   Pagehero lede + inner-page variants
   ========================================================= */
.rc-pagehero__lede {
	color: #d4def0;
	font-size: 1.05rem;
	max-width: 640px;
	margin: 14px 0 0;
}

/* =========================================================
   Stats band (About page)
   ========================================================= */
.rc-stats {
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	padding: 28px 0;
}
.rc-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.rc-stat { display: flex; flex-direction: column; gap: 4px; }
.rc-stat__value {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--color-nav);
	letter-spacing: .02em;
	line-height: 1;
}
.rc-stat__label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: var(--color-muted);
}
@media (max-width: 720px) {
	.rc-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* =========================================================
   Features grid (About page — "what sets us apart")
   ========================================================= */
.rc-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.rc-feature {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 24px;
	text-align: center;
}
.rc-feature__icon {
	display: inline-flex;
	width: 56px; height: 56px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--color-nav);
	color: var(--color-accent);
	font-size: 24px;
	margin-bottom: 12px;
}
.rc-feature h3 { margin: 8px 0; font-size: 1rem; }
.rc-feature p  { color: var(--color-muted); font-size: .9rem; margin: 0; }
@media (max-width: 960px) { .rc-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rc-features { grid-template-columns: 1fr; } }

/* =========================================================
   Contact page
   ========================================================= */
.rc-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 48px;
	align-items: start;
}
@media (max-width: 900px) { .rc-contact-grid { grid-template-columns: 1fr; } }
.rc-contact-form__help { color: var(--color-muted); margin-bottom: 24px; }

.rc-contact-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 28px;
	margin-bottom: 20px;
	box-shadow: var(--shadow-sm);
}
.rc-contact-card__title {
	font-size: 1.05rem;
	margin: 0 0 16px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--color-accent);
	display: inline-block;
}
.rc-contact-card__list { margin: 0; }
.rc-contact-card__list dt {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: var(--color-muted);
	margin-top: 14px;
}
.rc-contact-card__list dt:first-child { margin-top: 0; }
.rc-contact-card__list dd {
	margin: 4px 0 0;
	font-size: .95rem;
	line-height: 1.5;
	color: var(--color-text);
}
.rc-contact-card .btn { margin-top: 20px; width: 100%; text-align: center; }

.rc-contact-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
}
.rc-contact-map iframe { display: block; }

/* =========================================================
   Child-pages grid on generic pages
   ========================================================= */
.rc-subgrid { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.rc-subgrid__title { margin-bottom: 20px; font-size: 1.25rem; }
.rc-card__excerpt {
	display: block;
	color: var(--color-muted);
	font-size: .9rem;
	line-height: 1.5;
	margin: 4px 0 8px;
}

/* =========================================================
   Article prose typography
   ========================================================= */
.rc-article__body { font-size: 1.02rem; line-height: 1.75; }
.rc-article__body h2 { margin-top: 1.8em; font-size: 1.5rem; }
.rc-article__body h3 { margin-top: 1.4em; font-size: 1.2rem; }
.rc-article__body ul, .rc-article__body ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.rc-article__body ul li, .rc-article__body ol li { margin-bottom: .5em; }
.rc-article__body ul li em,
.rc-article__body ol li em { display: block; color: var(--color-muted); font-style: normal; font-size: .92rem; margin-top: 2px; }
.rc-article__body ul li strong a,
.rc-article__body ul li a { font-weight: 600; }
.rc-article__body blockquote {
	border-left: 4px solid var(--color-accent);
	margin: 1.6em 0;
	padding: 4px 0 4px 20px;
	color: var(--color-muted);
	font-style: italic;
}
.rc-article__body a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.rc-article__body img { margin: 1em 0; border-radius: var(--radius); }
.rc-article__body table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.2em 0;
	font-size: .95rem;
}
.rc-article__body th, .rc-article__body td {
	padding: 10px 14px;
	border: 1px solid var(--color-border);
	text-align: left;
}
.rc-article__body th { background: var(--color-surface); font-weight: 700; }

/* =========================================================
   Page grid (content + sidebar)
   ========================================================= */
.rc-page-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 48px;
	align-items: start;
}
@media (max-width: 900px) {
	.rc-page-grid { grid-template-columns: 1fr; }
}
.rc-article { min-width: 0; }
.rc-article__thumb { margin-bottom: 24px; border-radius: var(--radius-lg); overflow: hidden; }
.rc-article__body > *:first-child { margin-top: 0; }
.rc-article__body img { border-radius: var(--radius); }
.rc-article h2 { margin-top: 1.6em; }

.rc-article__body .wp-caption {
	max-width: 100%;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 10px 12px 12px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 12px rgba(15, 23, 42, .06);
	box-sizing: border-box;
}
.rc-article__body .wp-caption.alignleft,
.rc-article__body .wp-caption.alignright { width: auto !important; }
.rc-article__body .wp-caption.alignleft  { float: left;  margin: 4px 20px 16px 0; }
.rc-article__body .wp-caption.alignright { float: right; margin: 4px 0 16px 20px; }
.rc-article__body .wp-caption.aligncenter { margin: 16px auto; }
.rc-article__body .wp-caption a {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}
.rc-article__body .wp-caption img {
	margin: 0 auto;
	display: block;
	border-radius: var(--radius);
}
.rc-article__body .wp-caption-text {
	font-size: 80%;
	line-height: 1.4;
	color: var(--color-muted);
	margin: 8px 0 0;
	white-space: nowrap;
	text-align: center;
}

.rc-sidebar .widget {
	padding: 20px 22px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	margin-bottom: 20px;
}
.rc-sidebar .widget-title {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .14em;
	margin: 0 0 12px;
	color: var(--color-nav);
}
.rc-sidebar-list { list-style: none; padding: 0; margin: 0; }
.rc-sidebar-list li { border-bottom: 1px solid var(--color-border); }
.rc-sidebar-list li:last-child { border-bottom: 0; }
.rc-sidebar-list a { display: block; padding: 8px 0; color: var(--color-text); font-size: 14px; }
.rc-sidebar-list a:hover { color: var(--color-primary); }

.rc-sidebar-cta p { font-size: .9rem; color: var(--color-muted); }

/* =========================================================
   Blog post cards
   ========================================================= */
.rc-postcard {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.rc-postcard__thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.rc-postcard__title { padding: 0 20px; margin: 16px 0 0; font-size: 1.1rem; }
.rc-postcard__title a { color: var(--color-text); }
.rc-postcard__title a:hover { color: var(--color-primary); }
.rc-postcard__meta  { padding: 0 20px; color: var(--color-muted); font-size: .85rem; }
.rc-postcard__excerpt { padding: 0 20px; color: var(--color-muted); font-size: .95rem; }
.rc-postcard__more {
	padding: 8px 20px 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
}

/* =========================================================
   Comments & CF7 form polish
   ========================================================= */
.rc-comments { margin-top: 48px; }
.rc-comments__title { margin-bottom: 20px; }
.rc-comments__list { list-style: none; padding: 0; }
.rc-comments__list .comment-body {
	padding: 20px;
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	margin-bottom: 16px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	font: inherit;
	background: #fff;
	margin-top: 4px;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
	outline: 0;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(30,96,145,0.15);
}
.wpcf7 label { display: block; font-weight: 600; margin-bottom: 12px; color: var(--color-text); }
.wpcf7 input[type="submit"] {
	background: var(--color-primary);
	color: #fff;
	border: 0;
	padding: 14px 26px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background .18s ease;
}
.wpcf7 input[type="submit"]:hover { background: var(--color-primary-2); }

/* =========================================================
   WooCommerce polish (light touch — leverage WC defaults)
   ========================================================= */
.rc-woo .products,
.rc-woo ul.products {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 900px) { .rc-woo .products, .rc-woo ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rc-woo .products, .rc-woo ul.products { grid-template-columns: 1fr; } }
.rc-woo ul.products li.product { float: none !important; width: auto !important; margin: 0 !important; }

.rc-woo .woocommerce-ordering,
.rc-woo .woocommerce-result-count {
	margin-bottom: 24px;
	font-size: 14px;
	color: var(--color-muted);
}

.rc-woo .single-product-main,
.rc-woo .woocommerce-product-gallery {
	margin-bottom: 24px;
}
.rc-woo .product_title { margin-bottom: 12px; }
.rc-woo .woocommerce-Tabs-panel { padding-top: 16px; }
.rc-woo .price, .rc-woo .stock { display: none !important; }

/* Pagination */
.rc-pagination {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	gap: 6px;
}
.rc-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-text);
	font-weight: 600;
}
.rc-pagination .page-numbers.current,
.rc-pagination .page-numbers:hover {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

/* Post nav */
.rc-postnav {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
	font-weight: 600;
}

/* 404 */
.rc-404 { max-width: 620px; margin: 0 auto; text-align: center; }

/* Focus visibility */
:focus-visible {
	outline: 3px solid rgba(30,96,145,0.45);
	outline-offset: 2px;
	border-radius: 2px;
}
