/* =========================================================================
   Francesca Sajad Therapy
   Kintsugi — breakage mended with gold. Calm, warm, premium.
   Built for the block editor: pages are core blocks wrapped in fs-* classes.
   ========================================================================= */

:root {
	--porcelain: #f5efe6;
	--shell:     #fbf7f0;
	--sand:      #ece2d2;
	--ink:       #322c26;
	--clay:      #a85c40;
	--clay-deep: #8c4a32;
	--gold:      #be9b53;
	--espresso:  #2b2622;
	--stone:     #8c8073;
	--line:      #e2d7c6;

	--font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--font-label:   "Marcellus", Georgia, serif;
	--font-body:    "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--shell-max: 1180px;
	--prose-max: 50rem;
	--space: clamp(4rem, 9vw, 7.5rem);
	--radius: 14px;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--porcelain);
	color: var(--ink);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clay); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--clay-deep); }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin: 0 0 0.5em;
	font-optical-sizing: auto;
}
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* ----- Layout shell + block flow --------------------------------------- */
.fs-shell { width: min(100% - 2.5rem, var(--shell-max)); margin-inline: auto; }
.fs-main { display: block; overflow-x: clip; }

/* Constrain ordinary blocks to the content width; let designed sections
   (full-width groups) span edge to edge. */
.fs-flow > * { width: min(100% - 2.5rem, var(--prose-max)); margin-inline: auto; }
.fs-flow > .alignwide { width: min(100% - 2.5rem, var(--shell-max)); }
.fs-flow > .alignfull { width: 100%; max-width: none; }

/* Full-width section groups own their vertical rhythm; the inner .fs-shell
   handles horizontal width, so neutralise default block margins. */
.fs-flow > .alignfull { margin-block: 0; }
.fs-flow .wp-block-group.fs-shell { margin-block: 0; }

.fs-section { padding-block: var(--space); }
.fs-section__title { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.9rem); margin: 0 0 1.5rem; }
.fs-lead {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 1.05rem + 1vw, 1.65rem);
	line-height: 1.4;
	color: var(--ink);
}

/* ----- Eyebrow + labels ------------------------------------------------ */
.fs-eyebrow {
	font-family: var(--font-label);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.72rem;
	color: var(--clay);
	margin: 0 0 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}
.fs-eyebrow::before {
	content: "";
	width: 26px; height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--gold), #d8b86a);
	display: inline-block;
}

/* ----- Buttons (theme buttons + core button blocks) -------------------- */
.fs-btn,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-label);
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.95em 1.8em;
	border-radius: 999px;
	border: 1px solid transparent;
	background: var(--clay);
	color: var(--porcelain);
	text-decoration: none;
	cursor: pointer;
	line-height: 1;
	transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
		border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.fs-btn--solid { background: var(--clay); color: var(--porcelain); }
.fs-btn:hover,
.wp-block-button__link:hover { background: var(--clay-deep); color: var(--porcelain); transform: translateY(-2px); }
.fs-btn--ghost,
.wp-block-button.is-style-outline > .wp-block-button__link {
	background: transparent;
	color: var(--ink);
	border-color: rgba(50, 44, 38, 0.28);
}
.fs-btn--ghost:hover,
.wp-block-button.is-style-outline > .wp-block-button__link:hover {
	border-color: var(--ink);
	color: var(--ink);
	background: transparent;
	transform: translateY(-2px);
}
.fs-btn--lg { padding: 1.05em 2.2em; font-size: 0.85rem; }
.wp-block-buttons { gap: 0.9rem; margin: 0; }

.fs-link, .fs-card__link a {
	font-family: var(--font-label);
	letter-spacing: 0.06em;
	font-size: 0.95rem;
	color: var(--clay);
	text-decoration: none;
	border-bottom: 1px solid rgba(168, 92, 64, 0.35);
	padding-bottom: 2px;
	transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
	display: inline-block;
}
.fs-link:hover, .fs-card__link a:hover { color: var(--clay-deep); border-color: var(--clay-deep); }
.fs-card__link { margin: 0; }

/* ----- A11y ------------------------------------------------------------ */
.fs-skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--ink); color: var(--porcelain);
	padding: 0.75rem 1.25rem; z-index: 200; border-radius: 0 0 8px 0;
}
.fs-skip-link:focus { left: 0; color: var(--porcelain); }
.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;
}
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 3px; }

/* ----- Kintsugi seam: inline SVG (chrome) + CSS line (content) ---------- */
.fs-seam { display: block; line-height: 0; }
.fs-seam--divider { width: min(100%, 360px); height: 30px; }
.fs-seam--underline { width: clamp(140px, 30%, 220px); height: 22px; margin-top: 0.6rem; }
.fs-seam svg { width: 100%; height: 100%; overflow: visible; clip-path: inset(0 100% 0 0); }
.js .fs-seam.is-drawn svg { transition: clip-path 1.5s var(--ease); clip-path: inset(0 0% 0 0); }

/* Seam line used inside block content — a Separator block (<hr>) styled as the
   gold seam. !important overrides core's default separator width/border/bg-color. */
.fs-seam-line {
	border: none !important;
	border-top: none !important;
	color: transparent; /* kills currentColor border/bg on <hr> */
	height: 22px;
	min-height: 22px;
	width: min(100%, 340px) !important;
	max-width: none !important;
	background: url(../img/seam.svg) left center / contain no-repeat !important;
	clip-path: inset(0 100% 0 0);
	margin: 0.4rem 0 1rem !important;
}
.js .fs-seam-line.is-drawn { transition: clip-path 1.4s var(--ease); clip-path: inset(0 0 0 0); }

/* ----- Header ---------------------------------------------------------- */
.fs-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(245, 239, 230, 0.86);
	backdrop-filter: saturate(1.1) blur(10px);
	-webkit-backdrop-filter: saturate(1.1) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease);
}
.fs-header.is-scrolled { border-bottom-color: var(--line); }
.fs-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 92px; }
.fs-header__brand { flex: 0 0 auto; display: flex; }
.custom-logo { height: 56px; width: auto; }
.fs-logo-text { display: block; line-height: 0; }
.fs-logo-text img { display: block; height: 46px; width: auto; }

.fs-wordmark { text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1; }
.fs-wordmark__name {
	font-family: var(--font-label);
	font-size: 1.35rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
}
.fs-wordmark__sub {
	font-family: var(--font-label);
	font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase;
	color: var(--gold); margin-top: 0.5rem;
}

.fs-nav { display: flex; align-items: center; gap: 2rem; }
.fs-nav__list { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.fs-nav__list a {
	font-family: var(--font-label);
	font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase;
	color: var(--ink); text-decoration: none; position: relative; padding-bottom: 4px;
}
.fs-nav__list a::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s var(--ease);
}
.fs-nav__list a:hover::after, .fs-nav__list .current-menu-item > a::after { width: 100%; }
.fs-nav__list .current-menu-item > a { color: var(--clay); }
.fs-nav__cta { white-space: nowrap; }

.fs-nav-toggle { display: none; background: none; border: 0; padding: 0.5rem; cursor: pointer; }
.fs-nav-toggle__bars { display: block; width: 26px; height: 16px; position: relative; }
.fs-nav-toggle__bars span {
	position: absolute; left: 0; height: 2px; width: 100%;
	background: var(--ink); border-radius: 2px;
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.fs-nav-toggle__bars span:nth-child(1) { top: 0; }
.fs-nav-toggle__bars span:nth-child(2) { top: 7px; }
.fs-nav-toggle__bars span:nth-child(3) { top: 14px; }
.fs-nav-toggle[aria-expanded="true"] .fs-nav-toggle__bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.fs-nav-toggle[aria-expanded="true"] .fs-nav-toggle__bars span:nth-child(2) { opacity: 0; }
.fs-nav-toggle[aria-expanded="true"] .fs-nav-toggle__bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ----- Hero ------------------------------------------------------------ */
.fs-hero { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5.5rem); }
.fs-hero__cols { gap: clamp(2rem, 5vw, 5rem) !important; align-items: center; }
.fs-hero__title { font-size: clamp(2.4rem, 1.5rem + 4.2vw, 4.1rem); line-height: 1.06; margin: 0; max-width: 14ch; }
.fs-hero__lede { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: #5b524a; max-width: 42ch; margin: 1.4rem 0 2rem; }
.fs-hero__actions { margin-bottom: 2.2rem !important; flex-wrap: wrap; }
.fs-hero__meta { font-size: 0.85rem; color: var(--stone); max-width: 36ch; margin: 0; padding-top: 1.4rem; border-top: 1px solid var(--line); }

/* Vessel mask — echoes the kintsugi bowl */
.fs-vessel {
	position: relative; margin: 0 auto;
	width: min(100%, 430px); aspect-ratio: 5 / 6;
	border-radius: 210px 210px 26px 26px; overflow: hidden;
	box-shadow: 0 30px 60px -32px rgba(43, 38, 34, 0.45);
}
.fs-vessel img { width: 100%; height: 100%; object-fit: cover; object-position: 30% top; }
.fs-vessel::after {
	content: ""; position: absolute; inset: 0; border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(190, 155, 83, 0.5); pointer-events: none;
}
.fs-vessel--sm { width: min(100%, 360px); aspect-ratio: 4 / 5; }

/* ----- Intro ----------------------------------------------------------- */
.fs-intro .fs-prose p { color: #4f463e; }

/* ----- Feelings -------------------------------------------------------- */
.fs-feelings { background: var(--shell); }
.fs-feelings__grid {
	list-style: none; margin: 1.5rem 0 0; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.4rem 2.5rem;
}
.fs-feelings__grid li {
	position: relative; padding: 1rem 0 1rem 2.1rem;
	border-bottom: 1px solid var(--line); font-size: 1.08rem; color: var(--ink);
}
.fs-feelings__grid li::before {
	content: ""; position: absolute; left: 0; top: 1.45em;
	width: 16px; height: 2.5px; border-radius: 3px;
	background: linear-gradient(90deg, var(--gold), #a7833c); transform: rotate(-8deg);
}
.fs-feelings__note {
	margin-top: 2.5rem !important; font-family: var(--font-display); font-style: italic;
	font-size: 1.2rem; color: #4f463e; max-width: 48ch;
}

/* ----- Quote band ------------------------------------------------------ */
.fs-quote { background: var(--espresso); color: var(--porcelain); padding-block: clamp(3.5rem, 7vw, 6rem); }
.fs-quote .fs-shell { text-align: center; display: flex; flex-direction: column; align-items: center; }
.fs-quote .fs-seam-line { width: 280px !important; margin: 0 auto 1.8rem !important; }
.fs-quote__text {
	font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 2.4vw, 2.7rem);
	line-height: 1.28; max-width: 22ch; margin: 0 0 1.3rem;
}
.fs-quote__cite {
	font-family: var(--font-label); letter-spacing: 0.22em; text-transform: uppercase;
	font-size: 0.78rem; color: var(--gold); margin: 0;
}

/* ----- Teasers --------------------------------------------------------- */
.fs-teasers__grid { gap: 1.5rem !important; }
.fs-card {
	background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 2.2rem 2rem !important;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.fs-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -30px rgba(43, 38, 34, 0.4); }
.fs-card__title { font-size: 1.55rem; margin-bottom: 0.7rem; }
.fs-card__text { color: #5b524a; margin-bottom: 1.4rem; }

/* ----- CTA band (dark anchor) ------------------------------------------ */
.fs-cta { background: var(--espresso); color: var(--porcelain); padding-block: var(--space); }
.fs-cta .fs-shell { text-align: center; max-width: 46rem; }
.fs-cta__title { color: var(--porcelain); font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.8rem); margin-bottom: 1rem; }
.fs-cta__text { color: #d8cfc4; font-size: 1.1rem; margin-bottom: 2rem; }
.fs-cta .wp-block-buttons { justify-content: center; }
.fs-cta .wp-block-button__link { background: var(--gold); color: var(--espresso); }
.fs-cta .wp-block-button__link:hover { background: #d2af63; color: var(--espresso); }

/* ----- Page hero ------------------------------------------------------- */
.fs-page-hero { padding-block: clamp(3rem, 6vw, 5rem) 1rem; }
.fs-page-hero__title { font-size: clamp(2.2rem, 1.5rem + 3.4vw, 3.6rem); margin: 0; max-width: 18ch; }

/* ----- Prose ----------------------------------------------------------- */
.fs-prose { max-width: var(--prose-max); }
.fs-prose p { color: #4f463e; }
.fs-prose h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); margin-top: 1.6em; }
.fs-prose h3 { font-size: 1.4rem; margin-top: 1.4em; }
.fs-prose ul:not(.fs-feelings__grid):not(.fs-fees__list) { list-style: none; padding: 0; }
.fs-prose ul:not(.fs-feelings__grid):not(.fs-fees__list) li { position: relative; padding-left: 2rem; margin-bottom: 0.85em; color: #4f463e; }
.fs-prose ul:not(.fs-feelings__grid):not(.fs-fees__list) li::before {
	content: ""; position: absolute; left: 0; top: 0.55em;
	width: 16px; height: 2.5px; border-radius: 3px;
	background: linear-gradient(90deg, var(--gold), #a7833c); transform: rotate(-8deg);
}

/* ----- About ----------------------------------------------------------- */
.fs-about__inner { gap: clamp(2rem, 5vw, 4rem) !important; align-items: flex-start !important; }
.fs-about__media { position: sticky; top: 120px; }
.fs-about__cred { margin-top: 1.4rem !important; font-size: 0.85rem; color: var(--stone); max-width: 32ch; }
.fs-about__prose h2 { margin-top: 1.6em; }

/* ----- Fees ------------------------------------------------------------ */
.fs-fees__inner { gap: clamp(2rem, 5vw, 4rem) !important; align-items: flex-start !important; }
.fs-fees__card {
	background: var(--shell); border: 1px solid var(--line); border-top: 3px solid var(--gold);
	border-radius: var(--radius); padding: 2.4rem 2.2rem !important; position: sticky; top: 120px;
}
.fs-fees__price { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; margin: 0.4rem 0 0.2rem; }
.fs-fees__per { color: var(--stone); margin: 0; font-size: 0.95rem; }
.fs-fees__card .fs-seam-line { width: 100% !important; margin: 1.2rem 0 !important; }
.fs-fees__list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.fs-fees__list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.8rem; color: #4f463e; }
.fs-fees__list li::before {
	content: ""; position: absolute; left: 0; top: 0.55em;
	width: 14px; height: 2.5px; border-radius: 3px;
	background: linear-gradient(90deg, var(--gold), #a7833c); transform: rotate(-8deg);
}
.fs-fees__cta, .fs-fees__cta .wp-block-button, .fs-fees__cta .wp-block-button__link { width: 100%; }

/* ----- FAQ ------------------------------------------------------------- */
.fs-faq__wrap { max-width: 52rem; }
.fs-faq__list { margin-top: 2.5rem; }
.fs-faq__item { border-bottom: 1px solid var(--line); margin: 0; }
.fs-faq__item:first-child { border-top: 1px solid var(--line); }
.fs-faq__item summary {
	list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
	gap: 1.5rem; padding: 1.5rem 0;
	font-family: var(--font-display); font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem); color: var(--ink);
}
.fs-faq__item summary::-webkit-details-marker { display: none; }
.fs-faq__item summary::after {
	content: ""; flex: 0 0 auto; width: 18px; height: 18px;
	background:
		linear-gradient(var(--clay), var(--clay)) center/18px 2px no-repeat,
		linear-gradient(var(--clay), var(--clay)) center/2px 18px no-repeat;
	transition: transform 0.3s var(--ease);
}
.fs-faq__item[open] summary::after { transform: rotate(45deg); }
.fs-faq__item > :not(summary) { margin: 0 0 1em; color: #4f463e; max-width: 46rem; }
.fs-faq__item > :not(summary):last-child { margin-bottom: 1.6rem; }

/* ----- Contact --------------------------------------------------------- */
.fs-contact { gap: clamp(2rem, 5vw, 4.5rem) !important; align-items: flex-start !important; }
.fs-contact__direct { font-family: var(--font-display); font-size: 1.3rem; margin-top: 1.4rem !important; }
.fs-contact__note { color: var(--stone); font-size: 0.95rem; }
.fs-form { background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem); }
.fs-form__row { display: flex; flex-direction: column; margin-bottom: 1.3rem; }
.fs-form__split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.fs-form label {
	font-family: var(--font-label); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--ink); margin-bottom: 0.55rem;
}
.fs-form input, .fs-form textarea {
	font-family: var(--font-body); font-size: 1rem; color: var(--ink);
	background: var(--porcelain); border: 1px solid var(--line); border-radius: 8px;
	padding: 0.85rem 1rem; width: 100%;
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fs-form input:focus, .fs-form textarea:focus {
	outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(168, 92, 64, 0.14);
}
.fs-form textarea { resize: vertical; }
.fs-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fs-form__consent { font-size: 0.85rem; color: var(--stone); margin: 0.4rem 0 1.5rem; }
.fs-notice { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1.6rem; font-size: 0.97rem; }
.fs-notice--success { background: rgba(123, 142, 110, 0.16); border: 1px solid rgba(123, 142, 110, 0.4); color: #3f4a35; }
.fs-notice--error { background: rgba(168, 92, 64, 0.12); border: 1px solid rgba(168, 92, 64, 0.4); color: var(--clay-deep); }

/* ----- Footer (light — showcases the kintsugi logo) -------------------- */
.fs-footer { background: var(--sand); color: #4f463e; padding-top: 3rem; padding-bottom: 2.5rem; }
.fs-footer .fs-seam { width: 100%; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.fs-footer .fs-seam svg { height: 22px; }
.fs-footer__top { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.fs-footer__brand { display: inline-block; line-height: 0; }
.fs-footer__brand img { width: 240px; height: auto; margin-inline: auto; }
.fs-footer__note { margin: 1rem auto 0; color: #5b524a; max-width: 42ch; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; line-height: 1.5; }
.fs-footer__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 5vw, 3.5rem);
	padding-bottom: 2.5rem; border-top: 1px solid rgba(50, 44, 38, 0.12); padding-top: clamp(2.5rem, 5vw, 3.5rem);
}
.fs-footer__heading { font-family: var(--font-label); font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); margin: 0 0 1.2rem; }
.fs-footer__list { list-style: none; margin: 0; padding: 0; }
.fs-footer__list li { margin-bottom: 0.7rem; }
.fs-footer__col a { color: var(--ink); text-decoration: none; font-size: 0.97rem; transition: color 0.25s var(--ease); }
.fs-footer__col a:hover { color: var(--clay); }
.fs-footer__meta { color: var(--stone); font-size: 0.9rem; }
.fs-footer__bacp { color: var(--stone); font-size: 0.85rem; margin-top: 1.2rem; max-width: 32ch; }
.fs-footer__crisis { color: var(--stone); font-size: 0.9rem; }
.fs-footer__base {
	border-top: 1px solid rgba(50, 44, 38, 0.12); padding-top: 1.8rem;
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
	font-size: 0.82rem; color: var(--stone);
}
.fs-footer__base p { margin: 0; }

/* ----- Default page / archive prose ------------------------------------ */
.fs-page-hero + * { margin-top: 0; }

/* ----- Reveal animation (only when JS is present) ---------------------- */
.js .fs-flow > .alignfull,
.js .fs-flow > :not(.alignfull) {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .fs-flow > .fs-revealed { opacity: 1; transform: none; }

/* ----- Responsive ------------------------------------------------------ */
@media (max-width: 900px) {
	.fs-about__media, .fs-fees__card { position: static; }
}
@media (max-width: 781px) {
	/* Core stacks columns here; put the hero portrait first. */
	.fs-hero__cols { flex-direction: column-reverse !important; }
	.fs-hero__title { max-width: none; }
	.fs-footer__grid { grid-template-columns: 1fr; }
	.fs-footer__base { flex-direction: column; }
}
/* Switch to the mobile nav early — the longer links (e.g. "How Therapy Can
   Help") crowd the bar before this width. */
@media (max-width: 992px) {
	.fs-nav-toggle { display: block; }
	.fs-nav {
		position: fixed; inset: 92px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
		background: var(--porcelain); border-bottom: 1px solid var(--line); padding: 1rem 1.25rem 1.75rem;
		transform: translateY(-12px); opacity: 0; pointer-events: none; visibility: hidden;
		transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
		box-shadow: 0 24px 40px -28px rgba(43, 38, 34, 0.5);
	}
	.fs-nav.is-open { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
	.fs-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.fs-nav__list li { border-bottom: 1px solid var(--line); }
	.fs-nav__list a { display: block; padding: 1rem 0; font-size: 0.95rem; }
	.fs-nav__list a::after { display: none; }
	.fs-nav__cta { margin-top: 1.25rem; text-align: center; }
}
@media (max-width: 560px) {
	.fs-logo-text img { height: 38px; }
	.custom-logo { height: 40px; }
	.fs-form__split { grid-template-columns: 1fr; gap: 0; }
}

/* ----- Reduced motion -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
	.js .fs-flow > * { opacity: 1 !important; transform: none !important; }
	.fs-seam svg, .fs-seam-line { clip-path: none; }
}
