/* =========================================================
   Camera KW — Contact Page
   Page-specific layout only.
   Shared buttons, icons, breadcrumbs and accordions
   remain in main.css and content.css.
   ========================================================= */

.ckw-contact-page {
	background: var(--ckw-white);
}

.ckw-contact-page h1,
.ckw-contact-page h2,
.ckw-contact-page h3,
.ckw-contact-page p {
	margin-block-start: 0;
}

/* =========================
   Hero
   ========================= */

.ckw-contact-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(330px, .65fr);
	align-items: center;
	min-height: 372px;
	gap: clamp(44px, 7vw, 100px);
}

.ckw-contact-hero__copy h1 {
	max-width: 820px;
	margin: 14px 0 0;
	color: var(--ckw-white);
	font-size: clamp(40px, 4.6vw, 60px);
	font-weight: 900;
	letter-spacing: -.04em;
	line-height: 1.18;
}

.ckw-contact-hero__copy > p {
	max-width: 720px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .72);
	font-size: 17px;
    line-height: 1.85;
}

.ckw-contact-actions {
	display: flex;
	flex-wrap: wrap;
	margin-top: 24px;
	gap: 12px;
}

.ckw-contact-actions .ckw-btn {
	min-width: 170px;
}

.ckw-contact-hero__panel {
	--ckw-inner-panel-number: "02";
}

.ckw-contact-hero__panel > .ckw-contact-hero__eyebrow {
	display: none;
}

.ckw-contact-hero__panel > strong {
	position: relative;
	display: block;
	margin-top: 10px;
	color: var(--ckw-white);
	font-size: 26px;
	font-weight: 900;
	line-height: 1.4;
}

.ckw-contact-hero__panel ul {
	position: relative;
	display: grid;
	margin: 22px 0 0;
	padding: 0;
	gap: 11px;
	list-style: none;
}

.ckw-contact-hero__panel li {
	position: relative;
	display: block;
	padding-inline-start: 28px;
	color: rgba(255, 255, 255, .7);
	font-size: 13px;
	line-height: 1.75;
}

.ckw-contact-hero__panel li::before {
	content: "✓";
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	color: var(--ckw-orange-400);
	font-size: 16px;
	font-weight: 900;
}

.ckw-contact-hero__panel li .ckw-icon {
	display: none;
}

/* =========================
   Shared page sections
   ========================= */

.ckw-contact-section {
	padding-block: 96px;
}

.ckw-contact-section--soft {
	background: var(--ckw-soft);
}

.ckw-contact-section--dark {
	background: var(--ckw-ink-950);
	color: rgba(255, 255, 255, .72);
}

.ckw-contact-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
	align-items: end;
	margin-bottom: 42px;
	gap: 50px;
}

.ckw-contact-heading h2 {
	max-width: 760px;
	margin: 9px 0 0;
	color: var(--ckw-ink-950);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: 1.32;
}

.ckw-contact-heading > p {
	margin: 0;
	color: var(--ckw-muted);
	font-size: 16px;
	line-height: 1.9;
}

.ckw-contact-section--dark .ckw-contact-heading h2 {
	color: var(--ckw-white);
}

.ckw-contact-section--dark .ckw-contact-heading > p {
	color: rgba(255, 255, 255, .62);
}

/* =========================
   Contact channels
   ========================= */

.ckw-contact-channel-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ckw-contact-channel {
	position: relative;
	display: flex;
	min-height: 245px;
	flex-direction: column;
	padding: 28px;
	overflow: hidden;
	border: 1px solid var(--ckw-line);
	border-radius: var(--ckw-radius-md);
	background: var(--ckw-white);
	color: var(--ckw-text);
	box-shadow: var(--ckw-shadow-sm);
	text-decoration: none;
	transition:
		transform .2s ease,
		border-color .2s ease,
		box-shadow .2s ease;
}

a.ckw-contact-channel:hover {
	border-color: rgba(255, 122, 0, .55);
	color: var(--ckw-text);
	box-shadow: var(--ckw-shadow-lg);
	transform: translateY(-5px);
}

.ckw-contact-channel--featured {
	border-color: var(--ckw-ink-950);
	background: var(--ckw-ink-950);
	color: rgba(255, 255, 255, .72);
}

a.ckw-contact-channel--featured:hover {
	color: rgba(255, 255, 255, .8);
}

.ckw-contact-channel__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 15px 5px 15px 5px;
	background: var(--ckw-orange-100);
	color: var(--ckw-orange-700);
}

.ckw-contact-channel--featured .ckw-contact-channel__icon {
	background: var(--ckw-orange-500);
	color: var(--ckw-ink-950);
}

.ckw-contact-channel__icon .ckw-icon {
	width: 27px;
	height: 27px;
}

.ckw-contact-channel small {
	display: block;
	margin-top: 25px;
	color: var(--ckw-orange-700);
	font-size: 12px;
	font-weight: 900;
}

.ckw-contact-channel--featured small {
	color: var(--ckw-orange-400);
}

.ckw-contact-channel strong {
	display: block;
	margin-top: 8px;
	color: var(--ckw-ink-950);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.ckw-contact-channel--featured strong {
	color: var(--ckw-white);
}

.ckw-contact-channel p {
	margin: 10px 0 0;
	color: var(--ckw-muted);
	font-size: 13px;
	line-height: 1.8;
}

.ckw-contact-channel--featured p {
	color: rgba(255, 255, 255, .58);
}

/* =========================
   Contact brief and services
   ========================= */

.ckw-contact-brief__grid {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	align-items: start;
	gap: clamp(50px, 8vw, 110px);
}

.ckw-contact-preparation h2 {
	margin: 10px 0 0;
	color: var(--ckw-white);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: 1.32;
}

.ckw-contact-preparation > p {
	max-width: 610px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, .62);
	line-height: 1.95;
}

.ckw-contact-preparation ol {
	display: grid;
	margin: 32px 0 0;
	padding: 0;
	gap: 0;
	counter-reset: contact-step;
	list-style: none;
}

.ckw-contact-preparation li {
	display: grid;
	grid-template-columns: 52px 1fr;
	padding-block: 19px;
	gap: 15px;
	border-top: 1px solid rgba(255, 255, 255, .11);
	counter-increment: contact-step;
}

.ckw-contact-preparation li::before {
	content: "0" counter(contact-step);
	color: var(--ckw-orange-400);
	font-size: 18px;
	font-weight: 900;
}

.ckw-contact-preparation li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.ckw-contact-preparation li strong {
	display: block;
	color: var(--ckw-white);
	font-size: 16px;
	font-weight: 900;
}

.ckw-contact-preparation li span {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, .55);
	font-size: 13px;
	line-height: 1.75;
}

.ckw-contact-service-panel {
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .025);
}

.ckw-contact-service-panel > header {
	padding: 24px 27px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ckw-contact-service-panel > header span {
	color: var(--ckw-orange-400);
	font-size: 12px;
	font-weight: 900;
}

.ckw-contact-service-panel > header h3 {
	margin: 6px 0 0;
	color: var(--ckw-white);
	font-size: 22px;
	font-weight: 900;
}

.ckw-contact-service-list {
	display: grid;
}

.ckw-contact-service-list a {
	display: grid;
	grid-template-columns: 48px 1fr 22px;
	align-items: center;
	min-height: 102px;
	padding: 18px 25px;
	gap: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	color: var(--ckw-white);
	text-decoration: none;
	transition: background-color .18s ease;
}

.ckw-contact-service-list a:last-child {
	border-bottom: 0;
}

.ckw-contact-service-list a:hover {
	background: rgba(255, 122, 0, .08);
	color: var(--ckw-white);
}

.ckw-contact-service-list a > .ckw-icon:first-child {
	width: 33px;
	height: 33px;
	color: var(--ckw-orange-400);
}

.ckw-contact-service-list a > .ckw-icon:last-child {
	width: 19px;
	height: 19px;
	color: rgba(255, 255, 255, .38);
}

.ckw-contact-service-list span {
	display: grid;
	gap: 5px;
}

.ckw-contact-service-list strong {
	color: var(--ckw-white);
	font-size: 16px;
	font-weight: 900;
}

.ckw-contact-service-list small {
	color: rgba(255, 255, 255, .52);
	font-size: 12px;
	line-height: 1.7;
}

/* =========================
   FAQ
   ========================= */

.ckw-contact-faq__grid {
	display: grid;
	grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(50px, 8vw, 105px);
}

.ckw-contact-faq__intro {
	position: sticky;
	top: 120px;
}

.ckw-contact-faq__intro h2 {
	margin: 9px 0 0;
	color: var(--ckw-ink-950);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: 1.32;
}

.ckw-contact-faq__intro p {
	margin: 20px 0 0;
	color: var(--ckw-muted);
	line-height: 1.9;
}

.ckw-contact-faq .ckw-accordion {
	--ckw-accordion-gap: 10px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 980px) {
	.ckw-contact-hero__grid,
	.ckw-contact-brief__grid,
	.ckw-contact-faq__grid {
		grid-template-columns: 1fr;
	}

	.ckw-contact-hero__copy {
		max-width: 820px;
	}

	.ckw-contact-hero__panel {
		max-width: 700px;
	}

	.ckw-contact-hero__grid {
		min-height: 0;
	}

	.ckw-contact-channel-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ckw-contact-heading {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 18px;
	}

	.ckw-contact-heading > p {
		max-width: 720px;
	}

	.ckw-contact-faq__intro {
		position: static;
		max-width: 720px;
	}
}

@media (max-width: 620px) {
	.ckw-contact-hero__copy h1 {
		font-size: 38px;
	}

	.ckw-contact-hero__copy > p {
		font-size: 15px;
	}

	.ckw-contact-hero__panel > strong {
		font-size: 24px;
	}

	.ckw-contact-section {
		padding-block: 66px;
	}

	.ckw-contact-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ckw-contact-actions .ckw-btn {
		width: 100%;
	}

	.ckw-contact-channel-grid {
		grid-template-columns: 1fr;
	}

	.ckw-contact-channel {
		min-height: 215px;
		padding: 25px 22px;
	}

	.ckw-contact-service-list a {
		grid-template-columns: 40px 1fr 18px;
		min-height: 94px;
		padding-inline: 18px;
	}

	.ckw-contact-preparation li {
		grid-template-columns: 42px 1fr;
	}

	.ckw-contact-faq .ckw-accordion summary {
		min-height: 68px;
		padding: 17px 18px;
		font-size: 15px;
	}

	.ckw-contact-faq .ckw-accordion details > :not(summary) {
		padding-inline: 18px;
	}
}
