/* =============================================================
   April Days — Registered Social Worker & Psychotherapy
   Modern redesign stylesheet
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
	/* Brand palette (spring / April) */
	--plum: #5f5388;
	--lilac: #8d82af;
	--rose: #b87a81;
	--blush: #efa8b0;
	--sky: #8cc9f0;
	--sky-deep: #6aa9d6;

	/* Neutrals */
	--ink: #322c47;
	--body: #5c556f;
	--muted: #8a839c;
	--line: #ece7f1;
	--paper: #fbf8fb;
	--paper-2: #f5f0f7;
	--card: #ffffff;

	/* Signature gradient */
	--grad: linear-gradient(120deg, #8d82af 0%, #b87a81 55%, #efa8b0 100%);
	--grad-soft: linear-gradient(120deg, #efeafc 0%, #fdeef0 100%);

	/* Shape */
	--r-sm: 12px;
	--r-md: 18px;
	--r-lg: 28px;
	--r-xl: 40px;

	/* Shadows */
	--sh-sm: 0 2px 8px rgba(50, 44, 71, 0.06);
	--sh-md: 0 14px 40px rgba(95, 83, 136, 0.12);
	--sh-lg: 0 30px 70px rgba(95, 83, 136, 0.18);

	/* Type */
	--font-display: "Fraunces", "Georgia", "Songti SC", "Noto Serif SC", "SimSun", serif;
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
		"Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;

	--container: 1160px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	scroll-padding-top: 90px;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--body);
	background: var(--paper);
	line-height: 1.7;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: var(--plum);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--rose);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	color: var(--ink);
	line-height: 1.15;
	font-weight: 500;
	margin: 0 0 0.5em;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1.1em;
}

ul {
	margin: 0;
	padding: 0;
}

/* ---------- Layout helpers ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 92px 0;
	position: relative;
}

.section--tint {
	background: var(--paper-2);
}

.section-head {
	max-width: 640px;
	margin: 0 auto 54px;
	text-align: center;
}

.section-head.left {
	text-align: left;
	margin-left: 0;
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--rose);
	margin-bottom: 14px;
}

.section-head h2 {
	font-size: clamp(2rem, 4vw, 2.9rem);
	margin: 0 0 0.35em;
}

.section-head p {
	color: var(--muted);
	font-size: 1.05rem;
	margin: 0;
}

.lead {
	font-size: 1.15rem;
	color: var(--body);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.98rem;
	padding: 15px 30px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
		color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
	line-height: 1;
}

.btn--primary {
	background: var(--grad);
	color: #fff;
	box-shadow: 0 10px 26px rgba(184, 122, 129, 0.35);
	background-size: 140% 140%;
}

.btn--primary:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(184, 122, 129, 0.42);
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.7);
	color: var(--plum);
	border-color: var(--line);
}

.btn--ghost:hover {
	color: var(--plum);
	border-color: var(--lilac);
	transform: translateY(-2px);
	background: #fff;
}

.btn--light {
	background: #fff;
	color: var(--plum);
}

.btn--light:hover {
	color: var(--rose);
	transform: translateY(-2px);
}

.btn--lg {
	padding: 18px 38px;
	font-size: 1.05rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(251, 248, 251, 0.82);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
	border-color: var(--line);
	box-shadow: var(--sh-sm);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 74px;
	gap: 20px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 11px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.32rem;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.brand:hover {
	color: var(--ink);
}

.brand__mark {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--grad);
	display: grid;
	place-items: center;
	color: #fff;
	flex: none;
	box-shadow: var(--sh-sm);
}

.brand__mark svg {
	width: 20px;
	height: 20px;
}

.nav__links {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}

.nav__links a {
	display: block;
	padding: 9px 14px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--body);
}

.nav__links a:hover {
	color: var(--plum);
	background: var(--paper-2);
}

.nav__links a.active {
	color: var(--plum);
	background: var(--paper-2);
	font-weight: 600;
}

.nav__right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.lang {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--muted);
	padding: 7px 13px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
}

.lang:hover {
	color: var(--plum);
	border-color: var(--lilac);
}

.lang svg {
	width: 15px;
	height: 15px;
	opacity: 0.8;
}

.nav__toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--ink);
}

.nav__toggle svg {
	width: 26px;
	height: 26px;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	padding: 70px 0 90px;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(60% 55% at 82% 12%, rgba(140, 201, 240, 0.28), transparent 60%),
		radial-gradient(55% 55% at 8% 30%, rgba(239, 168, 176, 0.28), transparent 60%),
		radial-gradient(70% 60% at 50% 100%, rgba(141, 130, 175, 0.18), transparent 60%),
		var(--paper);
}

.hero__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.5;
	z-index: -1;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
}

.hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--plum);
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid var(--line);
	padding: 7px 14px;
	border-radius: 999px;
}

.pill::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--rose);
}

.hero h1 {
	font-size: clamp(2.5rem, 5.4vw, 4rem);
	line-height: 1.05;
	margin: 0 0 0.35em;
	color: var(--ink);
}

.hero h1 em {
	font-style: italic;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero__sub {
	font-size: 1.2rem;
	color: var(--body);
	max-width: 30em;
	margin-bottom: 32px;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.hero__note {
	margin-top: 22px;
	font-size: 0.92rem;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero__note svg {
	width: 17px;
	height: 17px;
	color: var(--lilac);
	flex: none;
}

/* Hero portrait */
.hero__media {
	position: relative;
	justify-self: center;
}

.portrait {
	position: relative;
	width: min(420px, 100%);
	aspect-ratio: 1 / 1.05;
	border-radius: 46% 54% 48% 52% / 52% 46% 54% 48%;
	overflow: hidden;
	box-shadow: var(--sh-lg);
	border: 6px solid #fff;
	z-index: 2;
}

.portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__ring {
	position: absolute;
	inset: -22px;
	border-radius: 46% 54% 48% 52% / 52% 46% 54% 48%;
	border: 1.5px dashed rgba(141, 130, 175, 0.45);
	z-index: 1;
}

.floating-card {
	position: absolute;
	background: #fff;
	border-radius: var(--r-md);
	box-shadow: var(--sh-md);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 3;
	font-size: 0.9rem;
}

.floating-card__icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	color: #fff;
	flex: none;
}

.floating-card strong {
	display: block;
	color: var(--ink);
	font-weight: 700;
	font-size: 0.95rem;
}

.floating-card span {
	color: var(--muted);
	font-size: 0.8rem;
}

.floating-card--tl {
	top: 24px;
	left: -34px;
}

.floating-card--br {
	bottom: 30px;
	right: -30px;
}

/* ---------- Trust strip ---------- */
.trust {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.trust__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 44px;
	padding: 26px 24px;
	text-align: center;
}

.trust__item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--body);
}

.trust__item svg {
	width: 20px;
	height: 20px;
	color: var(--rose);
	flex: none;
}

/* ---------- About ---------- */
.about__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 60px;
	align-items: start;
}

.about__figure {
	position: relative;
	position: sticky;
	top: 100px;
}

.about__figure img {
	width: 100%;
	border-radius: var(--r-lg);
	box-shadow: var(--sh-md);
}

.about__badge {
	position: absolute;
	bottom: -22px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border-radius: 999px;
	padding: 12px 22px;
	box-shadow: var(--sh-md);
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	font-weight: 600;
	color: var(--ink);
	font-size: 0.9rem;
}

.about__badge svg {
	width: 18px;
	height: 18px;
	color: var(--rose);
}

.about__body p {
	margin-bottom: 1.2em;
}

.about__name {
	font-size: clamp(1.9rem, 3.5vw, 2.5rem);
	margin-bottom: 0.1em;
}

.about__role {
	color: var(--rose);
	font-weight: 600;
	font-family: var(--font-sans);
	margin-bottom: 1.4em;
	display: block;
}

/* ---------- Credentials ---------- */
.creds {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 18px;
	margin-top: 10px;
}

.cred {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cred:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-md);
	border-color: transparent;
}

.cred__icon {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: var(--grad-soft);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
	color: var(--plum);
}

.cred__icon svg {
	width: 24px;
	height: 24px;
}

.cred h4 {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 1rem;
	color: var(--ink);
	margin-bottom: 6px;
}

.cred p {
	margin: 0;
	font-size: 0.94rem;
	color: var(--muted);
	line-height: 1.6;
}

/* ---------- Values ---------- */
.values {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 16px;
	margin-top: 8px;
}

.value {
	text-align: center;
	padding: 30px 20px;
	background: var(--card);
	border-radius: var(--r-md);
	border: 1px solid var(--line);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-md);
}

.value__icon {
	width: 54px;
	height: 54px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var(--grad);
	display: grid;
	place-items: center;
	color: #fff;
}

.value__icon svg {
	width: 26px;
	height: 26px;
}

.value h4 {
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
}

/* ---------- Why April: story + poem ---------- */
.why__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 46px;
	align-items: stretch;
}

.story h3 {
	font-size: 1.5rem;
	margin-top: 1.4em;
}

.story h3:first-child {
	margin-top: 0;
}

.poem-card {
	background: linear-gradient(160deg, #5f5388 0%, #7a5f86 48%, #b87a81 100%);
	color: #fff;
	border-radius: var(--r-lg);
	padding: 44px 40px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--sh-lg);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.poem-card::before {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(140, 201, 240, 0.5), transparent 70%);
	border-radius: 50%;
}

.poem-card__label {
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.85;
	font-weight: 700;
	margin-bottom: 14px;
	position: relative;
}

.poem-card h3 {
	color: #fff;
	font-size: 1.6rem;
	font-style: italic;
	margin-bottom: 4px;
	position: relative;
}

.poem-card__by {
	font-size: 0.9rem;
	opacity: 0.85;
	margin-bottom: 22px;
	position: relative;
}

.poem {
	font-family: var(--font-display);
	font-size: 1.02rem;
	line-height: 1.95;
	white-space: pre-wrap;
	margin: 0;
	position: relative;
	font-weight: 400;
}

/* ---------- Services ---------- */
.svc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.svc-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 34px;
	box-shadow: var(--sh-sm);
}

.svc-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.svc-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--grad);
	display: grid;
	place-items: center;
	color: #fff;
	flex: none;
}

.svc-card__icon svg {
	width: 24px;
	height: 24px;
}

.svc-card h3 {
	margin: 0;
	font-size: 1.3rem;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	list-style: none;
}

.tag-list li {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--plum);
	background: var(--paper-2);
	border: 1px solid var(--line);
	padding: 8px 14px;
	border-radius: 999px;
	line-height: 1.35;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tag-list li:hover {
	background: #fff;
	border-color: var(--lilac);
	color: var(--rose);
}

/* ---------- Fees ---------- */
.fees-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 18px;
}

.fee {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 30px 26px;
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.fee:hover {
	transform: translateY(-5px);
	box-shadow: var(--sh-md);
}

.fee--featured {
	background: var(--grad);
	color: #fff;
	border-color: transparent;
	box-shadow: var(--sh-md);
}

.fee__tag {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.25);
	padding: 5px 10px;
	border-radius: 999px;
}

.fee__label {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 10px;
}

.fee--featured .fee__label {
	color: #fff;
}

.fee__price {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 600;
	color: var(--plum);
	line-height: 1;
	margin-bottom: 6px;
}

.fee--featured .fee__price {
	color: #fff;
}

.fee__price span {
	font-size: 1rem;
	font-weight: 500;
}

.fee__meta {
	font-size: 0.88rem;
	color: var(--muted);
	margin: 0;
}

.fee--featured .fee__meta {
	color: rgba(255, 255, 255, 0.85);
}

.fees-note {
	margin-top: 28px;
	text-align: center;
	color: var(--muted);
	font-size: 0.95rem;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

/* ---------- Insurance ---------- */
.insurance-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 44px;
	box-shadow: var(--sh-sm);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 34px;
	align-items: start;
}

.insurance-card__icon {
	width: 72px;
	height: 72px;
	border-radius: 20px;
	background: var(--grad-soft);
	display: grid;
	place-items: center;
	color: var(--plum);
	flex: none;
}

.insurance-card__icon svg {
	width: 38px;
	height: 38px;
}

.insurance-card p:last-child {
	margin-bottom: 0;
}

/* ---------- CTA banner ---------- */
.cta {
	position: relative;
	overflow: hidden;
	background: var(--grad);
	background-size: 180% 180%;
	border-radius: var(--r-xl);
	padding: 72px 40px;
	text-align: center;
	color: #fff;
	box-shadow: var(--sh-lg);
}

.cta::before,
.cta::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(10px);
	opacity: 0.35;
}

.cta::before {
	width: 260px;
	height: 260px;
	background: rgba(140, 201, 240, 0.6);
	top: -90px;
	left: -60px;
}

.cta::after {
	width: 220px;
	height: 220px;
	background: rgba(255, 255, 255, 0.4);
	bottom: -90px;
	right: -50px;
}

.cta__inner {
	position: relative;
	z-index: 1;
	max-width: 620px;
	margin: 0 auto;
}

.cta h2 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 2.9rem);
	margin-bottom: 0.3em;
}

.cta p {
	font-size: 1.15rem;
	opacity: 0.95;
	margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.site-footer {
	background: #2a2540;
	color: #cfc8de;
	padding: 72px 0 32px;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 44px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 16px;
}

.footer__brand .brand__mark {
	box-shadow: none;
}

.footer p {
	color: #a79fbd;
	font-size: 0.95rem;
	line-height: 1.7;
}

.footer h4 {
	color: #fff;
	font-family: var(--font-sans);
	font-size: 0.82rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.footer__contact {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.95rem;
	color: #cfc8de;
}

.footer__contact svg {
	width: 19px;
	height: 19px;
	color: var(--blush);
	flex: none;
	margin-top: 2px;
}

.footer__contact a {
	color: #cfc8de;
}

.footer__contact a:hover {
	color: #fff;
}

.wechat {
	margin-top: 4px;
}

.wechat img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 14px;
	border: 3px solid rgba(255, 255, 255, 0.12);
}

.wechat span {
	display: block;
	margin-top: 8px;
	font-size: 0.82rem;
	color: #a79fbd;
}

.crisis {
	margin-top: 20px;
	background: rgba(239, 168, 176, 0.12);
	border: 1px solid rgba(239, 168, 176, 0.28);
	border-radius: var(--r-sm);
	padding: 12px 16px;
	font-size: 0.85rem;
	color: #e8c4c9;
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.crisis svg {
	width: 18px;
	height: 18px;
	flex: none;
	margin-top: 1px;
	color: var(--blush);
}

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	padding-top: 26px;
	font-size: 0.85rem;
	color: #8981a0;
}

.footer__bottom a {
	color: #a79fbd;
}

/* ---------- Sub-page (booking) ---------- */
.page-hero {
	position: relative;
	padding: 70px 0 60px;
	text-align: center;
	overflow: hidden;
}

.page-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(60% 60% at 30% 0%, rgba(239, 168, 176, 0.25), transparent 60%),
		radial-gradient(60% 60% at 80% 20%, rgba(140, 201, 240, 0.22), transparent 60%),
		var(--paper);
}

.page-hero h1 {
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	margin-bottom: 0.3em;
}

.page-hero p {
	color: var(--muted);
	font-size: 1.1rem;
	margin: 0 auto;
	max-width: 40em;
}

.breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 20px;
}

.breadcrumb a {
	color: var(--rose);
	font-weight: 600;
}

.policy-grid {
	display: grid;
	gap: 24px;
	max-width: 820px;
	margin: 0 auto;
}

.policy {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 36px;
	box-shadow: var(--sh-sm);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
}

.policy__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--grad-soft);
	display: grid;
	place-items: center;
	color: var(--plum);
	flex: none;
}

.policy__icon svg {
	width: 28px;
	height: 28px;
}

.policy h2 {
	font-size: 1.4rem;
	margin-bottom: 0.5em;
}

.policy p {
	margin: 0;
	color: var(--body);
}

.policy ul.reasons {
	list-style: none;
	margin: 14px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.policy ul.reasons li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.95rem;
}

.policy ul.reasons svg {
	width: 18px;
	height: 18px;
	color: var(--rose);
	flex: none;
	margin-top: 4px;
}

.booking-actions {
	text-align: center;
	margin-top: 46px;
}

/* ---------- Reveal animation ---------- */
/* Gated on the .js class (added by inline head script) so that without
   JavaScript all content stays fully visible for readers and crawlers. */
.js .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.js .reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 46px;
		text-align: center;
	}
	.hero__pills,
	.hero__cta {
		justify-content: center;
	}
	.hero__sub {
		margin-left: auto;
		margin-right: auto;
	}
	.hero__note {
		justify-content: center;
	}
	.about__grid,
	.why__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.about__figure {
		position: static;
		max-width: 380px;
		margin: 0 auto;
	}
	.svc-grid {
		grid-template-columns: 1fr;
	}
	.footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 16px;
	}
	.section {
		padding: 66px 0;
	}
	.nav__links,
	.nav__desktop-cta {
		display: none;
	}
	.nav__toggle {
		display: block;
	}
	.nav {
		height: 64px;
	}
	.site-header {
		position: sticky;
	}
	/* Mobile menu */
	.nav__links.open {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 14px 20px 22px;
		gap: 4px;
		box-shadow: var(--sh-md);
		border-bottom: 1px solid var(--line);
	}
	.nav__links.open a {
		padding: 12px 14px;
		font-size: 1rem;
	}
	.nav__links.open .nav__mobile-cta {
		margin-top: 10px;
	}
	.nav__links.open .btn {
		width: 100%;
		justify-content: center;
	}
	.insurance-card,
	.policy {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 30px;
	}
	.floating-card--tl {
		left: -8px;
	}
	.floating-card--br {
		right: -8px;
	}
	.footer__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}
	.poem-card {
		padding: 34px 26px;
	}
	.cta {
		padding: 54px 24px;
		border-radius: var(--r-lg);
	}
}

/* Hide desktop-only mobile CTA element by default */
.nav__mobile-cta {
	display: none;
}
@media (max-width: 720px) {
	.nav__links.open .nav__mobile-cta {
		display: block;
	}
}

/* ---------- Bilingual (in-page language toggle) ---------- */
/* Default is English; the head script sets data-lang before paint.
   Without JavaScript, data-lang="en" on <html> keeps English visible. */
html[data-lang="en"] .lang-zh,
html[data-lang="zh"] .lang-en {
	display: none !important;
}

/* The nav language toggle is a <button> reusing the .lang pill style */
button.lang {
	font-family: var(--font-sans);
	cursor: pointer;
}

/* Footer language toggle rendered as a plain link */
.linklike {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: #a79fbd;
	cursor: pointer;
}

.linklike:hover {
	color: #fff;
}
