/* ==========================================================================
   WTSC — static & policy pages
   Matches the wtsc- design system. Uses theme CSS variables where present,
   with safe fallbacks so nothing breaks if a variable is named differently.
   ========================================================================== */

:root {
	--wtsc-plum:   var(--wtsc-plum,   #3b2030);
	--wtsc-berry:  var(--wtsc-berry,  #a83f6b);
	--wtsc-muted:  var(--wtsc-muted,  #8e697a);
	--wtsc-serif:  var(--wtsc-serif,  "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif);
	--wtsc-shadow: var(--wtsc-shadow, 0 18px 50px -24px rgba(120, 40, 75, .35));
	--wtsc-line:   rgba(168, 63, 107, .16);
	--wtsc-soft:   #fff8fb;
	--wtsc-soft-2: #fff1f6;
}

/* ---- Page hero ---------------------------------------------------------- */
.wtsc-page-hero {
	background: linear-gradient(180deg, var(--wtsc-soft-2), var(--wtsc-soft));
	padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 5vw, 64px);
	text-align: center;
}
.wtsc-page-hero__inner {
	max-width: 760px;
}
.wtsc-page-hero__title {
	font-family: var(--wtsc-serif);
	font-weight: 500;
	color: var(--wtsc-plum);
	font-size: clamp(2.1rem, 5vw, 3.4rem);
	line-height: 1.12;
	letter-spacing: -.01em;
	margin: 18px 0 0;
}
.wtsc-page-hero__lead {
	max-width: 620px;
	margin: 18px auto 0;
	font-size: clamp(1.05rem, 1.6vw, 1.2rem);
	line-height: 1.65;
	color: var(--wtsc-muted);
}
.wtsc-updated {
	margin: 20px 0 0;
	font-size: .82rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--wtsc-muted);
	opacity: .85;
}

/* ---- Readable prose (legal + long-form) --------------------------------- */
.wtsc-page {
	padding-top: clamp(40px, 5vw, 64px);
	padding-bottom: clamp(56px, 7vw, 92px);
}
.wtsc-prose {
	max-width: 74ch;
	margin: 0 auto;
	color: #4a3540;
	font-size: 1.075rem;
	line-height: 1.78;
}
.wtsc-prose > *:first-child { margin-top: 0; }
.wtsc-prose h2 {
	font-family: var(--wtsc-serif);
	font-weight: 500;
	color: var(--wtsc-plum);
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	line-height: 1.25;
	margin: 2.4em 0 .6em;
	scroll-margin-top: 90px;
}
.wtsc-prose h3 {
	color: var(--wtsc-plum);
	font-size: 1.18rem;
	font-weight: 700;
	margin: 1.8em 0 .4em;
}
.wtsc-prose p { margin: 0 0 1.15em; }
.wtsc-prose ul,
.wtsc-prose ol { margin: 0 0 1.3em; padding-left: 1.35em; }
.wtsc-prose li { margin: 0 0 .55em; }
.wtsc-prose a {
	color: var(--wtsc-berry);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
}
.wtsc-prose a:hover { text-decoration-thickness: 2px; }
.wtsc-prose strong { color: var(--wtsc-plum); }
.wtsc-prose hr {
	border: 0;
	border-top: 1px solid var(--wtsc-line);
	margin: 2.4em 0;
}
.wtsc-prose blockquote {
	margin: 1.5em 0;
	padding: 4px 0 4px 20px;
	border-left: 3px solid var(--wtsc-line);
	color: var(--wtsc-muted);
	font-style: italic;
}

/* ---- Table of contents (long policy pages) ------------------------------ */
.wtsc-toc {
	background: var(--wtsc-soft);
	border: 1px solid var(--wtsc-line);
	border-radius: 18px;
	padding: 22px 26px;
	margin: 0 0 2.4em;
	font-size: .98rem;
}
.wtsc-toc__title {
	display: block;
	font-size: .78rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--wtsc-muted);
	margin-bottom: 10px;
}
.wtsc-toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 32px; }
.wtsc-toc li { margin: 0 0 .4em; break-inside: avoid; }
@media (max-width: 560px) { .wtsc-toc ol { columns: 1; } }

/* ---- Soft callout ------------------------------------------------------- */
.wtsc-callout {
	background: var(--wtsc-soft-2);
	border: 1px solid var(--wtsc-line);
	border-radius: 18px;
	padding: 20px 24px;
	margin: 1.6em 0;
}
.wtsc-callout p { margin: 0; }
.wtsc-callout__label {
	display: block;
	color: var(--wtsc-berry);
	font-size: .8rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.wtsc-callout--care {
	background: #f4f8f4;
	border-color: rgba(80, 130, 90, .18);
}
.wtsc-callout--care .wtsc-callout__label { color: #5a7d5f; }

/* ---- Policy cross-link nav ---------------------------------------------- */
.wtsc-policy-nav {
	max-width: 74ch;
	margin: clamp(48px, 6vw, 72px) auto 0;
	padding-top: 30px;
	border-top: 1px solid var(--wtsc-line);
	text-align: center;
}
.wtsc-policy-nav__eyebrow {
	display: block;
	font-size: .78rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--wtsc-muted);
	margin-bottom: 14px;
}
.wtsc-policy-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 22px;
}
.wtsc-policy-nav__list a {
	color: var(--wtsc-berry);
	text-decoration: none;
	font-size: .95rem;
}
.wtsc-policy-nav__list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.wtsc-policy-nav__list [aria-current="page"] {
	color: var(--wtsc-plum);
	font-weight: 700;
	font-size: .95rem;
}

/* ---- About: values grid ------------------------------------------------- */
.wtsc-values {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin: 8px 0 4px;
}
.wtsc-value {
	background: #fff;
	border: 1px solid var(--wtsc-line);
	border-radius: 20px;
	padding: 26px 26px 28px;
	box-shadow: var(--wtsc-shadow);
}
.wtsc-value h3 {
	font-family: var(--wtsc-serif);
	font-weight: 500;
	color: var(--wtsc-plum);
	font-size: 1.22rem;
	margin: 0 0 8px;
}
.wtsc-value p { margin: 0; color: var(--wtsc-muted); line-height: 1.6; font-size: .98rem; }

/* ---- About: author card ------------------------------------------------- */
.wtsc-author {
	display: grid;
	grid-template-columns: minmax(200px, 260px) 1fr;
	gap: clamp(24px, 4vw, 52px);
	align-items: start;
	background: #fff;
	border: 1px solid var(--wtsc-line);
	border-radius: 28px;
	padding: clamp(26px, 4vw, 46px);
	box-shadow: var(--wtsc-shadow);
}
.wtsc-author__photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 22px;
	object-fit: cover;
	display: block;
	background: #f4d9e3;
}
.wtsc-author__mono {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 22px;
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 30% 25%, #f7cfe0, #e79ab9);
	color: #fff;
	font-family: var(--wtsc-serif);
	font-size: 3rem;
	letter-spacing: .04em;
}
.wtsc-author__name {
	font-family: var(--wtsc-serif);
	font-weight: 500;
	color: var(--wtsc-plum);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	margin: 0;
}
.wtsc-author__role {
	color: var(--wtsc-berry);
	font-size: .92rem;
	letter-spacing: .03em;
	margin: 4px 0 16px;
}
.wtsc-author__bio { color: #4a3540; line-height: 1.75; }
.wtsc-author__bio > *:last-child { margin-bottom: 0; }
@media (max-width: 620px) {
	.wtsc-author { grid-template-columns: 1fr; text-align: center; }
	.wtsc-author__photo, .wtsc-author__mono { max-width: 220px; margin: 0 auto; }
}

/* ---- Media band (lifestyle image + copy) -------------------------------- */
.wtsc-band {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	margin: clamp(8px, 2vw, 20px) 0;
}
.wtsc-band__media img {
	width: 100%;
	height: 100%;
	max-height: 460px;
	object-fit: cover;
	border-radius: 26px;
	display: block;
	box-shadow: var(--wtsc-shadow);
}
.wtsc-band__body h2 { margin-top: 0; }

/* ---- Contact layout ----------------------------------------------------- */
.wtsc-contact {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: start;
}
@media (max-width: 780px) { .wtsc-contact { grid-template-columns: 1fr; } }
.wtsc-contact__form {
	background: #fff;
	border: 1px solid var(--wtsc-line);
	border-radius: 24px;
	padding: clamp(24px, 3vw, 40px);
	box-shadow: var(--wtsc-shadow);
}
.wtsc-contact__aside .wtsc-card {
	background: var(--wtsc-soft);
	border: 1px solid var(--wtsc-line);
	border-radius: 20px;
	padding: 24px 26px;
	margin-bottom: 18px;
}
.wtsc-contact__aside h3 {
	font-family: var(--wtsc-serif);
	font-weight: 500;
	color: var(--wtsc-plum);
	font-size: 1.2rem;
	margin: 0 0 8px;
}
.wtsc-contact__aside p { margin: 0 0 6px; color: var(--wtsc-muted); line-height: 1.6; }
.wtsc-contact__aside a { color: var(--wtsc-berry); }

/* ---- Gentle CTA strip --------------------------------------------------- */
.wtsc-invite {
	text-align: center;
	max-width: 640px;
	margin: clamp(40px, 6vw, 72px) auto 0;
}
.wtsc-invite h2 {
	font-family: var(--wtsc-serif);
	font-weight: 500;
	color: var(--wtsc-plum);
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	margin: 0 0 12px;
}
.wtsc-invite p { color: var(--wtsc-muted); line-height: 1.65; margin: 0 0 22px; }

/* ---- Print (tidy legal printouts) --------------------------------------- */
@media print {
	.wtsc-page-hero { background: none; padding: 0 0 12px; }
	.wtsc-policy-nav, .wtsc-btn { display: none; }
	.wtsc-prose { max-width: none; font-size: 11pt; color: #000; }
}
