/* Atölye sayfası – ilk 4 seksiyon */

/* ===== §1 Atölye Başlangıcı ===== */
.a-hero {
	padding: clamp(44px, 6vw, 72px) 0 clamp(24px, 5vw, 48px);
}
.a-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 12px;
	align-items: start;
}
.a-hero h1 {
	font-family: Cinzel, serif;
	margin: 0 0 8px;
	font-size: clamp(26px, 4.2vw, 44px);
	letter-spacing: 0.02em;
}
.a-hero .lead {
	color: #dbe3ef;
	margin: 0 0 8px;
}
.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 8px 0 0;
	list-style: none;
}
.chips li {
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(31, 59, 115, 0.35);
	color: #cfe0ff;
}

.window-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.window-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 10px;
	background: radial-gradient(
			300px 160px at 100% -10%,
			rgba(106, 164, 255, 0.14),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02)
		);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.window-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.window-card figure {
	margin: 0;
}
.window-card figcaption {
	margin-top: 6px;
	color: var(--muted);
	font-size: 12px;
}

@media (max-width: 992px) {
	.a-hero-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §2 Araçlar & Teknik ===== */
.a-tools h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.tool-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 12px;
}
.tool-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0.02)
	);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.tool-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.tool-card header {
	margin: 0 0 6px;
}
.tool-card h3 {
	margin: 0;
	font-size: 16px;
}
.tool-card small {
	color: var(--muted);
}
.tool-card p {
	margin: 6px 0 0;
	color: #dbe3ef;
}
.tool-card figure {
	margin: 8px 0 0;
}

@media (max-width: 992px) {
	.tool-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 576px) {
	.tool-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §3 İş Akışı — Adım panosu ===== */
.a-flow h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.flow-grid {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.step-card {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px 12px 12px 46px;
	background: radial-gradient(
			300px 160px at 10% -10%,
			rgba(201, 162, 75, 0.14),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02)
		);
	box-shadow: var(--shadow);
}
.step-card .num {
	position: absolute;
	left: 12px;
	top: 12px;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	font-size: 12px;
	font-weight: 600;
	color: #cfe0ff;
	background: rgba(31, 59, 115, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.18);
}
.step-body h3 {
	margin: 0 0 6px;
	font-size: 16px;
}
.step-body p {
	margin: 0;
	color: #dbe3ef;
}
.step-body figure {
	margin: 8px 0 0;
}

@media (max-width: 992px) {
	.flow-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 576px) {
	.flow-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §4 Ustaların Notları — Alıntı kartları ===== */
.a-notes h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.note-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 12px;
}
.quote-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0.02)
	);
	box-shadow: var(--shadow);
}
.quote-card blockquote {
	margin: 0;
	color: #e9eef5;
	line-height: 1.55;
}
.quote-card .byline {
	margin: 8px 0 0;
	color: var(--muted);
}
.quote-card.with-figure {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
}
.quote-card.with-figure figure {
	margin: 0;
}
.quote-card.with-figure img {
	border-radius: 10px;
}
.quote-card.with-figure .qcopy blockquote {
	margin: 0;
}

@media (max-width: 992px) {
	.note-grid {
		grid-template-columns: 1fr;
	}
}
section {
	margin-bottom: 30px;
}
/* ===== §5 Ses & Yüzey ===== */
.a-sound h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.sound-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
}
.sound-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: radial-gradient(
			300px 160px at 100% -10%,
			rgba(106, 164, 255, 0.14),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02)
		);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.sound-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.sound-card header {
	margin: 0 0 6px;
}
.sound-card h3 {
	margin: 0;
	font-size: 16px;
}
.sound-card small {
	color: var(--muted);
}
.sound-card figure {
	margin: 8px 0 0;
}
.sound-card p {
	margin: 6px 0 0;
	color: #dbe3ef;
}

@media (max-width: 992px) {
	.sound-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §6 Prototip Rafı — belt (без кнопок) ===== */
.a-proto .section-head {
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
	align-items: end;
	margin-bottom: 10px;
}
.a-proto .belt-hint {
	font-size: 12px;
	color: var(--muted);
	user-select: none;
}
.a-proto .belt {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(230px, 1fr);
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 2px 2px 8px;
	cursor: grab;
}
.a-proto .belt:active {
	cursor: grabbing;
}
.a-proto .belt:focus-visible {
	outline: none;
	box-shadow: var(--focus);
	border-radius: 12px;
}

.proto-card {
	scroll-snap-align: start;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0.02)
	);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.proto-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.proto-card figure {
	margin: 0 0 8px;
}
.proto-card figcaption {
	margin-top: 6px;
	font-size: 12px;
	color: var(--muted);
}
.proto-card h3 {
	margin: 6px 0 4px;
	font-size: 16px;
}
.proto-card p {
	margin: 0;
	color: var(--muted);
}

/* scrollbar */
.a-proto .belt::-webkit-scrollbar {
	height: 8px;
}
.a-proto .belt::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.14);
	border-radius: 8px;
}
.a-proto .belt::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.06);
	border-radius: 8px;
}

@media (max-width: 576px) {
	.a-proto .belt {
		grid-auto-columns: 82%;
	}
}

/* ===== §7 Doku Kataloğu ===== */
.a-catalog h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 12px;
}
.catalog-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0.02)
	);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.catalog-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.catalog-card header {
	margin: 0 0 6px;
}
.catalog-card h3 {
	margin: 0;
	font-size: 16px;
}
.catalog-card small {
	color: var(--muted);
}
.catalog-card figure {
	margin: 8px 0 0;
}
.catalog-card p {
	margin: 6px 0 0;
	color: #dbe3ef;
}

@media (max-width: 992px) {
	.catalog-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §8 Atölye Takvimi ===== */
.a-calendar h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.cal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
}
.cal-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: radial-gradient(
			300px 160px at 10% -10%,
			rgba(201, 162, 75, 0.14),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02)
		);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.cal-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.cal-card header {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px;
	align-items: center;
	margin-bottom: 6px;
}
.cal-card .day {
	display: inline-grid;
	place-items: center;
	min-width: 40px;
	height: 28px;
	padding: 0 8px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(31, 59, 115, 0.35);
	color: #cfe0ff;
	font-weight: 600;
	font-size: 12px;
}
.cal-card p {
	margin: 0;
	color: #dbe3ef;
}
.cal-card figure {
	margin: 8px 0 0;
}

@media (max-width: 992px) {
	.cal-grid {
		grid-template-columns: 1fr;
	}
}
/* ===== §9 Ustalar & Roller ===== */
.a-crew h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.crew-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 12px;
}
.crew-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 10px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0.02)
	);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.crew-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.crew-figure {
	margin: 0;
}
.crew-figure img {
	border-radius: 10px;
}
.crew-copy h3 {
	margin: 0 0 4px;
	font-size: 16px;
}
.crew-copy small {
	color: var(--muted);
}
.crew-copy p {
	margin: 6px 0 0;
	color: #dbe3ef;
}

@media (max-width: 992px) {
	.crew-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §10 Deney İstasyonları ===== */
.a-stations h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.station-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 12px;
}
.station-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: radial-gradient(
			300px 160px at 10% -10%,
			rgba(106, 164, 255, 0.14),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02)
		);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.station-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.station-card header {
	margin: 0 0 6px;
}
.station-card h3 {
	margin: 0;
	font-size: 16px;
}
.station-card small {
	color: var(--muted);
}
.station-card p {
	margin: 6px 0 0;
	color: #dbe3ef;
}
.station-card figure {
	margin: 8px 0 0;
}

@media (max-width: 992px) {
	.station-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §11 Ölçü Provası ===== */
.a-fit h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.fit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
}
.fit-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0.02)
	);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.fit-card header {
	margin: 0 0 6px;
}
.fit-card h3 {
	margin: 0;
	font-size: 16px;
}
.fit-card small {
	color: var(--muted);
}
.fit-card p {
	margin: 6px 0 8px;
	color: #dbe3ef;
}
.bar {
	height: 8px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
}
.bar span {
	display: block;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(201, 162, 75, 0.25),
		rgba(201, 162, 75, 0.45)
	);
}
.bar-neutral span {
	background: linear-gradient(
		90deg,
		rgba(106, 164, 255, 0.22),
		rgba(106, 164, 255, 0.42)
	);
}

@media (max-width: 992px) {
	.fit-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §12 Yüzey Test Günlüğü ===== */
.a-journal h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.journal-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
	position: relative;
}
.entry-card {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0.02)
	);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.entry-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.entry-head {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px;
	align-items: center;
	margin-bottom: 6px;
}
.entry-head .dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(201, 162, 75, 0.65);
	box-shadow: 0 0 0 2px rgba(201, 162, 75, 0.25);
}
.entry-card figure {
	margin: 0 0 8px;
}
.entry-card p {
	margin: 0;
	color: #dbe3ef;
}

@media (max-width: 992px) {
	.journal-list {
		grid-template-columns: 1fr;
	}
}
/* ===== §13 Lehim & Bağlantı — Zigzag ===== */
.a-solder h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.zig-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
}
.zig-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 10px;
	background: radial-gradient(
			300px 160px at 100% -10%,
			rgba(106, 164, 255, 0.14),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02)
		);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.zig-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.zig-fig {
	margin: 0;
}
.zig-fig img {
	border-radius: 10px;
}
.zig-copy h3 {
	margin: 0 0 6px;
	font-size: 16px;
}
.zig-copy p {
	margin: 0;
	color: #dbe3ef;
}
.zig-card:nth-child(even) {
	grid-template-columns: 1fr auto;
}
@media (max-width: 992px) {
	.zig-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §14 Numune Rafı — Çekmeceler ===== */
.a-drawers h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.drawer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
}
.drawer-card {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px 12px 12px 12px;
	background: radial-gradient(
			300px 160px at 10% -10%,
			rgba(201, 162, 75, 0.14),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02)
		);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.drawer-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.drawer-card::before {
	content: '';
	position: absolute;
	right: 12px;
	top: 14px;
	width: 24px;
	height: 8px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.drawer-card header {
	margin: 0 0 6px;
}
.drawer-card h3 {
	margin: 0;
	font-size: 16px;
}
.drawer-card small {
	color: var(--muted);
}
.drawer-card figure {
	margin: 8px 0 0;
}
.drawer-card p {
	margin: 6px 0 0;
	color: #dbe3ef;
}
@media (max-width: 992px) {
	.drawer-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §15 Kalite Kontrol — Checklist ===== */
.a-qc h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.qc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
}
.qc-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0.02)
	);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.qc-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
}
.qc-card header {
	margin: 0 0 6px;
}
.qc-card h3 {
	margin: 0;
	font-size: 16px;
}
.qc-card small {
	color: var(--muted);
}
.qc-card figure {
	margin: 8px 0 0;
}
.checklist {
	margin: 8px 0 0;
	padding-left: 0;
	list-style: none;
}
.checklist li {
	position: relative;
	padding-left: 24px;
	margin: 6px 0 0;
	color: #dbe3ef;
}
.checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 14px;
	height: 14px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}
.checklist li::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 7px;
	width: 6px;
	height: 3px;
	border-left: 2px solid var(--gold);
	border-bottom: 2px solid var(--gold);
	transform: rotate(-45deg);
}
@media (max-width: 992px) {
	.qc-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== §16 Arşiv Kartları — Ticket stili ===== */
.a-archive h2 {
	font-family: Cinzel, serif;
	margin: 0 0 6px;
}
.ticket-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
}
.ticket-card {
	position: relative;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	padding: 12px 12px 12px 12px;
	background: radial-gradient(
				12px 12px at 0 50%,
				rgba(0, 0, 0, 0) 49%,
				rgba(255, 255, 255, 0.12) 50%,
				rgba(0, 0, 0, 0) 51%
			)
			left center / 24px 100% repeat-y,
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.05),
			rgba(255, 255, 255, 0.02)
		);
	box-shadow: var(--shadow);
}
.ticket-card figure {
	margin: 0 0 8px;
}
.ticket-card img {
	border-radius: 10px;
}
.ticket-card .tcopy h3 {
	margin: 0 0 6px;
	font-size: 16px;
}
.ticket-card .tcopy p {
	margin: 0;
	color: #dbe3ef;
}
@media (max-width: 992px) {
	.ticket-grid {
		grid-template-columns: 1fr;
	}
}
.w-72 {
	width: 72%;
}
.w-64 {
	width: 64%;
}
