/*
Theme Name:   Utuado Chess Club
Theme URI:    https://utuadochessclub.com
Description:  Child theme for the Utuado Chess Club. Holds the site's own header, footer and templates in code, so the design is version controlled, script deployable, and free of page-builder limits. Built on Astra.
Author:       Utuado Chess Club
Author URI:   https://utuadochessclub.com
Template:     astra
Version:      2.0.0
Text Domain:  utuado
*/

/* ------------------------------------------------------------------
   DESIGN TOKENS
   ------------------------------------------------------------------ */

:root {
	--ucc-green:        #1B3A1F;
	--ucc-green-deep:   #0F2412;
	--ucc-green-soft:   #EAF2EB;
	--ucc-gold:         #B8962E;
	--ucc-gold-light:   #DFC274;
	--ucc-gold-text:    #8C7222;   /* gold for text on white: 4.62:1, AA */
	--ucc-cream:        #FBF5E6;
	--ucc-ink:          #16231A;
	--ucc-muted:        #5A675C;
	--ucc-line:         #DFE6DF;
	--ucc-white:        #FFFFFF;

	--ucc-font-display: 'Fraunces', Georgia, serif;
	--ucc-font-body:    'Archivo', -apple-system, 'Segoe UI', sans-serif;
	--ucc-font-mono:    'IBM Plex Mono', ui-monospace, monospace;

	--ucc-radius:       12px;
	--ucc-radius-sm:    8px;
	--ucc-shadow:       0 5px 15px rgba(0,0,0,.05);
	--ucc-shadow-lift:  0 10px 26px rgba(0,0,0,.10);

	--ucc-gap:          clamp(16px, 3vw, 30px);
	--ucc-gutter:       clamp(18px, 4vw, 32px);
	--ucc-section:      clamp(36px, 7vw, 72px);
	--ucc-maxw:         1180px;
}

/* ------------------------------------------------------------------
   TYPOGRAPHY VOICE
   Fraunces carries headlines, Archivo the prose, Plex Mono the labels.
   ------------------------------------------------------------------ */

.ucc-home, .ucc-article, .ucc-index, .ucc-contact,
.ucc-footer, .ucc-header, .ucc-author, .ucc-related,
.ucc-art {
	font-family: var(--ucc-font-body);
}

.ucc-home h1, .ucc-home h2,
.ucc-headline, .ucc-index-head h1,
.ucc-index-title,
.ucc-related h2, .ucc-author-name,
.ucc-contact h2,
.ucc-art h2, .ucc-art h3,
.ucc-home-card-title,
body.page .entry-content > h1,
body.page .entry-content > h2 {
	font-family: var(--ucc-font-display);
	font-weight: 600;
}

.ucc-hero-eyebrow, .ucc-home-eyebrow, .ucc-kicker,
.ucc-index-kicker, .ucc-home-card-kicker,
.ucc-author-eyebrow, .ucc-contact-kind,
.ucc-share-label, .ucc-hero-facts strong,
.ucc-art .ucc-kick {
	font-family: var(--ucc-font-mono);
}

/* ------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------ */

.ucc-footer {
	background: var(--ucc-green);
	color: #E8EFE9;
	padding: var(--ucc-section) var(--ucc-gutter) 0;
	font-size: 15px;
	line-height: 1.6;
}

.ucc-footer-inner {
	max-width: var(--ucc-maxw);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: var(--ucc-gap);
	align-items: start;
}

.ucc-footer h3 {
	color: var(--ucc-gold-light);
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin: 0 0 14px;
	font-weight: 700;
	font-family: var(--ucc-font-mono);
}

.ucc-footer-brand img { width: 92px; height: auto; display: block; margin-bottom: 14px; }
.ucc-footer-tagline { color: #C9D6CB; max-width: 34ch; margin: 0; }

.ucc-footer ul { list-style: none; margin: 0; padding: 0; }
.ucc-footer li { margin-bottom: 9px; }
.ucc-footer a {
	color: #E8EFE9;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color .15s ease, color .15s ease;
}
.ucc-footer a:hover, .ucc-footer a:focus { color: var(--ucc-gold-light); border-bottom-color: var(--ucc-gold-light); }

.ucc-social { display: flex; gap: 10px; margin: 0 0 16px; padding: 0; list-style: none; }
.ucc-social a {
	width: 42px; height: 42px;
	border-radius: var(--ucc-radius-sm);
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	display: flex; align-items: center; justify-content: center;
	color: #E8EFE9;
}
.ucc-social a:hover { background: var(--ucc-gold); border-color: var(--ucc-gold); color: #fff; }
.ucc-social svg { width: 19px; height: 19px; fill: currentColor; }

.ucc-contact-line { display: block; color: #C9D6CB; font-size: 14px; margin-bottom: 6px; }

.ucc-footer-bottom {
	max-width: var(--ucc-maxw);
	margin: var(--ucc-section) auto 0;
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 18px 0 22px;
	display: flex; flex-wrap: wrap;
	gap: 10px 20px;
	align-items: center; justify-content: space-between;
	font-size: 13px; color: #A9BBAC;
}
.ucc-footer-bottom a { color: #A9BBAC; }
.ucc-footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 880px) {
	.ucc-footer-inner { grid-template-columns: 1fr 1fr; }
	.ucc-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
	.ucc-footer-inner { grid-template-columns: 1fr; gap: 28px; }
	.ucc-footer-bottom { justify-content: flex-start; }
}

.ucc-footer a:focus-visible, .ucc-social a:focus-visible {
	outline: 2px solid var(--ucc-gold-light);
	outline-offset: 3px;
}

/* ------------------------------------------------------------------
   LAYOUT GUTTERS
   ------------------------------------------------------------------ */

.site-content .ast-container,
.ast-container > .ast-article-single,
.ast-container > .ast-article-post,
.entry-header,
.entry-content,
.woocommerce-products-header,
.woocommerce-notices-wrapper {
	padding-left: max(var(--ucc-gutter), env(safe-area-inset-left));
	padding-right: max(var(--ucc-gutter), env(safe-area-inset-right));
}

.entry-header .entry-title,
.entry-content > * { padding-left: 0; padding-right: 0; }
.entry-content .ast-container,
.ast-article-single .entry-header,
.ast-article-single .entry-content { padding-left: 0; padding-right: 0; }

.entry-title, .woocommerce-products-header__title { margin-bottom: .5em; line-height: 1.15; }

.single-post .entry-content > p,
.single-post .entry-content > ul,
.single-post .entry-content > ol,
.single-post .entry-content > blockquote,
.single-post .entry-content > h2,
.single-post .entry-content > h3 { max-width: 68ch; }

@media (min-width: 922px) {
	.site-content .ast-container { max-width: var(--ucc-maxw); margin-inline: auto; }
}

/* ------------------------------------------------------------------
   FULL-WIDTH PAGE TEMPLATE
   ------------------------------------------------------------------ */

.ast-page-builder-template .entry-header,
.ast-page-builder-template .entry-content,
.ast-page-builder-template .ast-container,
.ast-separate-container .ast-article-single,
.ast-narrow-container .ast-article-single {
	padding-left: max(var(--ucc-gutter), env(safe-area-inset-left));
	padding-right: max(var(--ucc-gutter), env(safe-area-inset-right));
}
.ast-page-builder-template .entry-content > .ast-container,
.ast-page-builder-template .entry-content .entry-content { padding-left: 0; padding-right: 0; }
.ast-page-builder-template .entry-header { padding-top: clamp(24px, 4vw, 48px); }

/* ------------------------------------------------------------------
   PAGE TYPOGRAPHY
   ------------------------------------------------------------------ */

body.page .entry-content > h1 {
	font-size: clamp(28px, 4.4vw, 42px);
	line-height: 1.14;
	letter-spacing: -.015em;
	color: var(--ucc-green);
	margin: 0 0 .45em;
	max-width: 24ch;
}
body.page .entry-content > h2 {
	font-size: clamp(22px, 3.1vw, 30px);
	line-height: 1.22;
	color: var(--ucc-green);
	margin: 1.9em 0 .5em;
}
body.page .entry-content > h3 {
	font-size: clamp(18px, 2.4vw, 22px);
	line-height: 1.3;
	color: var(--ucc-green);
	margin: 1.6em 0 .4em;
}
body.page .entry-content > p { line-height: 1.68; margin: 0 0 1.1em; max-width: 68ch; }
body.page .entry-content > *:first-child { margin-top: 0; }
body.page.ucc-has-content-h1 .entry-header .entry-title { display: none; }

/* ------------------------------------------------------------------
   ARTICLE
   ------------------------------------------------------------------ */

.ucc-article {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(24px, 5vw, 56px) var(--ucc-gutter) 0;
	color: var(--ucc-ink);
}

.ucc-kicker {
	display: inline-block;
	font-size: 12px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--ucc-gold-text);
	text-decoration: none;
	margin-bottom: 12px;
}
.ucc-kicker:hover { color: var(--ucc-green); }

.ucc-headline {
	font-size: clamp(30px, 5vw, 46px);
	line-height: 1.12;
	letter-spacing: -.015em;
	margin: 0 0 14px;
	color: var(--ucc-green);
}

.ucc-standfirst {
	font-size: clamp(17px, 2.2vw, 20px);
	line-height: 1.5;
	color: var(--ucc-muted);
	margin: 0 0 24px;
	max-width: 62ch;
}

.ucc-byline {
	display: flex; align-items: center; gap: 12px;
	padding: 16px 0;
	border-top: 1px solid var(--ucc-line);
	border-bottom: 1px solid var(--ucc-line);
	margin-bottom: 26px;
}
.ucc-byline-avatar { border-radius: 50%; flex-shrink: 0; }
.ucc-byline-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ucc-byline-name { font-size: 15px; font-weight: 600; }
.ucc-byline-name a { color: var(--ucc-green); text-decoration: none; border-bottom: 1px solid transparent; }
.ucc-byline-name a:hover { border-bottom-color: var(--ucc-gold); }
.ucc-byline-meta { font-size: 13px; color: var(--ucc-muted); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.ucc-dot { opacity: .5; }

.ucc-art-hero { margin: 0 0 8px; }
.ucc-art-hero img { width: 100%; height: auto; border-radius: var(--ucc-radius); display: block; }
.ucc-art-hero figcaption { font-size: 13px; color: var(--ucc-muted); padding: 8px 2px 0; line-height: 1.45; }

/* Listen bar */
.ucc-listen[hidden] { display: none !important; }
.ucc-listen {
	display: flex; align-items: center; gap: 14px;
	background: var(--ucc-green-soft);
	border: 1px solid #d3e0d5;
	border-radius: var(--ucc-radius);
	padding: 12px 16px;
	margin: 22px 0 28px;
	position: relative;
	overflow: hidden;
}
.ucc-listen-btn {
	width: 44px; height: 44px; flex-shrink: 0;
	border-radius: 50%; border: none; cursor: pointer;
	background: var(--ucc-green); color: #fff;
	display: flex; align-items: center; justify-content: center;
}
.ucc-listen-btn:hover { background: var(--ucc-gold); }
.ucc-listen-btn .ucc-ico { display: none; line-height: 0; }
.ucc-listen-btn .ucc-ico-play { display: block; }
.ucc-listen-btn.is-playing .ucc-ico-play { display: none; }
.ucc-listen-btn.is-playing .ucc-ico-pause { display: block; }
.ucc-listen-btn svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.ucc-listen-btn .ucc-ico-play svg { margin-left: 2px; }
.ucc-listen-text { display: flex; flex-direction: column; line-height: 1.3; }
.ucc-listen-text strong { color: var(--ucc-green); font-size: 15px; }
.ucc-listen-text span { font-size: 13px; color: var(--ucc-muted); }
.ucc-listen-note { font-size: 12.5px; color: #8a6d1f; margin-top: 2px; }
.ucc-listen-progress { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: rgba(0,0,0,.06); }
.ucc-listen-progress span { display: block; height: 100%; width: 0; background: var(--ucc-gold); transition: width .3s ease; }

/* Body */
.ucc-article-body { font-size: 18px; line-height: 1.72; }
.ucc-article-body > * + * { margin-top: 1.15em; }
.ucc-article-body h2 { font-size: clamp(22px, 3vw, 28px); color: var(--ucc-green); margin-top: 1.8em; line-height: 1.25; }
.ucc-article-body h3 { font-size: clamp(19px, 2.4vw, 22px); color: var(--ucc-green); margin-top: 1.5em; }
.ucc-article-body img { max-width: 100%; height: auto; border-radius: var(--ucc-radius-sm); }
.ucc-article-body figcaption { font-size: 13px; color: var(--ucc-muted); padding-top: 6px; }
.ucc-article-body blockquote {
	border-left: 3px solid var(--ucc-gold);
	padding: 4px 0 4px 20px; margin-left: 0;
	font-size: 1.05em; color: #35443a; font-style: normal;
}
.ucc-article-body a { color: var(--ucc-green); text-decoration: underline; text-underline-offset: 2px; }
.ucc-article-body a:hover { color: var(--ucc-gold); }

.ucc-article-body figure { margin: 1.9em 0; }
.ucc-article-body figure img { display: block; margin-bottom: 0; }
.ucc-article-body figure figcaption,
.ucc-article-body .wp-element-caption,
.ucc-article-body .wp-caption-text {
	font-size: 13.5px; line-height: 1.5;
	color: var(--ucc-muted);
	margin: 8px 0 0;
	padding: 0 2px 0 10px;
	border-left: 2px solid var(--ucc-line);
}
.ucc-article-body figure + p,
.ucc-article-body figure + h2,
.ucc-article-body figure + h3 { margin-top: 1.9em; }

/* Share */
.ucc-share {
	display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
	margin: 34px 0; padding: 16px 0;
	border-top: 1px solid var(--ucc-line); border-bottom: 1px solid var(--ucc-line);
}
.ucc-share-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ucc-muted); margin-right: 4px; }
.ucc-share-btn {
	width: 40px; height: 40px;
	border-radius: var(--ucc-radius-sm);
	border: 1px solid var(--ucc-line);
	background: #fff; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	color: var(--ucc-green);
}
.ucc-share-btn:hover { background: var(--ucc-green); color: #fff; border-color: var(--ucc-green); }
.ucc-share-btn svg { width: 18px; height: 18px; fill: currentColor; }
.ucc-copied { font-size: 13px; color: var(--ucc-gold); font-weight: 600; }

/* Author card */
.ucc-author {
	display: flex; gap: 20px;
	background: var(--ucc-cream);
	border: 1px solid #ecdfc0;
	border-radius: var(--ucc-radius);
	padding: 24px;
	margin: 34px 0;
}
.ucc-author-photo img { border-radius: 50%; display: block; }
.ucc-author-photo { flex-shrink: 0; }
.ucc-author-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ucc-gold-text); }
.ucc-author-name { font-size: 20px; margin: 4px 0 2px; line-height: 1.2; }
.ucc-author-name a { color: var(--ucc-green); text-decoration: none; }
.ucc-author-name a:hover { color: var(--ucc-gold); }
.ucc-author-role { font-size: 14px; color: var(--ucc-muted); margin: 0 0 10px; font-weight: 600; }
.ucc-author-bio { font-size: 15px; line-height: 1.6; margin: 0 0 12px; }
.ucc-creds { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.ucc-creds li {
	font-size: 12px; font-weight: 600; color: var(--ucc-green);
	background: #fff; border: 1px solid #e6dcc0; border-radius: 99px; padding: 4px 11px;
}
.ucc-author-social { display: flex; gap: 8px; margin: 0 0 12px; }
.ucc-author-social a {
	width: 34px; height: 34px;
	border-radius: var(--ucc-radius-sm);
	border: 1px solid #e6dcc0; background: #fff;
	display: flex; align-items: center; justify-content: center;
	color: var(--ucc-green);
}
.ucc-author-social a:hover { background: var(--ucc-green); color: #fff; border-color: var(--ucc-green); }
.ucc-author-social svg { width: 16px; height: 16px; fill: currentColor; }
.ucc-author-links { margin: 0; display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.ucc-author-links a { color: var(--ucc-green); font-weight: 600; }

/* Related */
.ucc-related { margin: 40px 0; }
.ucc-related h2 { font-size: 20px; color: var(--ucc-green); margin: 0 0 16px; }
.ucc-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.ucc-related-card {
	display: block; text-decoration: none; color: inherit;
	border: 1px solid var(--ucc-line); border-radius: var(--ucc-radius);
	overflow: hidden; background: #fff;
	transition: transform .2s ease, box-shadow .2s ease;
}
.ucc-related-card:hover { transform: translateY(-4px); box-shadow: var(--ucc-shadow-lift); }
.ucc-related-img { display: block; aspect-ratio: 16/10; background: var(--ucc-green); background-size: cover; background-position: center; }
.ucc-related-body { display: block; padding: 12px 14px 16px; }
.ucc-related-title { display: block; font-weight: 700; color: var(--ucc-green); line-height: 1.3; margin-bottom: 6px; font-size: 15px; }
.ucc-related-meta { font-size: 12px; color: var(--ucc-muted); }

.ucc-back { margin: 30px 0 60px; }
.ucc-back a { color: var(--ucc-green); font-weight: 600; text-decoration: none; }
.ucc-back a:hover { color: var(--ucc-gold-text); }

/* ------------------------------------------------------------------
   AUTHORED ARTICLE BLOCKS
   ------------------------------------------------------------------ */

.ucc-art { margin: 0; }
.ucc-art > *:first-child { margin-top: 0; }

.ucc-art .ucc-lede { font-size: 1.07em; line-height: 1.66; color: #2b382e; }

.ucc-art .ucc-foto { margin: 2.1em 0; }
.ucc-art .ucc-foto img { width: 100%; height: auto; display: block; border-radius: var(--ucc-radius); }
.ucc-art .ucc-cap {
	font-size: 13.5px; line-height: 1.5;
	color: var(--ucc-muted);
	margin: 10px 0 0;
	padding-left: 12px;
	border-left: 2px solid var(--ucc-line);
}
.ucc-art .ucc-foto + p { margin-top: 2.1em; }
.ucc-art .ucc-foto--media { max-width: 68%; margin-left: auto; margin-right: auto; }

.ucc-art .ucc-rule { border: 0; border-top: 1px solid var(--ucc-line); margin: 2.2em 0; }

.ucc-art section,
.ucc-art .ucc-fuentes,
.ucc-art .ucc-notas {
	background: var(--ucc-green-soft);
	border: 1px solid #d3e0d5;
	border-left: 4px solid var(--ucc-gold);
	border-radius: var(--ucc-radius-sm);
	padding: 20px 22px;
	margin: 2.6em 0 1.6em;
	font-size: 15px; line-height: 1.62;
	color: #35443a;
}
.ucc-art section > *:first-child { margin-top: 0; }
.ucc-art section > *:last-child { margin-bottom: 0; }
.ucc-art section p { margin: 0 0 .9em; }
.ucc-art section h2, .ucc-art section h3, .ucc-art section .ucc-fuentes-tit {
	font-size: 12.5px !important;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--ucc-gold-text) !important;
	margin: 0 0 12px !important;
	line-height: 1.4;
	font-family: var(--ucc-font-mono);
}
.ucc-art section a { color: var(--ucc-green); text-decoration: underline; text-underline-offset: 2px; }
.ucc-art section a:hover { color: var(--ucc-gold); }

.ucc-art .ucc-verif {
	background: #fff;
	border: 1px solid #dae4db;
	border-radius: var(--ucc-radius-sm);
	padding: 12px 14px;
	font-size: 14px; line-height: 1.75;
}

.ucc-art .ucc-pie {
	font-size: 13px; line-height: 1.6;
	color: var(--ucc-muted);
	border-top: 1px solid var(--ucc-line);
	padding-top: 16px;
	margin: 2.2em 0 0;
}

.ucc-art h2 { font-size: clamp(21px, 2.9vw, 27px); color: var(--ucc-green); line-height: 1.25; margin: 2em 0 .55em; }
.ucc-art h3 { font-size: clamp(18px, 2.3vw, 21px); color: var(--ucc-green); margin: 1.7em 0 .45em; }
.ucc-art p { margin: 0 0 1.15em; }
.ucc-art ul, .ucc-art ol { margin: 0 0 1.3em; padding-left: 1.35em; }
.ucc-art li { margin-bottom: .5em; }
.ucc-art blockquote { border-left: 3px solid var(--ucc-gold); padding: 2px 0 2px 20px; margin: 1.6em 0; color: #35443a; }

.ucc-art .ucc-quote {
	font-size: clamp(19px, 2.6vw, 23px);
	line-height: 1.42;
	color: var(--ucc-green);
	font-weight: 600;
	font-family: var(--ucc-font-display);
	border-left: 4px solid var(--ucc-gold);
	padding: 6px 0 6px 22px;
	margin: 2.1em 0;
	max-width: 46ch;
}
.ucc-art .ucc-quote cite, .ucc-art .ucc-quote footer {
	display: block;
	font-size: 14px; font-weight: 500; font-style: normal;
	font-family: var(--ucc-font-body);
	color: var(--ucc-muted);
	margin-top: 10px;
}

.ucc-art .ucc-box {
	background: var(--ucc-cream);
	border: 1px solid #ecdfc0;
	border-radius: var(--ucc-radius);
	padding: 20px 22px;
	margin: 2.3em 0;
	font-size: 15.5px; line-height: 1.62;
}
.ucc-art .ucc-box > *:first-child { margin-top: 0; }
.ucc-art .ucc-box > *:last-child { margin-bottom: 0; }
.ucc-art .ucc-box p { margin: 0 0 .85em; }

.ucc-art .ucc-kick {
	display: block;
	font-size: 12px; font-weight: 700;
	letter-spacing: .13em; text-transform: uppercase;
	color: var(--ucc-gold);
	margin: 0 0 10px;
	line-height: 1.4;
}

.ucc-art .ucc-doc {
	font-size: 14px; line-height: 1.6;
	color: var(--ucc-muted);
	background: #fff;
	border: 1px dashed #cfd9d0;
	border-radius: var(--ucc-radius-sm);
	padding: 14px 16px;
	margin: 1.8em 0;
}

/* ------------------------------------------------------------------
   ARTICLE INDEX
   ------------------------------------------------------------------ */

.ucc-index {
	max-width: var(--ucc-maxw);
	margin: 0 auto;
	padding: clamp(28px, 5vw, 56px) var(--ucc-gutter) var(--ucc-section);
}

.ucc-index-head { margin-bottom: clamp(24px, 4vw, 40px); }
.ucc-index-head h1 {
	font-size: clamp(28px, 4.6vw, 42px);
	line-height: 1.14;
	color: var(--ucc-green);
	margin: 0 0 10px;
	letter-spacing: -.015em;
}
.ucc-index-standfirst {
	font-size: clamp(16px, 2.1vw, 19px);
	color: var(--ucc-muted);
	max-width: 58ch;
	margin: 0;
	line-height: 1.55;
}

.ucc-index-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--ucc-gap);
}

.ucc-index-card {
	background: #fff;
	border: 1px solid var(--ucc-line);
	border-radius: var(--ucc-radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ucc-index-card:hover { transform: translateY(-4px); box-shadow: var(--ucc-shadow-lift); border-color: #cfd9d0; }
.ucc-index-link { display: block; text-decoration: none !important; color: inherit !important; height: 100%; }

.ucc-index-img {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--ucc-green);
	background-size: cover;
	background-position: center;
}
.ucc-index-body { display: block; padding: 18px 20px 22px; }

.ucc-index-kicker {
	display: block;
	font-size: 11px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--ucc-gold-text);
	margin-bottom: 7px;
}
.ucc-index-title {
	display: block;
	font-size: 18px; font-weight: 600;
	line-height: 1.28;
	color: var(--ucc-green);
	margin-bottom: 8px;
}
.ucc-index-excerpt { display: block; font-size: 14.5px; line-height: 1.55; color: var(--ucc-muted); margin-bottom: 12px; }
.ucc-index-meta { display: block; font-size: 12.5px; color: var(--ucc-muted); }

.ucc-index-card.is-lead { grid-column: 1 / -1; }
@media (min-width: 780px) {
	.ucc-index-card.is-lead .ucc-index-link { display: grid; grid-template-columns: 1.25fr 1fr; align-items: stretch; }
	.ucc-index-card.is-lead .ucc-index-img { aspect-ratio: auto; height: 100%; min-height: 320px; }
	.ucc-index-card.is-lead .ucc-index-body { padding: clamp(24px, 3vw, 40px); align-self: center; }
	.ucc-index-card.is-lead .ucc-index-title { font-size: clamp(24px, 2.8vw, 32px); line-height: 1.18; margin-bottom: 12px; }
	.ucc-index-card.is-lead .ucc-index-excerpt { font-size: 16px; margin-bottom: 16px; }
}

.ucc-index .navigation.pagination { margin-top: var(--ucc-section); }
.ucc-index .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; }
.ucc-index .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 14px;
	border: 1px solid var(--ucc-line);
	border-radius: var(--ucc-radius-sm);
	color: var(--ucc-green);
	text-decoration: none; font-weight: 700;
	background: #fff;
}
.ucc-index .page-numbers:hover { border-color: var(--ucc-gold); color: var(--ucc-gold); }
.ucc-index .page-numbers.current { background: var(--ucc-green); color: #fff; border-color: var(--ucc-green); }
.ucc-index .page-numbers.dots { border: none; background: transparent; }
.ucc-index .screen-reader-text { position: absolute; left: -9999px; }

.ucc-index-empty {
	text-align: center;
	padding: clamp(40px, 8vw, 80px) 20px;
	border: 1px dashed var(--ucc-line);
	border-radius: var(--ucc-radius);
	color: var(--ucc-muted);
}

.ucc-btn-solid {
	display: inline-block;
	background: var(--ucc-green);
	color: #fff !important;
	padding: 12px 24px;
	border-radius: var(--ucc-radius-sm);
	text-decoration: none !important;
	font-weight: 700;
}
.ucc-btn-solid:hover { background: var(--ucc-gold); }

/* ------------------------------------------------------------------
   HEADER
   ------------------------------------------------------------------ */

.ucc-skip {
	position: absolute;
	left: -9999px; top: 0;
	background: var(--ucc-gold);
	color: #14210f;
	padding: 12px 18px;
	z-index: 1000;
	font-weight: 700;
	border-radius: 0 0 var(--ucc-radius-sm) 0;
}
.ucc-skip:focus { left: 0; }

.ucc-header {
	background: var(--ucc-green);
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 200;
}
.ucc-header.is-scrolled { box-shadow: 0 6px 22px rgba(0,0,0,.22); }
body.admin-bar .ucc-header { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar .ucc-header { top: 46px; }
}

.ucc-header-inner {
	max-width: var(--ucc-maxw);
	margin: 0 auto;
	padding: 0 var(--ucc-gutter);
	min-height: 72px;
	display: flex;
	align-items: center;
	gap: var(--ucc-gap);
}

.ucc-header-brand { flex-shrink: 0; display: flex; align-items: center; }
.ucc-header-brand a { display: flex; align-items: center; text-decoration: none; }
.ucc-logo-text { color: #fff; font-weight: 700; font-size: 18px; letter-spacing: .01em; }

.ucc-logo,
.ucc-header .ucc-logo,
.woocommerce .ucc-header .ucc-logo,
.woocommerce-page .ucc-header .ucc-logo {
	height: 48px !important;
	max-height: 48px !important;
	width: auto !important;
	max-width: 190px !important;
	object-fit: contain;
	display: block;
}

.ucc-nav { flex: 1; display: flex; justify-content: center; }
.ucc-menu {
	display: flex; align-items: center;
	gap: clamp(14px, 2vw, 30px);
	list-style: none; margin: 0; padding: 0;
}
.ucc-menu li { position: relative; }
.ucc-menu a {
	color: #E8EFE9;
	text-decoration: none;
	font-size: 14.5px; font-weight: 700;
	letter-spacing: .04em; text-transform: uppercase;
	padding: 26px 2px;
	display: block;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
	transition: color .15s ease, border-color .15s ease;
}
.ucc-menu a:hover,
.ucc-menu .current-menu-item > a,
.ucc-menu .current_page_item > a,
.ucc-menu .current-menu-ancestor > a {
	color: var(--ucc-gold-light);
	border-bottom-color: var(--ucc-gold);
}

.ucc-menu .sub-menu {
	position: absolute;
	top: 100%; left: 50%;
	transform: translateX(-50%) translateY(6px);
	max-width: min(280px, calc(100vw - 24px));
	background: var(--ucc-green-deep);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--ucc-radius-sm);
	padding: 8px; margin: 0;
	list-style: none;
	min-width: 200px;
	opacity: 0; visibility: hidden;
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
	box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.ucc-menu li:hover > .sub-menu,
.ucc-menu li:focus-within > .sub-menu {
	opacity: 1; visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.ucc-menu .sub-menu a {
	padding: 10px 12px;
	text-transform: none; letter-spacing: 0;
	font-weight: 600;
	border-bottom: none;
	border-radius: 6px;
	font-size: 14px;
}
.ucc-menu .sub-menu a:hover { background: rgba(255,255,255,.08); }
.ucc-menu .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 5px; height: 5px;
	margin-left: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.ucc-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }

.ucc-account {
	display: flex; align-items: center; justify-content: center;
	width: 46px; height: 46px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: var(--ucc-radius-sm);
	color: #fff;
	text-decoration: none;
	position: relative;
}
.ucc-account:hover { background: rgba(255,255,255,.1); border-color: var(--ucc-gold); color: #fff; }
.ucc-account svg { width: 21px; height: 21px; }
.ucc-account::after {
	content: "";
	position: absolute;
	right: 6px; bottom: 6px;
	width: 9px; height: 9px;
	border-radius: 50%;
	background: #C0392B;
	border: 2px solid var(--ucc-green);
	box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.ucc-account.is-in::after { background: #2ECC71; }

.ucc-cart {
	position: relative;
	display: flex; align-items: center; justify-content: center;
	width: 46px; height: 46px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: var(--ucc-radius-sm);
	color: #fff;
	text-decoration: none;
}
.ucc-cart:hover { background: rgba(255,255,255,.1); border-color: var(--ucc-gold); color: #fff; }
.ucc-cart svg { width: 20px; height: 20px; }
.ucc-cart-bubble {
	position: absolute;
	top: -7px; right: -7px;
	min-width: 20px; height: 20px;
	padding: 0 5px;
	border-radius: 99px;
	background: var(--ucc-gold);
	color: #1a1405;
	font-size: 11.5px; font-weight: 800;
	display: flex; align-items: center; justify-content: center;
	line-height: 1;
}
.ucc-cart-bubble.is-empty { background: rgba(255,255,255,.22); color: #dfe8e0; }

.ucc-burger {
	display: none;
	width: 46px; height: 46px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: var(--ucc-radius-sm);
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	align-items: center; justify-content: center;
	gap: 5px;
	padding: 0;
}
.ucc-burger span {
	display: block;
	width: 20px; height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.ucc-header.is-open .ucc-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ucc-header.is-open .ucc-burger span:nth-child(2) { opacity: 0; }
.ucc-header.is-open .ucc-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ucc-mobile {
	background: var(--ucc-green-deep);
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 8px var(--ucc-gutter) 20px;
	max-height: calc(100vh - 62px);
	overflow-y: auto;
}
.ucc-mobile[hidden] { display: none; }
.ucc-mobile-menu { list-style: none; margin: 0; padding: 0; }
.ucc-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.08); }
.ucc-mobile-menu li:last-child { border-bottom: none; }
.ucc-mobile-menu a {
	display: block;
	padding: 15px 2px;
	color: #E8EFE9;
	text-decoration: none;
	font-weight: 700;
	font-size: 15.5px;
	letter-spacing: .03em;
	text-transform: uppercase;
}
.ucc-mobile-menu a:hover, .ucc-mobile-menu .current-menu-item > a { color: var(--ucc-gold-light); }
.ucc-mobile-menu .sub-menu { list-style: none; margin: 0 0 8px; padding: 0 0 0 14px; }
.ucc-mobile-menu .sub-menu a { text-transform: none; font-weight: 600; font-size: 14.5px; padding: 11px 2px; opacity: .9; }

@media (max-width: 900px) {
	.ucc-nav { display: none; }
	.ucc-burger { display: flex; flex: 0 0 auto; margin: 0 auto; }
	.ucc-header-inner { min-height: 62px; gap: 8px; }
	.ucc-header-brand { flex: 1 1 0; min-width: 0; }
	.ucc-header-actions { flex: 1 1 0; justify-content: flex-end; margin-left: 0; }
	.ucc-logo,
	.ucc-header .ucc-logo,
	.woocommerce .ucc-header .ucc-logo,
	.woocommerce-page .ucc-header .ucc-logo {
		height: 38px !important;
		max-height: 38px !important;
		max-width: 150px !important;
	}
}

@media (max-width: 480px) {
	.ucc-header-inner { padding-left: 12px; padding-right: 12px; }
	.ucc-cart, .ucc-burger, .ucc-account { width: 42px; height: 42px; }
}

/* ------------------------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------------------------ */

.ucc-contact { max-width: 860px; margin: 0 auto; }

.ucc-contact-intro {
	font-size: clamp(17px, 2.2vw, 19px);
	line-height: 1.55;
	color: var(--ucc-muted);
	max-width: 56ch;
	margin: 0 0 var(--ucc-section);
}

.ucc-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
	margin-bottom: var(--ucc-section);
}

.ucc-contact-card {
	display: flex; align-items: flex-start; gap: 16px;
	padding: 20px;
	background: #fff;
	border: 1px solid var(--ucc-line);
	border-radius: var(--ucc-radius);
	text-decoration: none !important;
	color: inherit !important;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ucc-contact-card:hover { transform: translateY(-3px); box-shadow: var(--ucc-shadow-lift); border-color: var(--ucc-gold); }

.ucc-contact-ico {
	flex-shrink: 0;
	width: 46px; height: 46px;
	border-radius: var(--ucc-radius-sm);
	background: var(--ucc-green-soft);
	color: var(--ucc-green);
	display: flex; align-items: center; justify-content: center;
}
.ucc-contact-card:hover .ucc-contact-ico { background: var(--ucc-green); color: #fff; }
.ucc-contact-ico svg { width: 22px; height: 22px; }

.ucc-contact-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ucc-contact-kind { font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ucc-gold-text); }
.ucc-contact-value { font-size: 16px; font-weight: 700; color: var(--ucc-green); word-break: break-word; line-height: 1.3; }
.ucc-contact-note { font-size: 13.5px; color: var(--ucc-muted); line-height: 1.5; }

.ucc-contact h2 { font-size: clamp(21px, 3vw, 26px); color: var(--ucc-green); margin: 0 0 10px; line-height: 1.25; }
.ucc-contact section { margin-bottom: var(--ucc-section); }
.ucc-contact section > p { color: var(--ucc-muted); line-height: 1.6; margin: 0 0 18px; max-width: 60ch; }

.ucc-contact-quick {
	background: var(--ucc-green-soft);
	border: 1px solid #d3e0d5;
	border-left: 4px solid var(--ucc-gold);
	border-radius: var(--ucc-radius);
	padding: 24px 26px;
}
.ucc-contact-quick ul { margin: 0; padding-left: 20px; }
.ucc-contact-quick li { margin-bottom: 9px; line-height: 1.55; color: #35443a; }
.ucc-contact-quick a { color: var(--ucc-green); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.ucc-contact-quick a:hover { color: var(--ucc-gold); }

.ucc-contact-form { background: #fff; border: 1px solid var(--ucc-line); border-radius: var(--ucc-radius); padding: 26px; }
.ucc-contact-form .fluentform { margin-top: 6px; }
.ucc-contact-form input[type=text],
.ucc-contact-form input[type=email],
.ucc-contact-form input[type=tel],
.ucc-contact-form textarea,
.ucc-contact-form select {
	border: 1px solid #cfd9d0 !important;
	border-radius: var(--ucc-radius-sm) !important;
	padding: 12px 14px !important;
	font-size: 16px !important;
}
.ucc-contact-form input:focus,
.ucc-contact-form textarea:focus {
	border-color: var(--ucc-green) !important;
	outline: 2px solid rgba(27,58,31,.15) !important;
	outline-offset: 1px;
}
.ucc-contact-form .ff-btn-submit {
	background: var(--ucc-green) !important;
	border-radius: var(--ucc-radius-sm) !important;
	padding: 13px 26px !important;
	font-weight: 700 !important;
	border: none !important;
}
.ucc-contact-form .ff-btn-submit:hover { background: var(--ucc-gold) !important; }

.ucc-contact-legal { border-top: 1px solid var(--ucc-line); padding-top: 26px; }
.ucc-contact-legal dl {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
	margin: 18px 0;
}
.ucc-contact-legal dl > div {
	background: var(--ucc-cream);
	border: 1px solid #ecdfc0;
	border-radius: var(--ucc-radius-sm);
	padding: 13px 15px;
}
.ucc-contact-legal dt { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ucc-gold-text); margin-bottom: 3px; }
.ucc-contact-legal dd { margin: 0; font-weight: 700; color: var(--ucc-green); font-size: 15.5px; }
.ucc-contact-fine { font-size: 13px !important; color: var(--ucc-muted); line-height: 1.55; }

/* ------------------------------------------------------------------
   HOME
   ------------------------------------------------------------------ */

.ucc-home { max-width: none; margin: 0; }
.ucc-home > :not(.ucc-hero) {
	max-width: var(--ucc-maxw);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--ucc-gutter);
	padding-right: var(--ucc-gutter);
}

/* The front page hands its full width to the hero; the header above is the
   same green, so the two merge into one surface. */
body.home .site-content .ast-container { max-width: 100%; padding: 0; }
body.home .entry-header { display: none; padding: 0; margin: 0; }
body.home .entry-content { padding: 0; margin-top: 0; }
body.home .entry-content > * { padding-left: 0; padding-right: 0; }
body.home .site-content { padding-top: 0; margin-top: 0; }
body.home { overflow-x: hidden; }

/* Any page carrying a full-bleed band needs the same guard: 100vw counts
   the scrollbar, so without this an interior page scrolls sideways by a
   few pixels. */
body.ucc-has-band,
html:has(.ucc-pagehero),
html:has(.ucc-hero) { overflow-x: hidden; }
body.home #content > .ast-container { max-width: 100% !important; padding: 0 !important; }
body.home .ast-article-single,
body.home .ast-article-post,
body.home #primary,
body.home .site-main {
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
	border: none !important;
}
body.home .ast-separate-container .ast-article-single { background: transparent; }

/* HERO: la montana hecha de escaques. Utuado is Otoao, entre montanas;
   chess and the mountain share the square. One load sequence, then calm. */

.ucc-hero {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	position: relative;
	background:
		radial-gradient(1100px 480px at 78% -10%, rgba(184,150,46,.16), transparent 60%),
		linear-gradient(180deg, var(--ucc-green) 0%, #1E4023 42%, var(--ucc-green-deep) 100%);
	border-radius: 0;
	color: #fff;
	overflow: hidden;
	margin-bottom: var(--ucc-section);
	min-height: clamp(420px, 54vh, 540px);
	display: flex;
	align-items: flex-start;
}

.ucc-hero-text {
	position: relative;
	z-index: 2;
	max-width: calc(var(--ucc-maxw) );
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
	padding: clamp(36px, 6vw, 72px) var(--ucc-gutter) clamp(150px, 20vw, 210px);
}
.ucc-hero-text > * { max-width: 640px; }

.ucc-hero-eyebrow {
	font-size: 12.5px; font-weight: 600;
	letter-spacing: .22em; text-transform: uppercase;
	color: var(--ucc-gold-light);
	margin: 0 0 16px;
	opacity: 0;
	animation: ucc-rise .7s ease .05s forwards;
}

.ucc-hero h1,
body.page .entry-content .ucc-hero h1 {
	color: #fff !important;
	font-family: var(--ucc-font-display);
	font-weight: 600;
	font-size: clamp(34px, 5.6vw, 58px);
	line-height: 1.06;
	letter-spacing: -.015em;
	color: #fff;
	margin: 0 0 18px;
	opacity: 0;
	animation: ucc-rise .7s ease .15s forwards;
}
.ucc-hero h1 em { font-style: italic; color: var(--ucc-gold-light); }

.ucc-hero-dek {
	font-size: clamp(16.5px, 2vw, 19px);
	line-height: 1.62;
	color: #D5E0D6;
	margin: 0 0 26px;
	max-width: 52ch;
	opacity: 0;
	animation: ucc-rise .7s ease .25s forwards;
}

.ucc-hero-cta {
	display: flex; flex-wrap: wrap; gap: 12px;
	margin: 0;
	opacity: 0;
	animation: ucc-rise .7s ease .35s forwards;
}

@keyframes ucc-rise {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: translateY(0); }
}

.ucc-btn-ghost {
	display: inline-block;
	padding: 12px 24px;
	border-radius: var(--ucc-radius-sm);
	border: 2px solid rgba(255,255,255,.5);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
}
.ucc-btn-ghost:hover { border-color: var(--ucc-gold); color: var(--ucc-gold-light) !important; }

.ucc-ridge {
	position: absolute;
	left: 0; right: 0; bottom: -1px;
	width: 100%;
	height: clamp(130px, 15vw, 208px);
	display: block;
	z-index: 1;
}

.ucc-hero-facts {
	list-style: none;
	margin: calc(var(--ucc-section) * -0.55) 0 var(--ucc-section);
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1px;
	background: var(--ucc-line);
	border: 1px solid var(--ucc-line);
	border-radius: var(--ucc-radius);
	overflow: hidden;
	position: relative;
	z-index: 3;
}
.ucc-hero-facts li { background: #fff; padding: 18px 20px; }
.ucc-hero-facts strong {
	display: block;
	color: var(--ucc-green);
	font-size: 14px;
	letter-spacing: .06em;
	margin-bottom: 3px;
}
.ucc-hero-facts span { font-size: 13.5px; color: var(--ucc-muted); line-height: 1.5; }

/* Sections */
.ucc-home-section, .ucc-home-feature, .ucc-home-trust { margin-bottom: var(--ucc-section); }
.ucc-home h2 {
	font-size: clamp(23px, 3.3vw, 32px);
	color: var(--ucc-green);
	line-height: 1.2;
	margin: 0 0 10px;
}
.ucc-home-lead { color: var(--ucc-muted); font-size: 16.5px; line-height: 1.6; margin: 0 0 26px; max-width: 62ch; }
.ucc-home-eyebrow {
	font-size: 12px; font-weight: 700;
	letter-spacing: .15em; text-transform: uppercase;
	color: var(--ucc-gold-text);
	margin: 0 0 8px;
}

.ucc-home-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--ucc-gap);
}
.ucc-home-cards--two { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.ucc-home-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ucc-line);
	border-radius: var(--ucc-radius);
	overflow: hidden;
	text-decoration: none !important;
	color: inherit !important;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ucc-home-card:hover { transform: translateY(-4px); box-shadow: var(--ucc-shadow-lift); border-color: var(--ucc-gold); }
.ucc-home-card-img {
	display: block;
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	background-color: var(--ucc-green);
}
.ucc-home-card-body { display: block; padding: 20px 22px 22px; }
.ucc-home-card-kicker {
	display: block;
	font-size: 11.5px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--ucc-gold-text);
	margin-bottom: 7px;
}
.ucc-home-card-title {
	display: block;
	font-size: 20px;
	color: var(--ucc-green);
	line-height: 1.25;
	margin-bottom: 8px;
}
.ucc-home-card-text { display: block; font-size: 14.5px; line-height: 1.6; color: var(--ucc-muted); margin-bottom: 14px; }
.ucc-home-card-go { display: block; font-size: 14px; font-weight: 700; color: var(--ucc-green); }
.ucc-home-card-go::after { content: " \2192"; }
.ucc-home-card:hover .ucc-home-card-go { color: var(--ucc-gold-text); }

/* Analysis cards echo the product badges: dark panel, mono kicker. */
.ucc-home-cards--two .ucc-home-card {
	background: linear-gradient(160deg, #21452a, var(--ucc-green-deep));
	border-color: rgba(255,255,255,.14);
}
.ucc-home-cards--two .ucc-home-card-kicker { color: var(--ucc-gold-light); }
.ucc-home-cards--two .ucc-home-card-title { color: #fff; }
.ucc-home-cards--two .ucc-home-card-text { color: #C7D4C9; }
.ucc-home-cards--two .ucc-home-card-go { color: var(--ucc-gold-light); }
.ucc-home-cards--two .ucc-home-card:hover { border-color: var(--ucc-gold); }

.ucc-home-feature {
	background: var(--ucc-cream);
	border: 1px solid #ecdfc0;
	border-radius: var(--ucc-radius);
	padding: clamp(26px, 4vw, 44px);
}
.ucc-home-feature-text { max-width: 66ch; }
.ucc-home-feature p { color: #4a533f; line-height: 1.65; margin: 0 0 20px; max-width: 62ch; }
.ucc-home-feature .ucc-btn-ghost { border-color: var(--ucc-green); color: var(--ucc-green) !important; }
.ucc-home-feature .ucc-btn-ghost:hover { border-color: var(--ucc-gold); color: var(--ucc-gold) !important; }

.ucc-home-trust { border-top: 1px solid var(--ucc-line); padding-top: 30px; }
.ucc-home-trust p { color: var(--ucc-muted); line-height: 1.65; max-width: 66ch; margin: 0 0 14px; }
.ucc-home-more { margin: 18px 0 0; }
.ucc-home-more a { color: var(--ucc-green); font-weight: 700; text-decoration: none; }
.ucc-home-more a:hover { color: var(--ucc-gold-text); }

/* ------------------------------------------------------------------
   RESPONSIVE PASS
   ------------------------------------------------------------------ */

@media (min-width: 561px) and (max-width: 1024px) {
	.ucc-article { max-width: 100%; padding-left: clamp(24px, 5vw, 56px); padding-right: clamp(24px, 5vw, 56px); }
	.ucc-article-body { font-size: 17.5px; }
	.ucc-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
	.ucc-article { max-width: 780px; }
	.ucc-article-body { font-size: 18.5px; }
}

@media (max-width: 560px) {
	.ucc-article { padding-top: 20px; }
	.ucc-headline { font-size: clamp(26px, 8vw, 32px); }
	.ucc-standfirst { font-size: 16.5px; margin-bottom: 18px; }
	.ucc-byline { padding: 13px 0; margin-bottom: 20px; }
	.ucc-byline-meta { font-size: 12.5px; }
	.ucc-art-hero img { border-radius: var(--ucc-radius-sm); }
	.ucc-listen { padding: 11px 13px; gap: 11px; margin: 18px 0 24px; }
	.ucc-listen-btn { width: 40px; height: 40px; }
	.ucc-article-body { font-size: 17px; line-height: 1.68; }
	.ucc-article-body > * + * { margin-top: 1.1em; }
	.ucc-share { gap: 8px; margin: 26px 0; }
	.ucc-share-label { width: 100%; margin-bottom: 2px; }
	.ucc-share-btn { width: 42px; height: 42px; }
	.ucc-author { flex-direction: column; gap: 14px; padding: 20px; }
	.ucc-author-photo img { width: 68px; height: 68px; }
	.ucc-back { margin-bottom: 44px; }

	.ucc-art .ucc-foto { margin: 1.7em 0; }
	.ucc-art .ucc-foto--media { max-width: 100%; }
	.ucc-art .ucc-cap { font-size: 12.5px; padding-left: 10px; }
	.ucc-art section { padding: 16px 17px; font-size: 14.5px; }
	.ucc-art .ucc-verif { padding: 11px 12px; font-size: 13.5px; }
	.ucc-art .ucc-pie { font-size: 12.5px; }
	.ucc-art .ucc-lede { font-size: 1.04em; }
	.ucc-art .ucc-quote { font-size: 18px; padding-left: 16px; margin: 1.7em 0; }
	.ucc-art .ucc-box { padding: 16px 17px; font-size: 15px; }
	.ucc-art .ucc-doc { padding: 12px 13px; font-size: 13.5px; }

	.ucc-index-grid { grid-template-columns: 1fr; gap: 14px; }
	.ucc-index-body { padding: 15px 16px 18px; }
	.ucc-index-title { font-size: 17px; }
	.ucc-index-card.is-lead .ucc-index-title { font-size: 20px; }

	.ucc-contact-grid { grid-template-columns: 1fr; gap: 12px; }
	.ucc-contact-card { padding: 16px; gap: 13px; }
	.ucc-contact-quick { padding: 18px 19px; }
	.ucc-contact-form { padding: 18px; }

	.ucc-related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.ucc-related-title { font-size: 14px; }

	.ucc-hero { min-height: 0; }
	.ucc-hero-text { padding-bottom: 105px; }
	.ucc-ridge { height: 110px; }
	.ucc-hero-cta .ucc-btn-solid, .ucc-hero-cta .ucc-btn-ghost { flex: 1 1 100%; text-align: center; }
	.ucc-hero-facts { margin-top: -28px; }
	.ucc-home-cards { grid-template-columns: 1fr; }
	.ucc-home-card-body { padding: 16px 17px 18px; }
}

@media (prefers-reduced-motion: reduce) {
	.ucc-related-card, .ucc-listen-progress span,
	.ucc-menu a, .ucc-menu .sub-menu, .ucc-burger span { transition: none; }
	.ucc-hero-eyebrow, .ucc-hero h1, .ucc-hero-dek, .ucc-hero-cta { animation: none; opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------
   CLASS LEVELS (pricing cards, data pulled live from the products)
   ------------------------------------------------------------------ */

.ucc-levels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: var(--ucc-gap);
	margin: 26px 0 var(--ucc-section);
}

.ucc-level {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ucc-line);
	border-radius: var(--ucc-radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ucc-level:hover { transform: translateY(-4px); box-shadow: var(--ucc-shadow-lift); border-color: var(--ucc-gold); }
.ucc-level.is-featured { border-color: var(--ucc-gold); box-shadow: 0 0 0 1px var(--ucc-gold); }

.ucc-level-head {
	background: linear-gradient(160deg, #21452a, var(--ucc-green-deep));
	color: #fff;
	padding: 22px 24px 20px;
}
.ucc-level-kicker {
	display: block;
	font-family: var(--ucc-font-mono);
	font-size: 11.5px; font-weight: 600;
	letter-spacing: .16em; text-transform: uppercase;
	color: var(--ucc-gold-light);
	margin-bottom: 6px;
}
.ucc-level-name {
	font-family: var(--ucc-font-display);
	font-weight: 600;
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 4px;
	color: #fff;
}
.ucc-level-range { font-size: 13.5px; color: #C7D4C9; }

.ucc-level-price { display: flex; align-items: baseline; gap: 6px; padding: 18px 24px 0; }
.ucc-level-price strong {
	font-family: var(--ucc-font-display);
	font-size: 40px; font-weight: 600;
	color: var(--ucc-green);
	line-height: 1;
}
.ucc-level-price strong .woocommerce-Price-amount { font-size: inherit; }
.ucc-level-price span { font-size: 14px; color: var(--ucc-muted); }

.ucc-level-list { list-style: none; margin: 14px 0 0; padding: 0 24px; flex-grow: 1; }
.ucc-level-list li {
	position: relative;
	padding: 8px 0 8px 28px;
	font-size: 14.5px;
	line-height: 1.5;
	color: #35443a;
	border-bottom: 1px solid #F0F4F0;
}
.ucc-level-list li:last-child { border-bottom: none; }
.ucc-level-list li::before {
	content: "";
	position: absolute;
	left: 2px; top: 13px;
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--ucc-green-soft);
	border: 1px solid #cfe0d2;
}
.ucc-level-list li::after {
	content: "";
	position: absolute;
	left: 6px; top: 16.5px;
	width: 6px; height: 3.5px;
	border-left: 2px solid var(--ucc-green);
	border-bottom: 2px solid var(--ucc-green);
	transform: rotate(-45deg);
}

.ucc-level-foot { padding: 20px 24px 24px; }
.ucc-level-foot .ucc-btn-solid { display: block; text-align: center; }

@media (max-width: 560px) {
	.ucc-levels { grid-template-columns: 1fr; gap: 14px; }
	.ucc-level-price strong { font-size: 34px; }
}

/* ------------------------------------------------------------------
   ABOUT
   ------------------------------------------------------------------ */

.ucc-about-intro {
	font-size: clamp(17px, 2.2vw, 19.5px);
	line-height: 1.6;
	color: var(--ucc-muted);
	max-width: 62ch;
	margin: 0 0 var(--ucc-section);
}

.ucc-about-historia {
	display: grid;
	grid-template-columns: minmax(220px, 380px) 1fr;
	gap: var(--ucc-gap);
	align-items: center;
	margin-bottom: var(--ucc-section);
}
.ucc-about-img { margin: 0; }
.ucc-about-img img { width: 100%; height: auto; border-radius: var(--ucc-radius); display: block; }

.ucc-values {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--ucc-gap);
	margin: 24px 0 var(--ucc-section);
}
.ucc-value {
	background: #fff;
	border: 1px solid var(--ucc-line);
	border-top: 3px solid var(--ucc-gold);
	border-radius: var(--ucc-radius);
	padding: 22px 24px;
}
.ucc-value-kicker {
	font-family: var(--ucc-font-mono);
	font-size: 12px; font-weight: 600;
	letter-spacing: .14em;
	color: var(--ucc-gold-text);
}
.ucc-value h3 {
	font-family: var(--ucc-font-display);
	font-weight: 600;
	font-size: 20px;
	color: var(--ucc-green);
	margin: 8px 0 8px;
}
.ucc-value p { font-size: 14.5px; line-height: 1.6; color: var(--ucc-muted); margin: 0; }

.ucc-about-gov {
	background: var(--ucc-green-soft);
	border: 1px solid #d3e0d5;
	border-left: 4px solid var(--ucc-gold);
	border-radius: var(--ucc-radius);
	padding: 26px 28px;
	margin-bottom: var(--ucc-section);
}
.ucc-about-gov p { color: #35443a; line-height: 1.65; max-width: 70ch; }
.ucc-gov-data {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
	margin: 18px 0 0;
}
.ucc-gov-data > div {
	background: #fff;
	border: 1px solid #dae4db;
	border-radius: var(--ucc-radius-sm);
	padding: 13px 15px;
}
.ucc-gov-data dt {
	font-family: var(--ucc-font-mono);
	font-size: 11px; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--ucc-gold-text);
	margin-bottom: 3px;
}
.ucc-gov-data dd { margin: 0; font-weight: 700; color: var(--ucc-green); font-size: 15px; }

.ucc-about-cta { border-top: 1px solid var(--ucc-line); padding-top: 28px; }
.ucc-about-cta p { max-width: 62ch; color: var(--ucc-muted); }

@media (max-width: 700px) {
	.ucc-about-historia { grid-template-columns: 1fr; }
	.ucc-about-gov { padding: 20px; }
}


/* ------------------------------------------------------------------
   ABOUT: measure and voice
   ------------------------------------------------------------------ */

.ucc-about { max-width: 920px; margin: 0 auto; }

.ucc-about h1 {
	font-family: var(--ucc-font-display);
	font-weight: 600;
	font-size: clamp(30px, 4.6vw, 44px);
	line-height: 1.12;
	letter-spacing: -.015em;
	color: var(--ucc-green);
	margin: 0 0 .4em;
}
.ucc-about h2 {
	font-family: var(--ucc-font-display);
	font-weight: 600;
	font-size: clamp(23px, 3.2vw, 30px);
	line-height: 1.22;
	color: var(--ucc-green);
	margin: 0 0 .5em;
}
.ucc-about > h2 { margin-top: 1.6em; }
.ucc-about p { font-size: 16.5px; line-height: 1.68; }
.ucc-about > p { max-width: 66ch; }
.ucc-about-historia h2 { margin-top: 0; }
.ucc-about-historia p { color: #35443a; }


/* ------------------------------------------------------------------
   JUNTA DIRECTIVA
   Photo slots ship as monogram circles; drop a real photo URL into the
   img tag in the page HTML and it replaces the monogram.
   ------------------------------------------------------------------ */

.ucc-board {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: var(--ucc-gap);
	margin: 24px 0 var(--ucc-section);
}

.ucc-board-card {
	background: #fff;
	border: 1px solid var(--ucc-line);
	border-radius: var(--ucc-radius);
	padding: 24px 20px 22px;
	text-align: center;
}

.ucc-board-photo {
	width: 96px; height: 96px;
	border-radius: 50%;
	margin: 0 auto 14px;
	overflow: hidden;
	background: linear-gradient(160deg, #21452a, var(--ucc-green-deep));
	display: flex; align-items: center; justify-content: center;
	border: 3px solid var(--ucc-cream);
	box-shadow: 0 0 0 1px var(--ucc-line);
}
.ucc-board-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ucc-board-initials {
	font-family: var(--ucc-font-display);
	font-weight: 600;
	font-size: 30px;
	color: var(--ucc-gold-light);
	letter-spacing: .02em;
}

.ucc-board-name {
	font-family: var(--ucc-font-display);
	font-weight: 600;
	font-size: 17.5px;
	line-height: 1.25;
	color: var(--ucc-green);
	margin: 0 0 3px;
}
.ucc-board-role {
	font-family: var(--ucc-font-mono);
	font-size: 11.5px; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--ucc-gold-text);
}

@media (max-width: 560px) {
	.ucc-board { grid-template-columns: 1fr 1fr; gap: 12px; }
	.ucc-board-photo { width: 76px; height: 76px; }
	.ucc-board-name { font-size: 15px; }
}

.ucc-level-lang {
	display: inline-block;
	margin-top: 10px;
	font-family: var(--ucc-font-mono);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ucc-gold-light);
	border: 1px solid rgba(223,194,116,.4);
	border-radius: 99px;
	padding: 4px 10px;
}

/* ------------------------------------------------------------------
   PAGE TITLE BAND
   ------------------------------------------------------------------ */

.ucc-pagehero {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(900px 360px at 78% -20%, rgba(184,150,46,.15), transparent 60%),
		linear-gradient(180deg, var(--ucc-green) 0%, #1E4023 55%, var(--ucc-green-deep) 100%);
	color: #fff;
	text-align: center;
	margin-bottom: var(--ucc-section);
}
.ucc-pagehero-inner {
	position: relative;
	z-index: 2;
	max-width: var(--ucc-maxw);
	margin: 0 auto;
	padding: clamp(30px, 5vw, 54px) var(--ucc-gutter) clamp(96px, 12vw, 150px);
}
.ucc-pagehero h1 {
	font-family: var(--ucc-font-display);
	font-weight: 600;
	font-size: clamp(28px, 4.4vw, 46px);
	line-height: 1.1;
	letter-spacing: -.015em;
	color: #fff;
	margin: 0;
}
.ucc-band-ridge {
	position: absolute;
	left: 0; right: 0; bottom: -1px;
	width: 100%;
	height: clamp(72px, 9vw, 118px);
	display: block;
	z-index: 1;
}

/* The band carries the title, so the theme's and the content's own first
   heading step aside. */
body.ucc-has-band .entry-header { display: none; }
body.ucc-has-band .entry-content > h1:first-child,
body.ucc-has-band .entry-content > div > h1:first-child { display: none; }
body.ucc-has-band .site-content { padding-top: 0; }
body.ucc-has-band #content > .ast-container { padding-top: 0; }

@media (max-width: 560px) {
	.ucc-pagehero-inner { padding-bottom: 78px; }
	.ucc-band-ridge { height: 64px; }
}

.ucc-pagehero-dek {
	margin: 12px auto 0;
	max-width: 56ch;
	font-size: clamp(15px, 1.9vw, 17.5px);
	line-height: 1.55;
	color: #CFDCD1;
}
body.ucc-has-band .woocommerce-products-header { display: none; }
body.ucc-has-band .ucc-index { padding-top: 0; }
body.ucc-has-band .ucc-index .ucc-pagehero { margin-left: calc(50% - 50vw); }


/* ------------------------------------------------------------------
   FOCUS VISIBILITY (site-wide)
   ------------------------------------------------------------------ */

.ucc-home a:focus-visible,
.ucc-article a:focus-visible,
.ucc-index a:focus-visible,
.ucc-contact a:focus-visible,
.ucc-about a:focus-visible,
.ucc-menu a:focus-visible,
.ucc-mobile-menu a:focus-visible,
.ucc-btn-solid:focus-visible,
.ucc-btn-ghost:focus-visible,
.ucc-account:focus-visible,
.ucc-cart:focus-visible,
.ucc-burger:focus-visible,
.ucc-share-btn:focus-visible,
.ucc-listen-btn:focus-visible,
.ucc-level-foot a:focus-visible {
	outline: 3px solid var(--ucc-gold);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Small screens keep the 44px minimum touch target. */
@media (max-width: 480px) {
	.ucc-cart, .ucc-burger, .ucc-account { width: 44px; height: 44px; }
}


/* The rightmost menu item would push its dropdown past the viewport edge,
   so it anchors right instead of centring. */
.ucc-menu > li:last-child > .sub-menu,
.ucc-menu > li:nth-last-child(2) > .sub-menu {
	left: auto; right: 0;
	transform: translateX(0) translateY(6px);
}
.ucc-menu > li:last-child:hover > .sub-menu,
.ucc-menu > li:last-child:focus-within > .sub-menu,
.ucc-menu > li:nth-last-child(2):hover > .sub-menu,
.ucc-menu > li:nth-last-child(2):focus-within > .sub-menu {
	transform: translateX(0) translateY(0);
}

/* #13: in-page anchors ease rather than jump, unless motion is reduced. */
@media (prefers-reduced-motion: no-preference) {
	html { scroll-behavior: smooth; }
}

/* #12: long article and index pages skip offscreen layout work. */
.ucc-index-card,
.ucc-related-card,
.ucc-home-card {
	content-visibility: auto;
	contain-intrinsic-size: 340px;
}
