/**
 * Peer Smile Child
 * Components
 */

/* Accessibility */
.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;
}

.ps-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 99999;
	padding: 10px 16px;
	background: #fff;
	color: #222;
	transform: translateY(-150%);
}

.ps-skip-link:focus {
	transform: translateY(0);
}

/* Buttons */
.ps-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15.6px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
	transition:
		transform .2s ease,
		box-shadow .2s ease,
		background-color .2s ease;
}

.ps-button:hover {
	transform: translateY(-2px);
}

.ps-button--primary {
	color: #fff;
	background: var(--ps-color-primary);
	box-shadow: 0 8px 22px rgba(242,138,36,.22);
}

.ps-button--warm {
	color: #7b5300;
	background: #ffc95b;
	box-shadow: 0 8px 22px rgba(247,200,75,.20);
}

.ps-button--blue {
	color: #fff;
	background: var(--ps-color-secondary);
	box-shadow: 0 8px 22px rgba(105,184,223,.20);
}

.ps-outline-link { position:relative; display: inline-flex; align-items: center; justify-content: center; min-width:250px; min-height:48px; margin-top:24px; padding:10px 50px; border: 1px solid #b89983; border-radius: 999px; color: var(--ps-color-text); font-size: 14.5px; font-weight: 700; text-decoration: none; transition: .2s ease; }
.ps-outline-link:hover { color: var(--ps-color-primary); border-color: var(--ps-color-primary); transform: translateY(-2px); }
.ps-outline-link span:last-child { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }


/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(255,255,255,.96);
	border-bottom: 1px solid rgba(234,223,213,.72);
	backdrop-filter: blur(12px);
	transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 28px rgba(51,45,41,.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 78px;
	gap: 24px;
}

.site-header__brand { flex: 0 0 auto; }
.site-header__brand a img.logo01 { margin:0 auto; width:200px; height:auto; }

.site-header__brand-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.site-header__custom-logo .custom-logo-link {
	display: block;
}

.site-header__custom-logo img {
	display: block;
	width: auto;
	max-width: 170px;
	max-height: 50px;
}

.site-header__brand-mark {
	position: relative;
	display: block;
	width: 42px;
	height: 42px;
	border: 2px solid var(--ps-color-primary);
	border-radius: 50%;
}

.site-header__eye {
	position: absolute;
	top: 11px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--ps-color-primary);
}

.site-header__eye--left {
	left: 10px;
}

.site-header__eye--right {
	right: 10px;
}

.site-header__smile {
	position: absolute;
	left: 50%;
	bottom: 8px;
	width: 19px;
	height: 10px;
	border-bottom: 2px solid var(--ps-color-primary);
	border-radius: 0 0 16px 16px;
	transform: translateX(-50%);
}

.site-header__brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.site-header__brand-kicker {
	color: var(--ps-color-primary);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .04em;
}

.site-header__brand-name {
	margin-top: 3px;
	color: var(--ps-color-primary);
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -.02em;
}

.site-header__nav {
	margin-left: auto;
}

.site-header__menu {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__menu li {
	margin: 0;
	padding: 0;
}

.site-header__menu a { position: relative; display: flex; align-items: center; min-height: 78px; padding: 0; color: var(--ps-color-text); font-size: 20px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-header__menu a::after { content: ""; position: absolute; left: 50%; bottom: 15px; width: 0; height: 2px; background: var(--ps-color-primary); transform: translateX(-50%); transition: width .2s ease; }
.site-header__menu a:hover,
.site-header__menu .current-menu-item > a { color: var(--ps-color-primary); }
.site-header__menu a:hover::after,
.site-header__menu .current-menu-item > a::after { width: 100%; }

@media screen and (max-width: 1300px) {
	.site-header__menu a { font-size:20px; font-weight: 700; }
}


.site-header__support {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	flex: 0 0 auto;
	min-height: 48px;
	padding: 10px 21px;
	border-radius: 999px;
	color: #fff;
	background: var(--ps-color-primary);
	box-shadow: 0 6px 18px rgba(242,138,36,.2);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: .2s ease;
}

.site-header__support:hover {
	transform: translateY(-2px);
	box-shadow: 0 9px 24px rgba(242,138,36,.28);
}

.site-header__support-icon {
	font-size: 20px;
	line-height: 1;
}

.site-header__toggle {
	display: none;
}

/* Hero */
.front-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, #fffaf3 0%, #fffaf3 46%, #fff 46%, #fff 100%);
}

.front-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
	align-items: stretch;
	min-height: 500px;
}

.front-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 68px 48px 68px 28px;
}

.front-hero__title {
	margin: 0;
	color: #000;
	font-size: clamp(41px, 4.3vw, 62px);
	font-weight: 500;
	line-height: 1.48;
	letter-spacing: .04em;
}

.front-hero__title .front-hero__accent {
	color: var(--ps-color-primary);
}

.front-hero__text {
	margin: 24px 0 0;
	color: #4f4843;
	font-size: 14px;
	line-height: 1.5;
}

.front-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 28px;
}

.front-hero__visual {
	position: relative;
	z-index: 1;
	overflow: hidden;
	min-height: 500px;
	border-radius: 100px 0 0 100px;
}

.front-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.front-hero__decor {
	position: absolute;
	z-index: 3;
	border-radius: 50%;
	pointer-events: none;
}

.front-hero__decor--orange {
	top: 30px;
	left: -42px;
	width: 90px;
	height: 90px;
	background: rgba(242,138,36,.15);
}

.front-hero__decor--yellow {
	right: -44px;
	bottom: 26px;
	width: 110px;
	height: 110px;
	background: rgba(247,200,75,.20);
}

/* Concept */
.front-concept {
	position: relative;
	overflow: hidden;
	padding-block: 70px;
	background: #fff;
}

.front-concept::after {
	content: "";
	position: absolute;
	right: 9%;
	bottom: 20%;
	width: 70px;
	height: 90px;
	opacity: .18;
	background:
		linear-gradient(135deg, transparent 48%, #d3aa4d 49% 52%, transparent 53%) 0 0/30px 30px;
	transform: rotate(-8deg);
	pointer-events: none;
}

.front-concept__inner {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: 62px;
	max-width: 1100px;
}

.front-concept__visual {
	overflow: hidden;
	border-radius: 16px;
}

.front-concept__image {
	width: 100%;
	aspect-ratio: 1.78 / 1;
	object-fit: cover;
}

.front-concept__eyebrow {
	margin: 0 0 10px;
	color: #4f4843;
	font-size: 13px;
	font-weight: 700;
}

.front-concept__title {
	margin: 0;
	color: #2e2926;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: .03em;
}

.front-concept__title span {
	color: var(--ps-color-primary);
}

.front-concept__text {
	margin: 20px 0 0;
	color: #4f4843;
	font-size: 14px;
	line-height: 2;
}

/* Generic post/page foundations retained for later phases */
.ps-page__title,
.ps-post__title,
.ps-archive__title {
	margin-top: 0;
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.4;
}

.ps-page__content,
.ps-post__content {
	margin-top: 36px;
}

.ps-post__date,
.ps-post-card__date {
	color: var(--ps-color-text-light);
	font-size: 13px;
}


/* Activities */
.front-activities {
	position: relative;
	background:
		linear-gradient(180deg, #fffaf2 0%, #fffdf9 100%);
	border-top: 1px solid rgba(234,223,213,.55);
	border-bottom: 1px solid rgba(234,223,213,.55);
}

.front-activities__header {
	margin-bottom: 34px;
	text-align: center;
}

.front-activities__eyebrow {
	margin: 0 0 8px;
	color: var(--ps-color-primary);
	font-family: var(--ps-font-english);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
}

.front-activities__title {
	position: relative;
	display: inline-block;
	margin: 0;
	color: #2f2a27;
	font-size: clamp(30px, 3.2vw, 42px);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .06em;
}

.front-activities__title::before,
.front-activities__title::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 18px;
	height: 2px;
	background: var(--ps-color-primary);
}

.front-activities__title::before {
	left: -32px;
	transform: rotate(28deg);
}

.front-activities__title::after {
	right: -32px;
	transform: rotate(-28deg);
}

.front-activities__lead {
	margin: 10px 0 0;
	color: var(--ps-color-text-light);
	font-size: 13px;
}

.front-activities__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.activity-card {
	margin:0 0 3%;
	position: relative;
	overflow: visible;
	min-width: 0;
	background: #fff;
	border: 1px solid rgba(234,223,213,.9);
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(51,45,41,.06);
	transition:
		transform .22s ease,
		box-shadow .22s ease,
		border-color .22s ease;
}

.activity-card:hover {
	transform: translateY(-5px);
	border-color: rgba(242,138,36,.45);
	box-shadow: 0 14px 32px rgba(51,45,41,.10);
}

.activity-card__icon {
	position: absolute;
	top: -20px;
	left: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 12px rgba(51,45,41,.10);
	font-size: 19px;
	font-weight: 700;
	transform: translateX(-50%);
}

.activity-card__icon--orange {
	color: #f28a24;
	background: #fff7ef;
}

.activity-card__icon--green {
	color: #82b85a;
	background: #f4fbef;
}

.activity-card__icon--pink {
	color: #ef8c94;
	background: #fff4f5;
}

.activity-card__icon--blue {
	color: #69b8df;
	background: #eff9fd;
}

.activity-card__icon--yellow {
	color: #e6aa22;
	background: #fff9e8;
}

.activity-card__icon--purple {
	color: #9a8bd4;
	background: #f7f4ff;
}

.activity-card__image {
	overflow: hidden;
	aspect-ratio: 1.42 / 1;
	border-radius: 14px 14px 0 0;
	background: #f7f4ef;
}

.activity-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.activity-card:hover .activity-card__image img {
	transform: scale(1.035);
}

.activity-card__body {
	padding: 17px 13px 19px;
	text-align: center;
}

.activity-card__title { margin:0; color:#332d29; font-size:19px; letter-spacing:1px; font-weight: 700; line-height:1.45; }

.activity-card__text {
	margin: 9px 0 0;
	color: #6f6862;
	font-size: 13px;
	line-height: 1.6;
}

.front-activities__footer {
	display: flex;
	justify-content: center;
	margin-top: 26px;
}

.front-activities__link { min-width: 260px; margin-top: 0; }


/* Kirameki */
.front-kirameki {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, #fff4dc 0%, #fff8e9 48%, #fff6de 100%);
	border-top: 1px solid rgba(234,223,213,.65);
	border-bottom: 1px solid rgba(234,223,213,.65);
}

.front-kirameki::before {
	content: "";
	position: absolute;
	left: 6%;
	top: 18%;
	width: 46px;
	height: 46px;
	opacity: .55;
	background:
		linear-gradient(45deg, transparent 43%, #f7c84b 44% 56%, transparent 57%) center/100% 4px no-repeat,
		linear-gradient(-45deg, transparent 43%, #f7c84b 44% 56%, transparent 57%) center/100% 4px no-repeat;
	pointer-events: none;
}

.front-kirameki__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(460px, .8fr);
	align-items: center;
	gap: 42px;
	padding-block: 42px;
}

.front-kirameki__story {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	align-items: center;
	gap: 28px;
}

.front-kirameki__visual {
	overflow: hidden;
	border-radius: 18px;
}

.front-kirameki__visual img {
	width: 100%;
	aspect-ratio: 1.42 / 1;
	object-fit: cover;
}

.front-kirameki__eyebrow {
	margin: 0 0 8px;
	color: #d99600;
	font-family: var(--ps-font-english);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
}

.front-kirameki__title { margin: 0; color: #2f2a27; font-size: clamp(28px, 2.7vw, 40px); font-weight: 500; line-height:1.3; letter-spacing: .03em; }
.front-kirameki__title span { color: var(--ps-color-primary); }
.front-kirameki__text { max-width: 560px; margin: 16px 0 0; color: #5f5650; font-size:13.5px; line-height: 1.6; }

.front-kirameki__actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.kirameki-link-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 150px;
	padding: 18px 16px 15px;
	border: 1px solid #f2c66d;
	border-radius: 14px;
	background: rgba(255,255,255,.90);
	text-decoration: none;
	box-shadow: 0 7px 18px rgba(114,77,18,.05);
	transition:
		transform .2s ease,
		box-shadow .2s ease,
		border-color .2s ease;
}

.kirameki-link-card:hover {
	transform: translateY(-4px);
	border-color: var(--ps-color-primary);
	box-shadow: 0 12px 28px rgba(114,77,18,.11);
}

.kirameki-link-card__icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 12px;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 700;
}

.kirameki-link-card__icon--orange {
	color: #fff;
	background: var(--ps-color-primary);
}

.kirameki-link-card__icon--blue {
	color: #fff;
	background: var(--ps-color-secondary);
}

.kirameki-link-card__icon--pink {
	color: #fff;
	background: #ef9d98;
}

.kirameki-link-card__body {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.kirameki-link-card__title { color: #332d29; font-size: 13.5px; line-height: 1.4; }
.kirameki-link-card__text { color: #7a7069; font-size: 11.8px; line-height: 1.5; }
.kirameki-link-card__arrow { position: absolute; right: 14px; bottom: 12px; color: var(--ps-color-primary); font-size: 16px; font-weight: 700; }
.kirameki-link-card__arrow--blue {color: var(--ps-color-secondary); }


/* News & Report */
.front-news {
	background: #fff;
	border-top: 1px solid rgba(234,223,213,.55);
	border-bottom: 1px solid rgba(234,223,213,.55);
}

.front-news__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 28px;
}

.front-news__eyebrow {
	margin: 0 0 7px;
	color: var(--ps-color-primary);
	font-family: var(--ps-font-english);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
}

.front-news__title {
	margin: 0;
	color: #2f2a27;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .04em;
}

.front-news__all { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 40px; padding: 8px 18px; border: 1px solid #d9c6b7; border-radius: 999px; color: #4a413b; font-size: 14.5px; font-weight: 700; text-decoration: none; transition: .2s ease; }
.front-news__all:hover { color: var(--ps-color-primary);border-color: var(--ps-color-primary); transform: translateY(-2px); }

.front-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.news-card {
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #eadfd5;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(51,45,41,.05);
	transition:
		transform .22s ease,
		box-shadow .22s ease,
		border-color .22s ease;
}

.news-card:hover {
	transform: translateY(-4px);
	border-color: rgba(242,138,36,.4);
	box-shadow: 0 14px 30px rgba(51,45,41,.09);
}

.news-card__link {
	display: grid;
	grid-template-columns: 42% 58%;
	min-height: 175px;
	color: inherit;
	text-decoration: none;
}

.news-card__visual {
	overflow: hidden;
	min-width: 0;
	background: #f7f3ec;
}

.news-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.news-card:hover .news-card__image {
	transform: scale(1.035);
}

.news-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 175px;
	color: var(--ps-color-primary);
	background:
		radial-gradient(circle at 25% 30%, rgba(242,138,36,.14), transparent 32%),
		radial-gradient(circle at 75% 70%, rgba(105,184,223,.14), transparent 30%),
		#fffaf5;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .08em;
}

.news-card__body {
	display: flex;
	flex-direction: column;
	padding: 18px 18px 16px;
}

.news-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 8px;
}

.news-card__category { display: inline-flex; align-items: center; min-height: 22px; padding: 3px 8px; border-radius: 999px; color: #fff; background: var(--ps-color-primary); font-size: 11.5px; font-weight: 700; line-height: 1; }
.news-card__date { color: #8a8078; font-size:11.5px; }
.news-card__title { margin: 0; color: #332d29; font-size: 15.5px; font-weight: 700; line-height: 1.55; }
.news-card__excerpt { display: -webkit-box; margin: 9px 0 0; overflow: hidden; color: #6f6862; font-size: 13px; line-height: 1.5; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.news-card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 11.8px; color: var(--ps-color-primary); font-size: 10px; font-weight: 700; }

.front-news__empty {
	padding: 32px;
	border: 1px dashed #d9c6b7;
	border-radius: 14px;
	color: var(--ps-color-text-light);
	background: #fffaf5;
	text-align: center;
}


/* Support */
.front-support {
	background: #fff;
}

.front-support__panel {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(240px, .8fr) minmax(330px, .9fr);
	align-items: stretch;
	overflow: hidden;
	border-radius: 22px;
	background:
		linear-gradient(90deg, #fff1df 0%, #fff4e5 58%, #ffeecf 100%);
	box-shadow: 0 10px 30px rgba(114,77,18,.05);
}

.front-support__message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 34px 40px 44px;
}

.front-support__eyebrow {
	margin: 0 0 8px;
	color: var(--ps-color-primary);
	font-family: var(--ps-font-english);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
}

.front-support__title { margin: 0; color: #2f2a27; font-size: clamp(28px, 2.7vw, 39px); font-weight: 500; line-height:1.3; letter-spacing: .03em; }
.front-support__title span { color: var(--ps-color-primary); }
.front-support__text { margin: 16px 0 0; color: #5f5650; font-size: 12.5px; line-height: 1.4; }

.front-support__visual {
	position: relative;
	overflow: hidden;
	min-height: 250px;
}

.front-support__visual::before,
.front-support__visual::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	width: 55px;
	pointer-events: none;
}

.front-support__visual::before {
	left: 0;
	background: linear-gradient(90deg, #fff3e2, transparent);
}

.front-support__visual::after {
	right: 0;
	background: linear-gradient(-90deg, #fff0d5, transparent);
}

.front-support__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.front-support__actions {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 26px 28px 26px 8px;
}

.support-action-card {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 12px;
	min-height: 70px;
	padding: 10px 12px;
	border: 1px solid rgba(242,198,109,.75);
	border-radius: 12px;
	background: rgba(255,255,255,.95);
	color: inherit;
	text-decoration: none;
	box-shadow: 0 5px 14px rgba(114,77,18,.04);
	transition:
		transform .2s ease,
		border-color .2s ease,
		box-shadow .2s ease;
}

.support-action-card:hover {
	transform: translateX(4px);
	border-color: var(--ps-color-primary);
	box-shadow: 0 8px 20px rgba(114,77,18,.09);
}

.support-action-card__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 22px;
	font-weight: 700;
}

.support-action-card__icon--heart {
	color: #ef8f86;
	background: #fff2ef;
}

.support-action-card__icon--company {
	color: #69b8df;
	background: #edf8fd;
}

.support-action-card__icon--people {
	color: #87bd63;
	background: #f0f8eb;
}

.support-action-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.support-action-card__title { color: #332d29; font-size: 13.5px; line-height: 1.4; }
.support-action-card__text { color: #7a7069; font-size:12px; line-height: 1.4; }
.support-action-card__arrow { color: var(--ps-color-primary); font-size: 16px; font-weight: 700; }


/* ==========================================================
   v2.0.0 TOP PAGE FINAL POLISH
   ========================================================== */

/* Header */
.site-header__inner {
	min-height: 76px;
}

.site-header__brand {
	margin-left: -4px;
}

.site-header__nav {
	margin-left: auto;
	margin-right: 4px;
}

.site-header__menu {
	gap: 24px;
}

.site-header__menu a {
	min-height: 76px;
	font-size:20px;
}

.site-header__support {
	min-height: 46px;
	padding-inline: 20px;
}

/* Hero */
.front-hero {
	background:
		radial-gradient(circle at -1% 16%, rgba(242,138,36,.14) 0 44px, transparent 45px),
		radial-gradient(circle at 101% 78%, rgba(247,200,75,.20) 0 54px, transparent 55px),
		linear-gradient(90deg, #fffaf3 0%, #fffaf3 47.8%, #fff 47.8%, #fff 100%);
}

.front-hero__inner {
	grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr);
	min-height: 470px;
}

.front-hero__content {
	padding: 58px 48px 58px 20px;
}

.front-hero__title {
	max-width: 560px;
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.54;
	letter-spacing: .035em;
}

.front-hero__title-line {
	display: block;
	white-space: nowrap;
}

.front-hero__accent {
	color: var(--ps-color-primary);
}

.front-hero__text {
	max-width: 500px;
	margin-top: 22px;
	font-size: 13px;
	line-height: 1.5;
}

.front-hero__actions {
	gap: 11px;
	margin-top: 25px;
}

.front-hero__actions .ps-button {
	min-height: 50px;
	padding-inline: 19px;
}

.front-hero__visual {
	min-height: 470px;
	border-radius: 84px 0 0 84px;
}

.front-hero__image {
	object-position: 52% center;
}

/* Concept */
.front-concept {
	padding-block: 62px;
}

.front-concept__inner {
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 54px;
	max-width: 1040px;
}

.front-concept__visual {
	border-radius: 14px;
}

.front-concept__image {
	aspect-ratio: 1.72 / 1;
}

.front-concept__eyebrow {
	font-size: 12px;
}

.front-concept__title {
	font-size: clamp(27px, 2.85vw, 39px);
	line-height: 1.25;
}

.front-concept__text {
	margin-top: 17px;
	font-size: 13px;
	line-height: 1.6;
}

.front-concept .ps-outline-link {
	margin-top: 20px;
}

/* Activities */
.front-activities {
	padding-block: 58px;
}

.front-activities__header {
	margin-bottom: 38px;
}

.front-activities__grid {
	gap: 12px;
}

.activity-card {
	border-radius: 13px;
}

.activity-card__icon {
	top: -18px;
	width: 40px;
	height: 40px;
	font-size: 17px;
}

.activity-card__image {
	aspect-ratio: 1.48 / 1;
}

.activity-card__body {
	padding: 15px 12px 17px;
}

.activity-card__title { font-size:19px; }

.activity-card__text {
	margin-top: 7px;
	font-size: 13px;
	line-height: 1.75;
}

.front-activities__footer {
	margin-top: 24px;
}

/* Kirameki */
.front-kirameki__inner {
	grid-template-columns: minmax(0, 1.23fr) minmax(430px, .77fr);
	gap: 38px;
	padding-block: 38px;
}

.front-kirameki__story {
	grid-template-columns: 165px minmax(0, 1fr);
	gap: 24px;
}

.front-kirameki__title { font-size: clamp(27px, 2.55vw, 37px); }
.front-kirameki__text { font-size: 13px; }

.kirameki-link-card {
	min-height: 142px;
	padding: 16px 14px 14px;
}

.kirameki-link-card__title { font-size:13.5px; }

/* News */
.front-news {
	padding-block: 58px;
}

.front-news__header {
	margin-bottom: 24px;
}

.front-news__grid {
	gap: 16px;
}

.news-card__link {
	grid-template-columns: 40% 60%;
	min-height: 165px;
}

.news-card__body {
	padding: 16px 16px 14px;
}

.news-card__title {
	font-size: 14px;
}

.news-card__excerpt { font-size: 13px; }

/* Support */
.front-support {
	padding-block: 62px;
}

.front-support__panel {
	grid-template-columns: minmax(0, 1.08fr) minmax(250px, .82fr) minmax(320px, .9fr);
	border-radius: 20px;
}

.front-support__message {
	padding: 34px 30px 34px 38px;
}

.front-support__title { font-size: clamp(27px, 2.55vw, 37px); }
.front-support__text { font-size: 12.5px; }

.front-support__visual {
	min-height: 230px;
}

.front-support__actions {
	gap: 9px;
	padding: 22px 24px 22px 6px;
}

.support-action-card {
	min-height: 66px;
}

/* Footer final polish */
.site-footer__cta-inner {
	padding-block: 36px;
}

.site-footer__cta-title { font-size: clamp(25px, 2.7vw, 35px); }

.site-footer__grid {
	padding-block: 34px;
}

.site-footer__bottom {
	padding-block: 14px;
	font-size: 11px;
}

/* Prevent accidental parent-theme visual leftovers */
.peer-smile-site .site-main,
.peer-smile-site .front-page,
.peer-smile-site .site-header,
.peer-smile-site .site-footer {
	max-width: none;
	margin: 0;
}

.peer-smile-site .site-main::before,
.peer-smile-site .site-main::after {
	display: none !important;
}


/* ==========================================================
   PSDM v3.0.0 GLOBAL HEADER + HERO
   ========================================================== */

.psdm-container {
	width: min(calc(100% - 48px), 1500px);
	margin-inline: auto;
}

.site-header--psdm {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(255,255,255,.985);
	border-bottom: 1px solid rgba(234,223,213,.7);
	backdrop-filter: blur(14px);
}

.site-header__full {
	width: 100%;
}

.site-header--psdm .site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 76px;
}

.site-header--psdm .site-header__brand {
	margin: 0;
	flex: 0 0 auto;
}

.site-header--psdm .site-header__custom-logo img {
	width: auto;
	max-width: 210px;
	max-height: 58px;
	object-fit: contain;
}

.site-header--psdm .site-header__brand-mark {
	width: 46px;
	height: 46px;
}

.site-header--psdm .site-header__brand-name {
	font-size: 25px;
}

.site-header--psdm .site-header__nav {
	margin-left: auto;
	margin-right: 0;
}

.site-header--psdm .site-header__menu {
	gap: clamp(18px, 1.7vw, 32px);
}

.site-header--psdm .site-header__menu a {
	min-height: 76px;
	font-size: 14.5px;
}

.site-header--psdm .site-header__support {
	min-height: 50px;
	padding: 10px 22px;
	font-size: 14px;
	border:1px solid orange;
}

/* Full-width hero */
.front-hero--psdm {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #fffaf3;
}

.front-hero--psdm .front-hero__frame {
	display: grid;
	grid-template-columns: minmax(0, 47.5%) minmax(0, 52.5%);
	width: 100%;
	min-height: 590px;
}

.front-hero--psdm .front-hero__copy {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 2% 18%, rgba(242,138,36,.15) 0 50px, transparent 51px),
		linear-gradient(90deg, #fffaf3 0%, #fffaf3 100%);
}

.front-hero--psdm .front-hero__copy-inner {
	width: min(100% - 64px, 650px);
	margin-left: max(32px, calc((100vw - 1500px) / 2));
	padding: 56px 0;
}

.front-hero--psdm .front-hero__title {
	margin: 0;
	color: #000;
	font-size: clamp(44px, 4.1vw, 68px);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .04em;
}

.front-hero--psdm .front-hero__title-line {
	display: block;
	white-space: nowrap;
}

.front-hero--psdm .front-hero__accent {
	color: var(--ps-color-primary);
}

.front-hero--psdm .front-hero__text {
	max-width: 560px;
	margin: 24px 0 0;
	color: #4f4843;
	font-size: 14px;
	line-height: 1.4;
}

.front-hero--psdm .front-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 30px;
}

.front-hero--psdm .front-hero__actions .ps-button {
	min-height: 54px;
	padding-inline: 24px;
}

/* Visual side */
.front-hero--psdm .front-hero__visual {
	position: relative;
	z-index: 1;
	min-height: 590px;
	overflow: hidden;
	background: #f6f0e8;
}

.front-hero--psdm .front-hero__image {
	width: 100%;
	height: 100%;
	min-height: 590px;
	object-fit: cover;
	object-position: center 42%;
}

/* Soft organic wave on left edge of photo */
.front-hero--psdm .front-hero__visual-wave {
	position: absolute;
	z-index: 2;
	top: -8%;
	left: -92px;
	width: 190px;
	height: 116%;
	background: #fffaf3;
	border-radius: 45% 55% 52% 48% / 25% 35% 65% 75%;
	transform: rotate(-2deg);
	pointer-events: none;
}

/* Decorative circles */
.front-hero--psdm .front-hero__ornament {
	position: absolute;
	z-index: 4;
	border-radius: 50%;
	pointer-events: none;
}

.front-hero--psdm .front-hero__ornament--orange {
	left: -34px;
	top: 18px;
	width: 92px;
	height: 92px;
	background: rgba(242,138,36,.14);
}

.front-hero--psdm .front-hero__ornament--yellow {
	right: -48px;
	top: -40px;
	width: 150px;
	height: 150px;
	background: rgba(247,200,75,.18);
}

.front-hero--psdm .front-hero__ornament--blue {
	right: -45px;
	bottom: 44px;
	width: 112px;
	height: 112px;
	background: rgba(105,184,223,.17);
}

/* Future-proof image behavior:
   Replace /assets/images/hero-main.jpg only.
   No HTML/CSS change is required. */
