/* ==========================================================================
   Tucson Capoeira Axé – main stylesheet
   One file, no framework. Palette: roda night, adobe sand, terracotta clay,
   UCA royal blue, sky blue, Brazil green.
   ========================================================================== */

@font-face {
	font-family: "Bricolage";
	src: url("../fonts/bricolage.woff2") format("woff2");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}

:root {
	/* Palette taken from the UCA logo: royal blue #3361AE, black, white –
	   plus a lighter sky blue as the highlight on dark backgrounds. */
	--ink: #0b0f17;
	--ink-2: #141b28;
	--ink-3: #1f2a3d;
	--paper: #f8fafd;
	--sand: #eaf0f9;
	--sand-2: #d6e1f2;
	--clay: #3361ae;
	--clay-2: #234a8c;
	--gold: #8db4f0; /* sky-blue highlight (name kept for compatibility) */
	--green: #137a4d;
	--text: #1a2130;
	--muted: #556075;
	--on-dark: #f3f6fb;
	--on-dark-muted: #aab6cb;
	--line: rgba(26, 33, 48, .13);
	--line-dark: rgba(243, 246, 251, .14);

	--font-display: "Bricolage", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--wrap: 1200px;
	--gutter: clamp(16px, 4vw, 32px);
	--radius: 14px;
	--radius-sm: 8px;
	--shadow: 0 1px 2px rgba(11, 15, 23, .06), 0 12px 32px -12px rgba(11, 15, 23, .22);
	--header-h: 72px;
	--space: clamp(64px, 9vw, 120px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
	margin: 0;
	background: var(--paper);
	color: var(--text);
	font-family: var(--font-body);
	font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}
img, svg, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--clay-2); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--clay); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4, .h1, .h2, .h3 {
	font-family: var(--font-display);
	line-height: 1.08;
	letter-spacing: -.02em;
	color: var(--ink);
	margin: 0 0 .5em;
	font-weight: 700;
	text-wrap: balance;
}
h1, .h1 { font-size: clamp(2.5rem, 1.6rem + 4.2vw, 5.25rem); font-weight: 750; letter-spacing: -.035em; }
h2, .h2 { font-size: clamp(2rem, 1.5rem + 2.2vw, 3.25rem); }
h3, .h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.55rem); letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.icon { flex: none; vertical-align: middle; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--gold); color: var(--ink); padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap.narrow { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn {
	--b: var(--clay);
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	min-height: 48px; padding: .75em 1.35em;
	border-radius: 999px; border: 2px solid var(--b);
	background: var(--b); color: #fff;
	font: 700 1rem/1.1 var(--font-display); letter-spacing: .005em;
	text-decoration: none; cursor: pointer; white-space: nowrap;
	transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { background: var(--clay-2); border-color: var(--clay-2); color: #fff; transform: translateY(-1px); }
.btn .icon { width: 1.1em; height: 1.1em; }
.btn-sm { min-height: 40px; padding: .55em 1.05em; font-size: .92rem; }
.btn-lg { min-height: 56px; padding: .9em 1.6em; font-size: 1.06rem; }
.btn-ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: currentColor; color: inherit; }
.btn-dark { background: var(--ink); border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-3); border-color: var(--ink-3); }
.btn-outline-dark { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.text-link { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; font-family: var(--font-display); text-decoration: none; color: var(--clay-2); }
.text-link .icon { width: 1.05em; height: 1.05em; transition: transform .15s ease; }
.text-link:hover .icon { transform: translateX(3px); }
.text-link.light { color: var(--gold); }

/* ---------- Announcement ---------- */
.announce { background: var(--clay-2); text-align: center; font: 700 .92rem/1.3 var(--font-display); }
.announce a { display: block; padding: .6em var(--gutter); color: #fff; text-decoration: none; }
.announce a:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(11, 15, 23, .94);
	-webkit-backdrop-filter: saturate(1.4) blur(10px);
	backdrop-filter: saturate(1.4) blur(10px);
	color: var(--on-dark);
	border-bottom: 1px solid var(--line-dark);
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }
.header-inner { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }
.brand { margin-right: auto; }
.header-cart { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--on-dark); border-radius: 10px; order: 3; }
.header-cart:hover { color: var(--gold); }
.header-cart .icon { width: 24px; height: 24px; }
.cart-count { position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--clay); color: #fff; font: 700 .7rem/18px var(--font-body); text-align: center; }
.cart-count[data-count="0"] { display: none; }
.site-nav { order: 2; }
.nav-toggle { order: 4; }
.brand img, .custom-logo { max-height: 52px; width: auto; }
.brand-text { display: flex; align-items: center; gap: 10px; color: var(--on-dark); text-decoration: none; }
.brand-mark { color: var(--gold); display: flex; }
.brand-logo { width: 52px; height: 52px; flex: none; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255, 255, 255, .9), 0 4px 14px rgba(0, 0, 0, .35); background: #fff; }
.footer-logo { width: 72px; height: 72px; border-radius: 50%; background: #fff; margin-bottom: 16px; }
.brand-name { font: 750 1.2rem/1 var(--font-display); letter-spacing: -.02em; }
.brand-name small { display: block; font: 600 .66rem/1.3 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 3px; }

.site-nav .menu { list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--on-dark); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-family: var(--font-display); white-space: nowrap; }
.nav-phone .icon { color: var(--gold); width: 18px; height: 18px; }

.nav-toggle {
	display: none; align-items: center; justify-content: center;
	width: 48px; height: 48px; margin-right: -8px;
	background: none; border: 0; color: var(--on-dark); cursor: pointer; border-radius: 10px;
}
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle-close { display: none; }
.nav-open .nav-toggle-open { display: none; }
.nav-open .nav-toggle-close { display: flex; }

.submenu-toggle {
	background: none; border: 0; color: inherit; cursor: pointer; padding: 6px; margin-left: -4px;
	display: inline-flex; align-items: center; border-radius: 6px;
}
.submenu-toggle .icon { width: 18px; height: 18px; transition: transform .2s ease; }
.submenu-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }

/* Desktop nav */
@media (min-width: 1140px) and (max-width: 1299.98px) {
	.nav-phone span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
	.nav-phone .icon { width: 22px; height: 22px; }
}
@media (min-width: 1140px) {
	.site-nav { display: flex; align-items: center; gap: 18px; }
	.site-nav .menu { display: flex; align-items: center; gap: 2px; }
	.site-nav .menu > li { position: relative; display: flex; align-items: center; }
	.site-nav .menu > li > a { padding: 10px 8px; font: 600 .96rem/1 var(--font-display); border-radius: 8px; white-space: nowrap; }
	.site-nav .menu > li > a:hover,
	.site-nav .menu > li.current-menu-item > a,
	.site-nav .menu > li.current-menu-ancestor > a { color: var(--gold); }
	.site-nav .sub-menu {
		position: absolute; top: calc(100% + 6px); left: 0; min-width: 270px;
		list-style: none; margin: 0; padding: 8px;
		background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 12px;
		box-shadow: 0 24px 48px -16px rgba(0, 0, 0, .5);
		opacity: 0; visibility: hidden; transform: translateY(6px);
		transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
	}
	.site-nav .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
	.site-nav li:hover > .sub-menu,
	.site-nav li:focus-within > .sub-menu,
	.site-nav li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
	.site-nav .sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .94rem; color: var(--on-dark); }
	.site-nav .sub-menu a:hover { background: var(--ink-3); color: var(--gold); }
}

/* Mobile nav */
@media (max-width: 1139.98px) {
	.nav-toggle { display: inline-flex; }
	/* backdrop-filter would trap the fixed menu panel inside the header */
	.site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--ink); }
	.site-nav {
		position: fixed; inset: var(--nav-top, var(--header-h)) 0 0 0;
		background: var(--ink); overflow-y: auto; overscroll-behavior: contain;
		padding: 12px var(--gutter) 120px;
		display: none;
	}
	.nav-open .site-nav { display: block; }
	.nav-open { overflow: hidden; }
	.site-nav .menu > li { display: flex; flex-wrap: wrap; align-items: center; border-bottom: 1px solid var(--line-dark); }
	.site-nav .menu > li > a { flex: 1; padding: 16px 0; font: 700 1.25rem/1.2 var(--font-display); }
	.site-nav .submenu-toggle { padding: 12px; }
	.site-nav .sub-menu { flex-basis: 100%; list-style: none; margin: 0 0 12px; padding: 0 0 0 12px; border-left: 2px solid var(--clay); display: none; }
	.site-nav li.is-open > .sub-menu { display: block; }
	.site-nav .sub-menu a { display: block; padding: 10px 0; color: var(--on-dark-muted); }
	.nav-cta { flex-direction: column; align-items: stretch; margin-top: 24px; }
	.nav-cta .btn { min-height: 52px; font-size: 1.05rem; }
	.nav-phone { justify-content: center; padding: 12px; border: 1px solid var(--line-dark); border-radius: 999px; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--space); }
.section.dark { background: var(--ink); color: var(--on-dark); }
.section.dark h2, .section.dark h3 { color: var(--on-dark); }
.section.sand { background: var(--sand); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p:last-child { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.dark .section-head p:last-child { color: var(--on-dark-muted); }
.eyebrow {
	display: inline-flex; align-items: center; gap: .5em;
	font: 700 .78rem/1.2 var(--font-body); letter-spacing: .16em; text-transform: uppercase;
	color: var(--clay-2); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.dark .eyebrow { color: var(--gold); }
.center-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 24px; margin-top: clamp(32px, 5vw, 48px); }

/* ---------- Hero ---------- */
.hero {
	position: relative; isolation: isolate; overflow: hidden;
	min-height: min(92svh, 860px);
	display: flex; align-items: flex-end;
	background: var(--ink); color: var(--on-dark);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; z-index: -2; }
.hero::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(to top, rgba(11, 15, 23, .96) 0%, rgba(11, 15, 23, .72) 38%, rgba(11, 15, 23, .2) 72%, rgba(11, 15, 23, .35) 100%),
		linear-gradient(to right, rgba(11, 15, 23, .55), transparent 65%);
}
.hero-inner { padding-block: clamp(96px, 16vh, 180px) clamp(40px, 6vw, 72px); }
.hero .kicker {
	display: inline-block; margin-bottom: 1.2rem;
	font: 700 .8rem/1.3 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
}
.hero h1 { color: #fff; max-width: 13ch; margin-bottom: .35em; }
.hero-lede { max-width: 38rem; font-size: clamp(1.08rem, 1rem + .45vw, 1.3rem); color: var(--on-dark); opacity: .92; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6rem; }
.hero-facts {
	list-style: none; margin: clamp(40px, 6vw, 72px) 0 0; padding: 22px 0 0;
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
	border-top: 1px solid var(--line-dark);
}
.hero-facts strong { display: block; font: 700 clamp(1rem, .9rem + .5vw, 1.3rem)/1.2 var(--font-display); color: #fff; }
.hero-facts span { font-size: .9rem; color: var(--on-dark-muted); }
@media (max-width: 640px) {
	.hero-facts { grid-template-columns: 1fr 1fr; }
	.hero-facts li:last-child { grid-column: 1 / -1; }
	.hero-actions .btn { flex: 1 1 100%; }
}

/* ---------- Cards / programs ---------- */
.cards { display: grid; gap: clamp(18px, 2.5vw, 28px); }
.cards-3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.card {
	display: flex; flex-direction: column;
	background: #fff; border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow); border: 1px solid var(--line);
	transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(11, 15, 23, .06), 0 24px 48px -16px rgba(11, 15, 23, .3); }
.card-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h3, .card-body .h3 { margin-bottom: .4em; }
.card-body h3 a, .card-body .h3 a { color: var(--ink); text-decoration: none; }
.card-body h3 a:hover { color: var(--clay-2); }
.card-body p { color: var(--muted); }
.tag {
	align-self: flex-start;
	font: 700 .78rem/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase;
	background: var(--sand); color: var(--clay-2); padding: .5em .75em; border-radius: 999px; margin-bottom: 14px;
}
.card-actions { margin-top: auto; padding-top: 6px; display: flex; align-items: center; gap: 18px; }

/* ---------- Split ---------- */
.split-grid { display: grid; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (min-width: 900px) { .split-grid { grid-template-columns: 1fr 1fr; } }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (min-width: 900px) { .split-media { position: relative; } .split-media::after { content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 2px solid var(--clay); border-radius: var(--radius); z-index: -1; } }
.split-text p { color: var(--muted); }
.checks { list-style: none; padding: 0; margin: 1.5rem 0 1.8rem; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 32px; font-weight: 600; color: var(--text); }
.checks li::before {
	content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: 50%;
	background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 11-11-1.4-1.4z'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ---------- Schedule ---------- */
.days { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.day { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 22px 22px 14px; }
.day h3 { font-size: 1.15rem; color: var(--gold) !important; margin-bottom: 12px; }
.day ul { list-style: none; margin: 0; padding: 0; }
.day li { padding: 10px 0; border-top: 1px solid var(--line-dark); display: grid; gap: 2px; }
.day time { font: 700 1.05rem/1.2 var(--font-display); color: #fff; }
.day span { color: var(--on-dark-muted); font-size: .94rem; }
.schedule .btn-ghost { color: var(--on-dark); }

/* ---------- Benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); border-top: 1px solid var(--line); }
.benefit { padding: 28px 24px 28px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 700px) { .benefit { padding-right: 36px; } }
.benefit-num { font: 700 .85rem/1 var(--font-display); color: var(--clay); letter-spacing: .06em; }
.benefit h3 { margin: 10px 0 6px; }
.benefit p { color: var(--muted); margin: 0; }

/* ---------- Lineage ---------- */
.lineage-line { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); counter-reset: l; }
.lineage-line a {
	display: block; height: 100%; padding: 20px 22px; border-radius: var(--radius);
	background: var(--paper); border: 1px solid var(--line); text-decoration: none; color: var(--ink);
	position: relative;
}
.lineage-line a:hover { border-color: var(--clay); }
.lineage-line span { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.lineage-line strong { font: 700 1.3rem/1.2 var(--font-display); }
.teachers { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.teacher {
	display: flex; align-items: center; gap: 16px; padding: 16px 20px 16px 16px; border-radius: 999px;
	background: var(--ink); color: var(--on-dark); text-decoration: none; transition: background-color .15s ease;
}
.teacher:hover { background: var(--ink-3); color: var(--on-dark); }
.teacher > span:nth-child(2) { flex: 1; }
.teacher strong { display: block; font: 700 1.1rem/1.2 var(--font-display); }
.teacher small { color: var(--on-dark-muted); }
.teacher .icon { color: var(--gold); }
.teacher-mono {
	width: 52px; height: 52px; border-radius: 50%; flex: none; display: grid; place-items: center;
	background: linear-gradient(135deg, var(--clay), var(--gold)); color: var(--ink); font: 800 1.35rem/1 var(--font-display);
}
.pill-links { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pill-links a {
	display: inline-block; padding: .6em 1.1em; border-radius: 999px; border: 1px solid var(--line);
	background: #fff; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem;
}
.pill-links a:hover { border-color: var(--clay); color: var(--clay-2); }

/* ---------- Reviews ---------- */
.stars { display: inline-flex; color: var(--gold); }
.stars .icon { width: 16px; height: 16px; }
.eyebrow .stars + * { margin-left: 0; }
.reviews .eyebrow::before { display: none; }
.quotes { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.quote { margin: 0; padding: 28px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); display: flex; flex-direction: column; }
.quote blockquote { margin: 0 0 16px; font: 500 1.12rem/1.5 var(--font-display); color: var(--ink); letter-spacing: -.005em; }
.quote blockquote::before { content: "“"; display: block; font-size: 3rem; line-height: .6; color: var(--clay); margin-bottom: 10px; }
.quote figcaption { margin-top: auto; font-weight: 700; color: var(--muted); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--sand); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
	list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
	padding: 22px 0; font: 700 clamp(1.08rem, 1rem + .4vw, 1.3rem)/1.3 var(--font-display); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { width: 24px; height: 24px; color: var(--clay); transition: transform .2s ease; }
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq details p { color: var(--muted); padding-bottom: 22px; margin: 0; max-width: 68ch; }

/* ---------- Location ---------- */
.contact-list { list-style: none; padding: 0; margin: 0 0 8px; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--on-dark); }
.contact-list .icon { color: var(--gold); margin-top: 3px; }
.contact-list a { color: var(--on-dark); font-weight: 700; font-family: var(--font-display); font-size: 1.1rem; }
.contact-list small { color: var(--on-dark-muted); }
.location .btn-ghost { color: var(--on-dark); }
.map {
	aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background:
	radial-gradient(circle at 30% 30%, rgba(51, 97, 174, .3), transparent 55%),
	repeating-linear-gradient(45deg, var(--ink-2) 0 14px, var(--ink-3) 14px 15px);
	border: 1px solid var(--line-dark);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-load {
	width: 100%; height: 100%; border: 0; background: none; color: var(--on-dark); cursor: pointer;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
	font: 700 1.2rem/1.2 var(--font-display);
}
.map-load .icon { width: 44px; height: 44px; color: var(--gold); }
.map-load small { font: 400 .92rem/1.3 var(--font-body); color: var(--on-dark-muted); }
.map-load:hover span { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--clay); color: #fff; padding-block: clamp(48px, 7vw, 80px); }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 40px; }
.cta-band h2, .cta-title { font: 750 clamp(1.8rem, 1.3rem + 2vw, 2.8rem)/1.08 var(--font-display); letter-spacing: -.025em; margin: 0 0 .3em; color: var(--ink); }
.cta-band p { margin: 0; font-weight: 500; }
.cta-band h2, .cta-band .cta-title { color: #fff; }
.cta-band .btn-outline-dark { border-color: #fff; color: #fff; }
.cta-band .btn-outline-dark:hover { background: #fff; color: var(--clay-2); border-color: #fff; }
.cta-band .hero-actions { margin: 0; }

/* ---------- Inner pages ---------- */
.page-hero {
	background: var(--ink) radial-gradient(ellipse at 85% 0%, rgba(51, 97, 174, .55), transparent 60%);
	color: var(--on-dark); padding-block: clamp(48px, 8vw, 96px) clamp(40px, 6vw, 72px);
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 1.5rem + 3vw, 4rem); margin: 0; max-width: 20ch; }
.page-sub { margin: 1rem 0 0; color: var(--on-dark-muted); font-size: 1.1rem; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .88rem; color: var(--on-dark-muted); margin-bottom: 18px; }
.crumbs a { color: var(--gold); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.content-section { padding-block: clamp(40px, 6vw, 80px); }

.prose { max-width: 820px; }
.prose:has(.vc_row, .wpb_row, .rev_slider_wrapper, .alignwide, .alignfull, .wp-block-columns) { max-width: var(--wrap); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 1.6em; font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.3rem); }
.prose h3 { margin-top: 1.4em; }
.prose img { border-radius: var(--radius-sm); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .35em; }
.prose blockquote { margin-inline: 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--clay); font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: 10px 8px; text-align: left; }
.prose iframe { border: 0; }
.feature-img { width: 100%; border-radius: var(--radius); margin-bottom: 2rem; }
.alignwide { max-width: var(--wrap); }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.alignleft { float: left; margin: .3em 1.5em 1em 0; }
.alignright { float: right; margin: .3em 0 1em 1.5em; }
.aligncenter { margin-inline: auto; }
.wp-caption-text, figcaption { font-size: .88rem; color: var(--muted); }
.full-width > .vc_row, .full-width > .wpb_row { margin-inline: 0; }

.with-sidebar { display: grid; gap: 48px; }
@media (min-width: 960px) { .with-sidebar { grid-template-columns: minmax(0, 1fr) 320px; } }
.sidebar .widget { background: var(--sand); padding: 22px; border-radius: var(--radius); margin-bottom: 20px; }
.widget-title { font-size: 1.1rem; }

.search-form { display: flex; gap: 8px; max-width: 480px; margin-top: 1.5rem; }
.search-form label { flex: 1; }
.search-field, .comment-form input:not([type=submit]):not([type=checkbox]), .comment-form textarea {
	width: 100%; min-height: 44px; padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: #fff;
}
.pagination, .nav-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; justify-content: center; }
.page-numbers { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--line); text-decoration: none; }
.page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.post-navigation .nav-links { justify-content: space-between; }

/* ---------- Footer ---------- */
.site-footer { position: relative; isolation: isolate; overflow: hidden; }
.footer-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: -2; }
.site-footer::before {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: linear-gradient(180deg, rgba(7, 10, 16, .66) 0%, rgba(7, 10, 16, .55) 45%, rgba(7, 10, 16, .9) 100%);
}
.site-footer { background: #070a10; color: var(--on-dark-muted); padding-top: clamp(56px, 8vw, 96px); font-size: .95rem; }
.footer-grid { display: grid; gap: 40px 32px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1.1fr 1fr; } }
.footer-brand { font: 750 1.5rem/1 var(--font-display); color: #fff; margin-bottom: 14px; letter-spacing: -.02em; }
.footer-title { font: 700 .78rem/1.2 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.nap { font-style: normal; line-height: 1.7; margin-bottom: 12px; }
.nap strong { color: #fff; }
.footer-schedule, .footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-schedule strong { color: #fff; display: inline-block; min-width: 2.6em; }
.footer-schedule span { display: block; font-size: .86rem; color: var(--on-dark-muted); }
.site-footer .text-link { color: var(--gold); }
.social { list-style: none; padding: 0; margin: 20px 0 0; display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-dark); color: var(--on-dark); }
.social a:hover { background: var(--clay); border-color: var(--clay); color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 56px; padding-block: 24px; border-top: 1px solid var(--line-dark); font-size: .86rem; }
.footer-bottom p { margin: 0; }

/* ---------- Mobile quick bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 760px) {
	body { padding-bottom: 68px; }
	.mobile-bar {
		display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 6px;
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
		padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
		background: rgba(11, 15, 23, .97); border-top: 1px solid var(--line-dark);
	}
	.mobile-bar a {
		display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 48px;
		border-radius: 12px; color: var(--on-dark); text-decoration: none; font: 700 .95rem/1 var(--font-display);
		background: var(--ink-3);
	}
	.mobile-bar .icon { width: 18px; height: 18px; color: var(--gold); }
	.mobile-bar .mobile-bar-cta { background: var(--clay); color: #fff; }
}

/* ---------- Comments ---------- */
.comments { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.comment-list { padding-left: 0; list-style: none; }
.comment-body { padding: 16px 0; border-bottom: 1px solid var(--line); }

/* ---------- Illustrations ---------- */
.ill { display: block; width: 100%; height: auto; color: var(--ink); --ill-acc: var(--clay); --ill-gold: #c9a27a; --ill-wood: #8a4b22; --ill-skin: var(--sand); --ill-paper: var(--paper); --ill-cactus: var(--green); }
.dark .ill, .site-footer .ill, .page-hero .ill { color: var(--on-dark); }
.split-media .deco-berimbau { position: absolute; z-index: 2; width: clamp(90px, 11vw, 150px); left: -44px; bottom: -64px; transform: rotate(-12deg); filter: drop-shadow(0 10px 18px rgba(11, 15, 23, .25)); }
.split-media { position: relative; }
@media (max-width: 899.98px) { .split-media .deco-berimbau { left: auto; right: 8px; bottom: -30px; } }

.benefit-icon { display: block; width: 52px; height: 52px; }
.benefit-icon .ill { width: 52px; height: 52px; }

.move-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.move { margin: 0; background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line); padding: 20px 24px 26px; }
.move-art { aspect-ratio: 1; max-width: 220px; margin: 0 auto 8px; }
.move figcaption strong { display: block; font: 750 1.5rem/1.1 var(--font-display); color: var(--ink); margin-bottom: 6px; }
.move figcaption span { color: var(--muted); }

.cta-inner { position: relative; }
@media (min-width: 900px) {
	.cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; }
	.cta-inner:has(.cta-art) { grid-template-columns: auto 1fr auto; }
}
.cta-art { width: clamp(140px, 18vw, 220px); flex: none; }
.cta-art .ill { --ill-acc: var(--ink); --ill-gold: #f3f6fb; color: var(--ink); }
@media (max-width: 700px) { .cta-art { width: 160px; } }
.art-404 { max-width: 200px; margin-bottom: 1rem; }
.empty-art { max-width: 140px; margin: 0 auto 1rem; }

/* ---------- People icons ---------- */
.icon-people { display: block; width: 100%; height: auto; }
.everyone { padding-block: clamp(40px, 6vw, 72px); background: var(--paper); border-block: 1px solid var(--line); }
.everyone-title { text-align: center; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); margin-bottom: clamp(24px, 4vw, 40px); }
.people-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px 12px; grid-template-columns: repeat(3, 1fr); text-align: center; }
@media (min-width: 900px) { .people-grid { grid-template-columns: repeat(6, 1fr); } }
.people-art { display: block; width: min(120px, 100%); margin: 0 auto 10px; transition: transform .2s ease; }
.people-grid li:hover .people-art { transform: translateY(-4px); }
.people-grid strong { display: block; font: 700 1.05rem/1.2 var(--font-display); color: var(--ink); }
.people-grid small { color: var(--muted); font-size: .86rem; }
.card-media { position: relative; }
.card-icon { position: absolute; left: 12px; bottom: -34px; width: 76px; height: 76px; filter: drop-shadow(0 6px 10px rgba(11, 15, 23, .35)); }
.program .card-body { padding-top: 46px; }
.card-media { overflow: visible; }
.card-media img { border-radius: var(--radius) var(--radius) 0 0; }
.program { overflow: visible; }
.move-art { max-width: 220px; }
.teacher-photo { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex: none; background: var(--ink-3); box-shadow: 0 0 0 2px var(--clay); }
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Gallery ---------- */
.gallery-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(130px, 17vw, 230px); }
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } .gallery-grid li:nth-child(1) { grid-column: span 2; grid-row: span 2; } .gallery-grid li:last-child:nth-child(8) { grid-column: span 2; } }
.gallery-grid figure { margin: 0; height: 100%; position: relative; border-radius: 10px; overflow: hidden; background: var(--ink-2); }
.gallery-grid a { display: block; height: 100%; }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 10px; font-size: .82rem; font-weight: 600; color: #fff; background: linear-gradient(transparent, rgba(7, 10, 16, .85)); pointer-events: none; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .2s ease; }
.gallery-grid a:hover img { transform: scale(1.04); opacity: .9; }
.ig-feed { margin-top: 32px; }
.gallery .btn-ghost { color: var(--on-dark); }
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(10, 7, 5, .92); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox img { max-width: min(92vw, 1400px); max-height: 86vh; width: auto; border-radius: 8px; }
.lb-btn { position: fixed; background: rgba(255, 255, 255, .12); color: #fff; border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.lb-btn:hover { background: var(--clay); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------- Store teaser ---------- */
.store-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.store-art { display: flex; align-items: flex-end; gap: 10px; margin-bottom: clamp(32px, 5vw, 56px); }
.store-art .ill-berimbau, .store-hero-art .ill-berimbau { width: 58px; }
.store-art .ill-pandeiro, .store-hero-art .ill-pandeiro { width: 86px; }
.store-art .ill-atabaque, .store-hero-art .ill-atabaque { width: 62px; }
.product-teasers { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); }
.product-teasers a { display: flex; flex-direction: column; height: 100%; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; text-decoration: none; color: var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.product-teasers a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pt-media { aspect-ratio: 1; background: var(--sand-2); display: block; }
.pt-media img { width: 100%; height: 100%; object-fit: cover; }
.pt-name { padding: 14px 16px 2px; font: 700 1.05rem/1.25 var(--font-display); }
.pt-price { padding: 0 16px 16px; color: var(--clay-2); font-weight: 700; }
.pt-price del { color: var(--muted); font-weight: 400; margin-right: 4px; }

/* ---------- WooCommerce (Mercado) ---------- */
.store-hero .wrap { position: relative; }
.store-hero .page-hero-title { font: 750 1.4rem/1 var(--font-display); color: #fff; margin: 0; }
.store-hero-art { position: absolute; right: var(--gutter); bottom: -8px; display: flex; align-items: flex-end; gap: 10px; opacity: .95; }
@media (max-width: 760px) { .store-hero-art { display: none; } }
.store .woocommerce-result-count, .store .woocommerce-ordering { margin-bottom: 24px; color: var(--muted); font-size: .92rem; }
.store .woocommerce-ordering select, .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .woocommerce .quantity .qty {
	min-height: 44px; padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; font: inherit;
}
.woocommerce ul.products { display: grid !important; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); margin: 0 0 32px !important; padding: 0 !important; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; padding-bottom: 18px !important; }
.woocommerce ul.products li.product a img { margin: 0 0 12px !important; aspect-ratio: 1; object-fit: cover; background: var(--sand-2); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font: 700 1.08rem/1.25 var(--font-display) !important; color: var(--ink); padding: 0 16px !important; }
.woocommerce ul.products li.product .price { color: var(--clay-2) !important; font-weight: 700; padding: 0 16px; font-size: 1rem !important; }
.woocommerce ul.products li.product .button { margin: auto 16px 0 !important; align-self: flex-start; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce-page .wc-block-components-button:not(.is-link) {
	background: var(--clay) !important; color: #fff !important; border-radius: 999px !important; padding: .8em 1.4em !important;
	font: 700 .95rem/1.1 var(--font-display) !important; border: 0 !important; transition: background-color .15s ease;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: var(--clay-2) !important; }
.woocommerce span.onsale { background: var(--clay) !important; color: #fff !important; font-family: var(--font-display); min-height: 0; line-height: 1; padding: .6em .8em; border-radius: 999px; }
.woocommerce div.product .product_title { font-size: clamp(2rem, 1.4rem + 2vw, 3rem); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--clay-2) !important; font: 700 1.5rem/1.2 var(--font-display); }
.woocommerce div.product div.images img { border-radius: var(--radius); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: var(--sand) !important; border-color: var(--line) !important; border-radius: 10px 10px 0 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: #fff !important; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top-color: var(--clay) !important; background: var(--sand) !important; border-radius: var(--radius-sm); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--clay) !important; }
.woocommerce table.shop_table { border-radius: var(--radius); background: #fff; }
.woocommerce nav.woocommerce-pagination ul { border: 0 !important; display: flex; gap: 6px; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: 0 !important; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { border-radius: 8px; border: 1px solid var(--line); padding: 8px 14px !important; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--ink) !important; color: #fff !important; }

/* ---------- Chat assistant ---------- */
.tc-chat { position: fixed; right: 16px; bottom: 16px; z-index: 95; font-family: var(--font-body); }
@media (max-width: 760px) { .tc-chat { right: 12px; bottom: calc(76px + env(safe-area-inset-bottom)); } }
.tc-chat-launch {
	display: inline-flex; align-items: center; gap: 8px; min-height: 52px; padding: 0 20px 0 16px; border: 0; border-radius: 999px; cursor: pointer;
	background: var(--ink); color: #fff; font: 700 .98rem/1 var(--font-display);
	box-shadow: 0 10px 30px -8px rgba(11, 15, 23, .55), 0 0 0 3px rgba(141, 180, 240, .95);
	transition: transform .15s ease;
}
.tc-chat-launch:hover { transform: translateY(-2px); }
.tc-chat-launch .icon { width: 22px; height: 22px; color: var(--gold); }
@media (max-width: 760px) { .tc-chat-launch { width: 52px; padding: 0; justify-content: center; } .tc-chat-launch span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); } }
.tc-chat-panel {
	position: absolute; right: 0; bottom: 66px; width: min(380px, calc(100vw - 24px)); height: min(600px, calc(100svh - 120px));
	background: var(--paper); border-radius: 18px; overflow: hidden; display: none; flex-direction: column;
	box-shadow: 0 30px 80px -20px rgba(11, 15, 23, .6), 0 0 0 1px var(--line);
}
@media (max-width: 760px) { .tc-chat-panel { position: fixed; right: 12px; left: 12px; width: auto; bottom: calc(140px + env(safe-area-inset-bottom)); height: min(560px, calc(100svh - 170px)); } }
.tc-chat.is-open .tc-chat-panel { display: flex; animation: tcc-in .18s ease-out; }
@keyframes tcc-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tcc-head { display: flex; align-items: center; gap: 12px; padding: 14px 14px 14px 16px; background: var(--ink); color: #fff; }
.tcc-head > div { flex: 1; line-height: 1.2; }
.tcc-head strong { display: block; font: 700 1.02rem/1.2 var(--font-display); }
.tcc-head small { color: var(--on-dark-muted); font-size: .78rem; }
.tcc-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--clay), var(--gold)); color: var(--ink); font: 800 1.1rem/1 var(--font-display); }
.tcc-close { background: none; border: 0; color: #fff; width: 40px; height: 40px; border-radius: 10px; cursor: pointer; display: grid; place-items: center; }
.tcc-close:hover { background: var(--ink-3); }
.tcc-log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; overscroll-behavior: contain; }
.tcc-msg { max-width: 88%; padding: 10px 14px; border-radius: 16px; font-size: .94rem; line-height: 1.5; }
.tcc-msg p { margin: 0 0 .5em; } .tcc-msg p:last-child { margin: 0; }
.tcc-msg ul { margin: .3em 0 .5em; padding-left: 1.1em; } .tcc-msg li + li { margin-top: .25em; }
.tcc-bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--text); }
.tcc-user { align-self: flex-end; background: var(--clay); color: #fff; border-bottom-right-radius: 4px; }
.tcc-msg a { color: var(--clay-2); font-weight: 700; }
.tcc-typing { display: flex; gap: 4px; padding: 14px; }
.tcc-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); opacity: .4; animation: tcc-dot 1s infinite; }
.tcc-typing span:nth-child(2) { animation-delay: .15s; } .tcc-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes tcc-dot { 50% { opacity: 1; transform: translateY(-2px); } }
.tcc-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 8px; }
.tcc-c { display: flex; align-items: center; gap: 6px; padding: 9px 10px; border-radius: 10px; background: var(--sand); color: var(--ink) !important; text-decoration: none; font-size: .86rem; }
.tcc-c:hover { background: var(--sand-2); }
.tcc-c svg { color: var(--clay); flex: none; }
.tcc-c-call { background: var(--ink); color: #fff !important; } .tcc-c-call svg { color: var(--gold); } .tcc-c-call:hover { background: var(--ink-3); }
.tcc-quick { display: flex; gap: 6px; overflow-x: auto; padding: 8px 12px; border-top: 1px solid var(--line); scrollbar-width: none; }
.tcc-quick::-webkit-scrollbar { display: none; }
.tcc-quick button { flex: none; border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 999px; padding: 7px 12px; font: 600 .84rem/1 var(--font-body); cursor: pointer; }
.tcc-quick button:hover { border-color: var(--clay); color: var(--clay-2); }
.tcc-form { display: flex; gap: 8px; padding: 10px 12px 12px; background: #fff; border-top: 1px solid var(--line); }
.tcc-form input { flex: 1; min-width: 0; min-height: 44px; border: 1px solid var(--line); border-radius: 999px; padding: 0 16px; font: inherit; font-size: 16px; background: var(--paper); }
.tcc-form button { width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--clay); color: #fff; cursor: pointer; display: grid; place-items: center; }
.tcc-vcita { position: absolute; inset: 66px 0 0; background: #fff; display: flex; flex-direction: column; }
.tcc-vcita iframe { flex: 1; width: 100%; border: 0; }
.tcc-back { border: 0; background: var(--sand); padding: 10px 14px; text-align: left; font-weight: 700; cursor: pointer; color: var(--ink); }
.nav-open .tc-chat { display: none; }

/* ---------- Print ---------- */
@media print {
	.site-header, .mobile-bar, .announce, .cta-band, .map, .tc-chat { display: none !important; }
	.hero { min-height: 0; color: #000; }
	.hero-img, .hero::after { display: none; }
	.hero h1 { color: #000; }
}

/* Version 1.1: authentic photo medallions and realistic editorial artwork. */
.photo-icon { display:block; width:100%; height:100%; aspect-ratio:1; object-fit:cover; border-radius:50%; border:3px solid var(--gold, #e9b85b); }
.people-art { width:120px; height:120px; }
.realistic-art { display:block; width:100%; height:100%; object-fit:contain; }
.move-art { max-width:280px; }
.benefit-icon { width:76px; height:76px; }
.card-icon { border-radius:50%; background:#f6f0e6; }
.teacher-photo { width:120px; height:120px; border-radius:12px; flex-shrink:0; }
.teacher-photo img { object-fit:contain; }
.schedule-note { max-width:760px; margin:24px auto 0; text-align:center; color:#e5e7eb; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior:auto !important; transition:none !important; animation:none !important; } }

.ai-caption { margin:0; padding:10px 24px; background:#101820; color:#e5e7eb; text-align:center; font-size:.8rem; }

.tc-lead-form { max-width:680px; }
.tc-lead-form label { display:block; font-weight:600; margin-bottom:6px; }
.tc-lead-form input:not([type=hidden]):not([type=checkbox]), .tc-lead-form textarea { display:block; width:100%; min-height:48px; padding:12px; border:1px solid #777; border-radius:6px; color:#17202a; background:#fff; font:inherit; }
.tc-lead-form input[type=checkbox] { width:20px; height:20px; vertical-align:middle; }
.tc-lead-form :focus-visible { outline:3px solid #285ea5; outline-offset:3px; }
.tc-lead-trap { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.tc-lead-status { min-height:2em; font-weight:600; }
.tc-lead-privacy { font-size:.85rem; }

/* Match the supplied latest benefits-section reference. */
.benefits { background:#f7f9fc; color:#0b0f17; }
.benefits .eyebrow, .benefits .text-link { color:#2852a1; }
.benefits .benefit-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:0; border-top:1px solid #dce0e7; }
.benefits .benefit { padding:28px 28px 28px 0; border-bottom:1px solid #dce0e7; }
.benefits .benefit-icon { display:block; width:76px; height:76px; margin-bottom:8px; }
.benefits .photo-icon { width:76px; height:76px; border:3px solid #8ab4f8; border-radius:50%; object-fit:cover; }
.benefits .benefit h3 { margin:0 0 6px; font-size:24px; line-height:1.25; }
.benefits .benefit p { margin:0; color:#58657d; line-height:1.7; }
.benefits .center-actions { margin-top:48px; }
@media(max-width:760px) { .benefits .benefit-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:480px) { .benefits .benefit-grid { grid-template-columns:1fr; } .benefits .benefit { padding-right:0; } }

/* Approved uploaded UCA logo: fixed box, uncropped artwork, no picture/source mismatch. */
.site-header .brand-logo { display:block !important; width:56px !important; height:56px !important; min-width:56px; max-height:56px; object-fit:contain; padding:3px; background:#fff; opacity:1; visibility:visible; flex-shrink:0; }
.site-header .brand-text, .site-header .brand-text:visited { color:#fff; }
.footer-logo { object-fit:contain; padding:3px; }

.site-footer .footer-logo { display:block !important; position:relative; width:72px !important; height:72px !important; min-width:72px; max-height:72px; object-fit:contain; opacity:1; visibility:visible; background:#fff; padding:3px; border-radius:50%; }

/* Store content: remove legacy page-builder background photos behind products. */
.tc-store-page .site-main,
.tc-store-page .site-main .content-section,
.tc-store-page .site-main .vc_row,
.tc-store-page .site-main .vc_column-inner {
 background-image:none !important;
 background-color:#f7f9fc !important;
}
.tc-store-page .site-main .vc_parallax-inner { display:none !important; }

/* Photorealistic Sonoran landscape replaces the cartoon free-trial artwork. */
.cta-desert { position:relative; isolation:isolate; overflow:hidden; background:#15202a; min-height:390px; padding-block:80px; }
.cta-desert .cta-desert-photo { position:absolute; inset:0; width:100%; height:100%; max-width:none; object-fit:cover; object-position:center; z-index:-2; }
.cta-desert::before { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(90deg,rgba(7,15,24,.92) 0%,rgba(7,15,24,.78) 40%,rgba(7,15,24,.16) 76%); }
.cta-desert .cta-inner { display:flex; flex-direction:column; align-items:flex-start; gap:28px; }
.cta-desert .cta-inner > div { max-width:680px; }
.cta-desert h2 { color:#fff; text-shadow:0 2px 14px rgba(0,0,0,.3); }
.cta-desert p { color:#fff; max-width:580px; }
.cta-desert .btn-dark { background:#fff; color:#14243a; border-color:#fff; }
.cta-desert .btn-dark:hover { background:#e8eff9; border-color:#e8eff9; }
.cta-desert .btn-outline-dark { background:rgba(7,15,24,.4); border-color:#fff; color:#fff; }
.cta-desert .btn-outline-dark:hover { background:#fff; color:#14243a; }
@media(max-width:700px) {
 .cta-desert { min-height:450px; padding-block:56px; }
 .cta-desert .cta-desert-photo { object-position:68% center; }
 .cta-desert::before { background:rgba(7,15,24,.76); }
 .cta-desert .hero-actions { gap:12px; }
}
