/* ==========================================================================
   The Catharsis Collective — site styles
   Layout modeled on crystalmindcounseling.com; blush/rose palette from theme.json
   ========================================================================== */

:root {
	--at-base: var(--wp--preset--color--base);
	--at-ink: var(--wp--preset--color--contrast);
	--at-rose: var(--wp--preset--color--accent-1);
	--at-blush: var(--wp--preset--color--accent-2);
	--at-plum: var(--wp--preset--color--accent-3);
	--at-muted: var(--wp--preset--color--accent-4);
	--at-line: var(--wp--preset--color--accent-5);
	--at-serif: 'Fraunces', serif;
	--at-sans: 'Work Sans', sans-serif;
}

/* ---------- backgrounds ---------- */
.at-cloud-sky {
	background:
		radial-gradient(ellipse 220px 90px at 18% 22%, rgba(255,255,255,0.9), rgba(255,255,255,0) 70%),
		radial-gradient(ellipse 260px 100px at 68% 10%, rgba(255,255,255,0.75), rgba(255,255,255,0) 70%),
		radial-gradient(ellipse 200px 80px at 85% 55%, rgba(255,255,255,0.6), rgba(255,255,255,0) 70%),
		radial-gradient(ellipse 180px 70px at 35% 80%, rgba(255,255,255,0.5), rgba(255,255,255,0) 70%),
		linear-gradient(165deg, #F7E3E6 0%, #FBF1F0 55%, #FDEEF0 100%);
}
.at-cloud-sky-dark {
	background:
		radial-gradient(ellipse 220px 90px at 20% 30%, rgba(255,255,255,0.14), rgba(255,255,255,0) 70%),
		radial-gradient(ellipse 260px 100px at 70% 15%, rgba(255,255,255,0.10), rgba(255,255,255,0) 70%),
		linear-gradient(165deg, #3A2530 0%, #4A2E3B 100%);
}

/* ---------- page shell ---------- */
.at-page { width: auto; }
.at-page > .wp-block-html,
.at-page > .wp-block-shortcode { margin: 0 !important; }
.at-page section { box-sizing: border-box; }
.at-wrap { max-width: 1200px; margin: 0 auto; padding: 96px 32px; box-sizing: border-box; }
.at-wrap--narrow { max-width: 820px; }
.at-center { text-align: center; }
.at-band-blush { background: var(--at-blush); }
.at-band-base { background: var(--at-base); }
.at-band-plum { color: var(--at-base); }
.at-band-plum h2, .at-band-plum h3, .at-band-plum p { color: var(--at-base); }

/* ---------- type ---------- */
.at-eyebrow {
	display: inline-block;
	font-family: var(--at-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--at-rose);
	margin: 0 0 14px;
}
.at-script {
	font-family: var(--at-serif);
	font-style: italic;
	font-weight: 400;
	text-transform: lowercase;
	letter-spacing: -0.01em;
	line-height: 1.1;
	margin: 0;
}
.at-page h1, .at-page h2, .at-page h3 { margin-top: 0; }
.at-h1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.12; margin: 0 0 18px; }
.at-h2 { font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 20px; }
.at-h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.25; margin: 0 0 12px; }
.at-lede { font-size: 19px; line-height: 1.65; color: var(--at-muted); max-width: 56ch; }
.at-body p { font-size: 17px; line-height: 1.75; margin: 0 0 16px; }
.at-body p:last-child { margin-bottom: 0; }
.at-muted { color: var(--at-muted); }

/* ---------- buttons ---------- */
.at-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.at-center .at-btns { justify-content: center; }
.at-btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 999px;
	font-family: var(--at-sans);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none !important;
	border: 1.5px solid var(--at-rose);
	background: var(--at-rose);
	color: var(--at-base) !important;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
	cursor: pointer;
}
.at-btn:hover { background: var(--at-plum); border-color: var(--at-plum); }
.at-btn--ghost { background: transparent; color: var(--at-rose) !important; }
.at-btn--ghost:hover { background: var(--at-rose); color: var(--at-base) !important; border-color: var(--at-rose); }
.at-btn--light { background: var(--at-base); border-color: var(--at-base); color: var(--at-plum) !important; }
.at-btn--light:hover { background: var(--at-blush); border-color: var(--at-blush); }
.at-btn--outline-light { background: transparent; border-color: var(--at-base); color: var(--at-base) !important; }
.at-btn--outline-light:hover { background: var(--at-base); color: var(--at-plum) !important; }
.at-link {
	font-family: var(--at-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--at-rose);
	text-decoration: none;
	border-bottom: 1.5px solid currentColor;
	padding-bottom: 2px;
	align-self: flex-start;
}
.at-link:hover { color: var(--at-plum); text-decoration: none; }

/* ---------- photo placeholders ---------- */
.at-photo {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	color: var(--at-muted);
	font-size: 13px;
	font-style: italic;
	border: 1px dashed var(--at-muted);
	object-fit: cover;
}
.at-photo--arch { aspect-ratio: 4 / 5; border-radius: 999px 999px 18px 18px; }
.at-photo--round { aspect-ratio: 1 / 1; border-radius: 50%; }
.at-photo--soft { aspect-ratio: 4 / 5; border-radius: 18px; }
img.at-photo { border: 0; padding: 0; }

/* ---------- hero ---------- */
.at-hero .at-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 64px;
	align-items: center;
	padding-top: 88px;
	padding-bottom: 96px;
}
.at-hero .at-script { font-size: clamp(30px, 3.4vw, 42px); color: var(--at-rose); }
.at-hero .at-script + .at-script { color: var(--at-plum); margin-top: 4px; }
.at-hero .at-h1 { font-size: clamp(30px, 3.6vw, 44px); }

/* page-level hero for interior pages */
.at-pagehero .at-wrap { padding-top: 88px; padding-bottom: 80px; text-align: center; }
.at-pagehero .at-script { font-size: clamp(44px, 6vw, 72px); color: var(--at-plum); }
.at-pagehero .at-lede { margin: 18px auto 0; }

/* ---------- split (image + text) ---------- */
.at-split {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 72px;
	align-items: center;
}
.at-split--flip { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.at-split .at-script { font-size: clamp(34px, 4vw, 48px); color: var(--at-plum); margin-bottom: 18px; }

/* ---------- empathy ---------- */
.at-empathy .at-script { font-size: clamp(40px, 5.4vw, 64px); color: var(--at-plum); margin-bottom: 26px; }
.at-empathy .at-body p { font-size: 18px; }

/* ---------- testimonials ---------- */
.at-quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 44px; text-align: left; }
.at-quote {
	background: var(--at-base);
	border: 1px solid var(--at-line);
	border-radius: 20px;
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.at-quote__mark { font-family: var(--at-serif); font-size: 56px; line-height: 0.6; color: var(--at-rose); }
.at-quote p { font-family: var(--at-serif); font-size: 20px; font-style: italic; line-height: 1.55; margin: 0; }
.at-quote cite { font-style: normal; font-size: 14px; letter-spacing: 0.06em; color: var(--at-muted); }

/* ---------- marquee ---------- */
.at-marquee {
	overflow: hidden;
	white-space: nowrap;
	background: var(--at-rose);
	color: var(--at-base);
	padding: 16px 0;
}
.at-marquee__track { display: inline-flex; animation: at-marquee 36s linear infinite; }
.at-marquee__track span {
	font-family: var(--at-sans);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	padding: 0 28px;
}
.at-marquee__track span::after { content: "\2726"; margin-left: 56px; letter-spacing: 0; }
@keyframes at-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .at-marquee__track { animation: none; } }

/* ---------- service cards ---------- */
.at-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
.at-card {
	background: var(--at-base);
	border: 1px solid var(--at-line);
	border-radius: 20px;
	padding: 34px 30px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: border-color .15s ease, transform .15s ease;
}
.at-card:hover { border-color: var(--at-rose); transform: translateY(-2px); }
.at-card__icon {
	width: 52px; height: 52px; border-radius: 50%;
	background: var(--at-blush);
	display: flex; align-items: center; justify-content: center;
}
.at-card h3 { font-family: var(--at-serif); font-size: 24px; font-weight: 500; margin: 0; }
.at-card p { font-size: 15.5px; line-height: 1.65; color: var(--at-muted); margin: 0; flex: 1; }

/* ---------- service detail rows (Services page) ---------- */
.at-service { padding: 72px 0; border-top: 1px solid var(--at-line); scroll-margin-top: 24px; }
.at-service:first-child { border-top: 0; padding-top: 0; }
.at-service .at-split { align-items: start; gap: 56px; }
.at-service h2 { font-size: clamp(30px, 3.4vw, 40px); margin-bottom: 16px; }
.at-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.at-checklist li { position: relative; padding-left: 30px; font-size: 16.5px; line-height: 1.6; }
.at-checklist li::before { content: "\2726"; position: absolute; left: 0; top: 0; color: var(--at-rose); }
.at-panel { background: var(--at-blush); border-radius: 20px; padding: 32px; }
.at-panel h3 { font-family: var(--at-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--at-rose); margin: 0 0 18px; }

/* ---------- location strip ---------- */
.at-location .at-wrap { padding-top: 80px; padding-bottom: 80px; }
.at-location .at-script { font-size: clamp(34px, 4.4vw, 52px); color: var(--at-base); margin-bottom: 16px; }
.at-location p { opacity: .9; font-size: 18px; line-height: 1.65; max-width: 58ch; margin: 0 auto; }

/* ---------- rates / faq ---------- */
.at-rates { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
.at-rate { background: var(--at-base); border: 1px solid var(--at-line); border-radius: 20px; padding: 34px 28px; text-align: center; display: flex; flex-direction: column; gap: 8px; }
.at-rate__label { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--at-rose); }
.at-rate__price { font-family: var(--at-serif); font-size: 40px; line-height: 1.1; }
.at-rate p { font-size: 15px; color: var(--at-muted); margin: 0; }
.at-faq { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.at-faq details { background: var(--at-base); border: 1px solid var(--at-line); border-radius: 16px; padding: 0 28px; }
.at-faq details[open] { border-color: var(--at-rose); }
.at-faq summary {
	cursor: pointer;
	list-style: none;
	font-family: var(--at-serif);
	font-size: 21px;
	padding: 22px 32px 22px 0;
	position: relative;
}
.at-faq summary::-webkit-details-marker { display: none; }
.at-faq summary::after { content: "+"; position: absolute; right: 0; top: 18px; font-family: var(--at-sans); font-size: 26px; color: var(--at-rose); }
.at-faq details[open] summary::after { content: "\2212"; }
.at-faq details > div { padding: 0 0 24px; }
.at-faq details p { font-size: 16.5px; line-height: 1.7; color: var(--at-muted); margin: 0 0 12px; }
.at-note { font-size: 14.5px; line-height: 1.65; color: var(--at-muted); border-left: 2px solid var(--at-rose); padding: 4px 0 4px 18px; margin-top: 40px; }

/* ---------- contact ---------- */
.at-contact { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.at-contact__details { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.at-contact__details div { display: flex; flex-direction: column; gap: 4px; }
.at-contact__details strong { font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--at-rose); }
.at-contact__details span { font-size: 16.5px; }
.at-form { background: var(--at-base); border: 1px solid var(--at-line); border-radius: 22px; padding: 40px; display: flex; flex-direction: column; gap: 18px; }
.at-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.at-form label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; color: var(--at-muted); }
.at-form input, .at-form textarea, .at-form select {
	font-family: var(--at-sans);
	font-size: 16px;
	color: var(--at-ink);
	background: #fff;
	border: 1px solid var(--at-line);
	border-radius: 12px;
	padding: 13px 16px;
	width: 100%;
	box-sizing: border-box;
}
.at-form input:focus, .at-form textarea:focus, .at-form select:focus { outline: 2px solid var(--at-rose); outline-offset: 1px; border-color: transparent; }
.at-form textarea { resize: vertical; min-height: 130px; }
.at-form .at-btn { align-self: flex-start; }
.at-form__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.at-form__fine { font-size: 13px; line-height: 1.6; color: var(--at-muted); margin: 0; }
.at-alert { border-radius: 14px; padding: 16px 20px; font-size: 15.5px; margin: 0 0 4px; }
.at-alert--ok { background: #E7F3EC; color: #1F5135; }
.at-alert--err { background: #FBE4E4; color: #7A1F2B; }

/* ---------- header ---------- */
.at-header { background: var(--at-base); border-bottom: 1px solid var(--at-line); position: relative; z-index: 20; }
.at-header .wp-block-site-title { font-family: var(--at-serif); font-weight: 500; font-size: 24px; letter-spacing: -0.01em; }
.at-header .wp-block-site-title a { color: var(--at-plum); }
.at-header .wp-block-site-title a:hover { text-decoration: none; }
.at-header .wp-block-navigation { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.at-header .wp-block-navigation a:hover { color: var(--at-rose); text-decoration: none; }
.at-header .wp-block-navigation .current-menu-item > a { color: var(--at-rose); }
.at-header .at-header__cta .wp-block-button__link {
	border-radius: 999px; padding: 12px 22px;
	font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
	background: var(--at-rose); color: var(--at-base);
}
.at-header .at-header__cta .wp-block-button__link:hover { background: var(--at-plum); }
.at-header .wp-block-navigation__responsive-container.is-menu-open { font-size: 18px; }

/* ---------- footer ---------- */
.at-footer { color: var(--at-base); }
.at-footer a { color: var(--at-base); text-decoration: none; }
.at-footer a:hover { color: #F3C6D3; text-decoration: none; }
.at-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.at-footer__brand { font-family: var(--at-serif); font-size: 30px; line-height: 1.15; margin: 0 0 14px; }
.at-footer h4 { font-family: var(--at-sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #F3C6D3; margin: 0 0 18px; }
.at-footer p, .at-footer li { font-size: 15px; line-height: 1.7; opacity: .9; margin: 0; }
.at-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.at-footer__crisis { margin-top: 56px; padding: 18px 22px; border: 1px solid rgba(251, 241, 240, 0.25); border-radius: 14px; font-size: 14.5px; line-height: 1.6; }
.at-footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(251, 241, 240, 0.2); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13.5px; opacity: .8; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
	.at-cards, .at-rates { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.at-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 781px) {
	.at-wrap { padding: 68px 20px; }
	.at-hero .at-wrap, .at-split, .at-split--flip, .at-contact { grid-template-columns: 1fr; gap: 40px; }
	.at-hero .at-photo, .at-split .at-photo { max-width: 360px; margin: 0 auto; }
	.at-split--flip > :last-child { order: -1; }
	.at-quotes, .at-cards, .at-rates, .at-form__row { grid-template-columns: 1fr; }
	.at-form { padding: 28px 22px; }
	.at-footer__grid { grid-template-columns: 1fr; gap: 36px; }
	.at-header .at-header__cta { display: none; }
}

/* hero tagline: three short sentences, keep sentence case */
.at-hero .at-hero__tag { text-transform: none; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.25; color: var(--at-rose); margin: 0; }
.at-hero .at-hero__tag + .at-hero__tag { color: var(--at-plum); margin-top: 2px; }
.at-hero .at-hero__tag + .at-hero__tag + .at-hero__tag { color: var(--at-rose); }

/* line breaks that only apply on wider screens; on phones the headline wraps naturally */
@media (max-width: 781px) { .at-br-desk { display: none; } }
/* keep each headline line on one line at desktop widths */
@media (min-width: 782px) { .at-hero .at-wrap { grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr); } }
.at-hero .at-h1 { font-size: clamp(28px, 3.1vw, 40px); }

/* header brand: practice name with credential line underneath */
.at-header .at-brand { gap: 2px; }
.at-header .at-brand .wp-block-site-title { line-height: 1.1; }
.at-header .at-brand__cred { margin: 0; font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--at-muted); line-height: 1.3; }

/* homepage hero: cirrus clouds over a pale blue-to-blush sky */
.at-hero.at-cloud-sky {
	background:
		url(cirrus.svg) center / cover no-repeat,
		linear-gradient(180deg, #BFD9EE 0%, #D8E6F2 38%, #EFE3EC 72%, #FBF1F0 100%);
}
.at-hero .at-photo { background: rgba(255, 255, 255, 0.35); }

.at-header .at-brand__cred { white-space: nowrap; }

/* footer: more breathing room between the practice name and the mission line */
.at-footer .at-footer__brand { margin-bottom: 28px; }

/* footer: more space around the crisis notice */
.at-footer .at-footer__crisis { margin-top: 80px; padding: 24px 28px; }
.at-footer .at-footer__bottom { margin-top: 56px; }

/* footer brand: `.at-footer p` was overriding the brand size; restore the large serif name */
.at-footer p.at-footer__brand { font-family: var(--at-serif); font-size: 30px; line-height: 1.15; opacity: 1; }
.at-footer p.at-footer__brand a { color: var(--at-base); }
.at-footer p.at-footer__brand a:hover { color: #F3C6D3; }

/* homepage hero: CirrusClouds photo at 50% opacity over the soft sky gradient (test) */
.at-hero.at-cloud-sky {
	position: relative;
	isolation: isolate;
	background: linear-gradient(180deg, #D8E6F2 0%, #EFE3EC 65%, #FBF1F0 100%);
}
.at-hero.at-cloud-sky::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: url(cirrus-clouds-3.jpg) center bottom / cover no-repeat;
	opacity: 0.5;
	pointer-events: none;
}

/* hero: keep text readable over the skyline (soft light wash behind the text column) */
.at-hero .at-btn--ghost { background: rgba(255, 255, 255, 0.7); }
.at-hero .at-btn--ghost:hover { background: var(--at-rose); }
@media (min-width: 782px) {
	.at-hero.at-cloud-sky::after {
		content: "";
		position: absolute;
		inset: 0;
		z-index: -1;
		pointer-events: none;
		background: linear-gradient(90deg, rgba(251, 241, 240, 0.8) 0%, rgba(251, 241, 240, 0.6) 38%, rgba(251, 241, 240, 0) 62%);
	}
}

/* hero (desktop): taller section so the photo shows the plane as well as the skyline */
@media (min-width: 782px) {
	.at-hero.at-cloud-sky { min-height: clamp(760px, 60vw, 1200px); display: flex; align-items: center; }
	.at-hero.at-cloud-sky > .at-wrap { width: 100%; }
	.at-hero.at-cloud-sky::before { background-size: 120% auto; background-position: 75% 100%; }
}

/* real portrait photos: keep the face in frame when the box crops */
img.at-photo { display: block; height: auto; object-fit: cover; object-position: center 20%; background: none; }
img.at-photo--arch { aspect-ratio: 4 / 5; }
img.at-photo--round { aspect-ratio: 1 / 1; object-position: center 35%; }
.at-hero img.at-photo { box-shadow: 0 18px 50px rgba(58, 37, 48, 0.18); }

/* homepage Services section: neutral beige / taupe palette */
.at-services-home {
	--at-beige: #F2EBE2;
	--at-sand: #E6DCCF;
	--at-taupe: #8A7A6C;
	--at-taupe-deep: #5E5147;
	background: var(--at-beige);
}
.at-services-home .at-eyebrow { color: var(--at-taupe); }
.at-services-home h2.at-script { color: var(--at-taupe-deep) !important; }
.at-services-home .at-card { background: #FBF8F4; border-color: var(--at-sand); }
.at-services-home .at-card:hover { border-color: var(--at-taupe); }
.at-services-home .at-card__icon { background: var(--at-sand); }
.at-services-home .at-card__icon svg { stroke: var(--at-taupe-deep); }
.at-services-home .at-card h3 { color: var(--at-taupe-deep); }
.at-services-home .at-card p { color: #6F6359; }
.at-services-home .at-link { color: var(--at-taupe-deep); }
.at-services-home .at-link:hover { color: var(--at-plum); }

/* sections sit flush: cancel WordPress's default block gap between the page's sections */
.at-page > * { margin-block-start: 0 !important; margin-block-end: 0 !important; }

/* footer sits flush against the last section */
.wp-site-blocks > footer.wp-block-template-part { margin-block-start: 0 !important; }

/* closing call-to-action band ("in Houston & online" etc.): deep taupe to tie in with the neutral Services section; footer stays plum */
.at-location.at-cloud-sky-dark {
	background:
		radial-gradient(ellipse 220px 90px at 20% 30%, rgba(255,255,255,0.10), rgba(255,255,255,0) 70%),
		linear-gradient(165deg, #5E5147 0%, #6B5D52 100%);
}
.at-location .at-btn--light { color: #5E5147 !important; }
.at-location .at-btn--outline-light:hover { color: #5E5147 !important; }

/* footer: light sand with dark taupe text (replaces the dark plum) */
.at-footer {
	--ft-bg: #E9E0D4;
	--ft-ink: #4A3F37;
	--ft-accent: #8A6F5F;
	--ft-line: rgba(74, 63, 55, 0.22);
	--ft-muted: #6F6359;
}
.at-footer.at-cloud-sky-dark { background: var(--ft-bg); color: var(--ft-ink); }
.at-footer, .at-footer p, .at-footer li, .at-footer a, .at-footer p.at-footer__brand a { color: var(--ft-ink); }
.at-footer p, .at-footer li { opacity: 1; }
.at-footer a:hover, .at-footer p.at-footer__brand a:hover { color: var(--at-rose); }
.at-footer h4 { color: var(--ft-accent); }
.at-footer .at-footer__crisis { border-color: var(--ft-line); background: rgba(255, 255, 255, 0.45); }
.at-footer .at-footer__bottom { border-top-color: var(--ft-line); opacity: 1; color: var(--ft-muted); }

/* header stays at the top while scrolling */
.wp-site-blocks > header.wp-block-template-part { position: sticky; top: 0; z-index: 100; }
.admin-bar .wp-site-blocks > header.wp-block-template-part { top: 32px; }
@media (max-width: 782px) { .admin-bar .wp-site-blocks > header.wp-block-template-part { top: 46px; } }
.at-header { box-shadow: 0 1px 12px rgba(58, 37, 48, 0.06); }

/* statement line inside body copy, e.g. "Catharsis begins with being heard." */
.at-body p.at-lead {
	font-family: var(--at-serif);
	font-style: italic;
	font-size: clamp(24px, 2.4vw, 30px);
	line-height: 1.3;
	color: var(--at-rose);
	margin: 34px 0 10px;
}

/* About "my story": long copy beside the portrait */
.at-split--story { align-items: start; }
@media (min-width: 782px) {
	.at-split--story > .at-photo { position: sticky; top: 120px; }
}
.at-body p.at-signoff { margin-top: 26px; }

/* bold text in page copy: the body font is light (300), so make <strong> clearly heavier */
.at-page strong, .at-page b { font-weight: 600; }

/* scroll reveal (classes added by assets/reveal.js; without JS nothing is hidden) */
.at-reveal-on .at-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}
.at-reveal-on .at-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.at-reveal-on .at-reveal { opacity: 1; transform: none; transition: none; }
}
@media print {
	.at-reveal-on .at-reveal { opacity: 1 !important; transform: none !important; }
}
