/* Journal page only */

/* Shared helpers */
.section-title {
	font-family: var(--font-serif);
	font-weight: 600;
	margin: 0 0 6px;
}
.section-lede {
	margin: 0 0 14px;
	color: var(--muted);
}

/* ===== SECTION 1: Studio Letters ===== */
.studio-letters {
	padding: 36px 0;
}
.letters-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: start;
}
.letter-body {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 8px 26px var(--shadow);
}
.drop::first-letter {
	font-family: var(--font-serif);
	float: left;
	font-size: 3.2rem;
	line-height: 0.9;
	margin: 6px 8px 0 0;
	color: color-mix(in oklab, var(--accent) 80%, #fff 20%);
}
.pull {
	margin: 8px 0;
	padding: 8px 10px;
	border-left: 3px solid var(--accent);
	color: var(--muted);
	font-style: italic;
}

.letters-notes {
	position: relative;
	display: grid;
	gap: 10px;
}
.letters-notes::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: rgba(255, 255, 255, 0.12);
}
.note-pic {
	margin-left: 20px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 8px;
	box-shadow: 0 8px 26px var(--shadow);
}
.note-pic img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 10px;
}
.note-list {
	margin: 6px 0 0 20px;
	color: var(--muted);
}

@media (max-width: 980px) {
	.letters-grid {
		grid-template-columns: 1fr;
	}
	.letters-notes::before {
		display: none;
	}
}

/* ===== SECTION 2: Care Playbook ===== */
.care-playbook {
	padding: 36px 0;
}
.play-grid {
	display: grid;
	gap: 16px;
}
.play-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.play-step {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 8px 26px var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.play-step:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px var(--shadow);
	border-color: rgba(255, 255, 255, 0.18);
}
.play-step figure img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 12px;
}
.play-step h3 {
	margin: 8px 0 4px;
}
.play-step p {
	margin: 0 0 6px;
	color: var(--muted);
}

.do-list {
	margin: 6px 0 0 18px;
}
.do-list .ok::marker {
	content: '✓ ';
	color: #4cd17e;
}
.do-list .no::marker {
	content: '✕ ';
	color: #ff8a8a;
}

.play-toggles {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.chip {
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
	transition: transform 0.2s ease, background-color 0.2s ease,
		border-color 0.2s ease;
}
.chip:hover {
	transform: translateY(-2px);
}
.chip.is-active {
	background: rgba(71, 103, 255, 0.15);
	border-color: rgba(71, 103, 255, 0.35);
}

.play-tip {
	margin: 8px 0 0;
	color: var(--muted);
}

@media (max-width: 980px) {
	.play-steps {
		grid-template-columns: 1fr;
	}
}

/* ===== SECTION 3: Climate Notes (scroll story) ===== */
.climate-notes {
	padding: 36px 0;
}
.climate-grid {
	display: grid;
	gap: 12px;
}
.climate-rail {
	display: grid;
	gap: 12px;
	max-height: 520px;
	overflow-y: auto;
	padding-right: 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	box-shadow: 0 8px 26px var(--shadow);
}
.cl-row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 10px;
	transition: border-color 0.2s ease, background-color 0.2s ease,
		transform 0.2s ease;
}
.cl-row.is-active {
	border-color: rgba(71, 103, 255, 0.35);
	background: rgba(71, 103, 255, 0.1);
	transform: translateY(-1px);
}
.cl-row figure img {
	width: 100%;
	height: 110px;
	object-fit: cover;
	border-radius: 10px;
}
.cl-copy h3 {
	margin: 0 0 4px;
}
.cl-copy p {
	margin: 0;
	color: var(--muted);
}

@media (max-width: 680px) {
	.cl-row {
		grid-template-columns: 1fr;
	}
}
/* ===== SECTION 4: Material Field Notes ===== */
.field-notes {
	padding: 36px 0;
}
.fn-grid {
	display: grid;
	gap: 14px;
}
.fn-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.fn-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}
.fn-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 10px;
	box-shadow: 0 8px 26px var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease,
		opacity 0.2s ease, filter 0.2s ease;
}
.fn-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px var(--shadow);
	border-color: rgba(255, 255, 255, 0.18);
}
.fn-fig img {
	width: 100%;
	height: 110px;
	object-fit: cover;
	border-radius: 12px;
}
.fn-copy h3 {
	margin: 0 0 4px;
}
.fn-copy p {
	margin: 0 0 6px;
	color: var(--muted);
}
.fn-points {
	margin: 0 0 0 18px;
	color: var(--muted);
}
.fn-item.dim {
	opacity: 0.35;
	filter: grayscale(0.4);
}

@media (max-width: 720px) {
	.fn-item {
		grid-template-columns: 1fr;
	}
}

/* ===== SECTION 5: Profile Anatomy ===== */
.profile-anatomy {
	padding: 36px 0;
}
.pa-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: start;
}
.pa-controls {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 8px;
}
.pa-group {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 10px;
	box-shadow: 0 8px 26px var(--shadow);
}
.group-label {
	display: block;
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 6px;
}

.pa-diagram {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 12px;
	box-shadow: 0 8px 26px var(--shadow);
}
.pa-hat {
	position: relative;
	height: 220px;
	display: grid;
	place-items: center;
}
.pa-diagram {
	--crown-h: 56px;
	--crown-w: 120px;
	--brim-w: 160px;
	--tilt: 0deg;
}
.pa-crown,
.pa-brim,
.pa-shade,
.pa-air {
	position: absolute;
	border-radius: 999px;
}
.pa-crown {
	width: var(--crown-w);
	height: var(--crown-h);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.18),
		rgba(255, 255, 255, 0.06)
	);
	box-shadow: 0 6px 16px var(--shadow) inset, 0 6px 20px var(--shadow);
	transform: translateY(-18px) rotate(var(--tilt));
}
.pa-brim {
	width: var(--brim-w);
	height: 18px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 6px 20px var(--shadow);
	transform: translateY(40px) rotate(var(--tilt));
}
.pa-shade {
	width: calc(var(--brim-w) * 1.15);
	height: 28px;
	background: rgba(239, 127, 26, 0.15);
	filter: blur(10px);
	transform: translateY(66px) rotate(var(--tilt));
	opacity: 0.85;
}
.pa-air {
	width: calc(var(--crown-w) * 0.9);
	height: calc(var(--crown-h) * 0.3);
	background: radial-gradient(
		closest-side,
		rgba(71, 103, 255, 0.35),
		transparent 70%
	);
	transform: translateY(10px) rotate(var(--tilt));
	filter: blur(6px);
}
.pa-legend {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 8px;
	color: var(--muted);
	font-size: 0.9rem;
}
.pa-legend .l {
	padding: 4px 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
}
.l-shade {
	background: rgba(239, 127, 26, 0.08);
}
.l-air {
	background: rgba(71, 103, 255, 0.08);
}

/* presets via classes (no inline styles) */
.pa-diagram.cw-low {
	--crown-h: 48px;
	--crown-w: 114px;
}
.pa-diagram.cw-mid {
	--crown-h: 56px;
	--crown-w: 120px;
}
.pa-diagram.cw-high {
	--crown-h: 72px;
	--crown-w: 128px;
}

.pa-diagram.bw-short {
	--brim-w: 140px;
}
.pa-diagram.bw-mid {
	--brim-w: 160px;
}
.pa-diagram.bw-wide {
	--brim-w: 200px;
}

.pa-photos {
	display: grid;
	gap: 10px;
}
.pa-photos img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 12px;
}

@media (max-width: 980px) {
	.pa-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== SECTION 6: Repairs & Refresh ===== */
.repairs-refresh {
	padding: 36px 0;
}
.rr-grid {
	display: grid;
	gap: 14px;
}
.rr-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.rr-card {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 8px 26px var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.rr-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px var(--shadow);
	border-color: rgba(255, 255, 255, 0.18);
}
.rr-card figure img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 12px;
}
.rr-card h3 {
	margin: 8px 0 4px;
}
.rr-card p {
	margin: 0 0 6px;
	color: var(--muted);
}
.rr-card details {
	margin-top: 6px;
	color: var(--muted);
}

@media (max-width: 980px) {
	.rr-cards {
		grid-template-columns: 1fr;
	}
}
/* ===== SECTION 7: Weave Diagnostics ===== */
.weave-diagnostics {
	padding: 36px 0;
}
.wd-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	align-items: start;
}
.wd-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.wd-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.wd-card {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 8px 26px var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.wd-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px var(--shadow);
	border-color: rgba(255, 255, 255, 0.18);
}
.wd-fig img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 12px;
	max-width: 350px;
	margin-inline: auto;
}
.wd-bars {
	display: grid;
	gap: 6px;
	margin-top: 6px;
}
.wd-bar {
	--w: 0%;
	position: relative;
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
}
.wd-bar::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: var(--w);
	background: linear-gradient(
		90deg,
		color-mix(in oklab, var(--accent) 80%, #fff 20%),
		var(--accent)
	);
	border-radius: 999px;
}
.wd-bar span {
	position: absolute;
	left: 8px;
	top: -18px;
	font-size: 0.8rem;
	color: var(--muted);
}
.wd-card.dim {
	opacity: 0.35;
	filter: grayscale(0.4);
}

@media (max-width: 1060px) {
	.wd-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 860px) {
	.wd-cards {
		grid-template-columns: 1fr;
	}
}

/* ===== SECTION 8: Festival Light ===== */
.festival-light {
	padding: 36px 0;
}
.fl-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: start;
}
.fl-moods {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.fl-tip {
	margin-top: 8px;
	color: var(--muted);
}
.fl-collage {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.fl-fig {
	text-align: center;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 10px;
	box-shadow: 0 8px 26px var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.fl-fig:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px var(--shadow);
	border-color: rgba(255, 255, 255, 0.18);
}
.fl-fig img {
	width: 100%;
	height: 170px;
	object-fit: cover;
	border-radius: 12px;
	max-width: 350px;
	margin-inline: auto;
}
/* playful shapes */
.fl-fig.bubble img {
	clip-path: circle(46% at 50% 50%);
}
.fl-fig.petal img {
	clip-path: ellipse(46% 34% at 50% 55%);
}
.fl-fig.ring img {
	clip-path: circle(50% at 50% 50%);
	mask: radial-gradient(circle at 50% 50%, transparent 34%, black 36%);
}

@media (max-width: 1000px) {
	.fl-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 860px) {
	.fl-collage {
		grid-template-columns: 1fr;
	}
}

/* ===== SECTION 9: Urban Commute Guide ===== */
.urban-commute {
	padding: 36px 0;
}
.uc-grid {
	display: grid;
	gap: 16px;
}
.uc-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.uc-card {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 8px 26px var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.uc-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px var(--shadow);
	border-color: rgba(255, 255, 255, 0.18);
}
.uc-card figure img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 12px;
	max-width: 350px;
	margin-inline: auto;
}
.uc-card p {
	margin: 0 0 6px;
	color: var(--muted);
}
.uc-list {
	margin: 0 0 0 18px;
	color: var(--muted);
}

@media (max-width: 980px) {
	.uc-cards {
		grid-template-columns: 1fr;
	}
}
/* ===== SECTION 10: Lookbook Notes ===== */
.lookbook-notes {
	padding: 36px 0;
}
.ln-grid {
	display: grid;
	gap: 14px;
}
.ln-rail {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.ln-card {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 8px 26px var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.ln-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px var(--shadow);
	border-color: rgba(255, 255, 255, 0.18);
}
.ln-fig {
	position: relative;
}
.ln-fig img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	border-radius: 12px;
	max-width: 350px;
	margin-inline: auto;
}
.ln-pin {
	position: absolute;
	left: var(--x);
	top: var(--y);
	transform: translate(-50%, -50%);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: color-mix(in oklab, var(--accent) 70%, #fff 30%);
	box-shadow: 0 2px 10px var(--ring);
	cursor: pointer;
}
.ln-note {
	display: none;
	color: var(--muted);
	margin: 6px 0 0;
}
.ln-note.is-open {
	display: block;
}
.ln-hint {
	text-align: right;
	font-size: 0.85rem;
	color: var(--muted);
	opacity: 0.8;
}

@media (max-width: 820px) {
	.ln-rail {
		grid-template-columns: 1fr;
	}
}

/* ===== SECTION 11: Reader Questions ===== */
.reader-questions {
	padding: 36px 0;
}
.rq-grid {
	display: grid;
	gap: 16px;
}
.rq-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 20px;
	align-items: start;
}
.rq-faq details {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 10px 12px;
	margin-bottom: 10px;
	box-shadow: 0 6px 18px var(--shadow);
}
.rq-faq summary {
	cursor: pointer;
}
.rq-faq p {
	color: var(--muted);
	margin: 6px 0 0;
}
.rq-fig img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 12px;
	max-width: 350px;
	margin-inline: auto;
}

@media (max-width: 1000px) {
	.rq-layout {
		grid-template-columns: 1fr;
	}
}

/* ===== SECTION 12: Studio & Contact Slice ===== */
.visit-slice {
	padding: 36px 0;
}
.vs-grid {
	display: grid;
	gap: 14px;
}
.vs-media {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.vs-fig img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
	max-width: 350px;
	margin-inline: auto;
}
.vs-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
@media (max-width: 720px) {
	.vs-media {
		grid-template-columns: 1fr;
	}
}
/* базовый стиль кнопок (уже есть у тебя, просто оставляем) */
.ln-pin {
	position: absolute;
	transform: translate(-50%, -50%);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: color-mix(in oklab, var(--accent) 70%, #fff 30%);
	box-shadow: 0 2px 10px var(--ring);
	cursor: pointer;
}

/* позиционирование по фото "Commute" */
.ln-pin-cap {
	left: 42%;
	top: 82%;
}
.ln-pin-loop {
	left: 68%;
	top: 10%;
}

/* позиционирование по фото "Evening" */
.ln-pin-cloche {
	left: 32%;
	top: 20%;
}
.ln-pin-satin {
	left: 52%;
	top: 72%;
}
