/**
 * Photographer demo — editorial luxury portfolio theme
 *
 * Rich black, warm white & champagne gold.
 * Editorial inquiry booking split. No testimonial cards / no 3-col footer.
 */

:root {
	--demo-font-body: "Jost", system-ui, sans-serif;
	--demo-font-display: "Cormorant Garamond", Georgia, serif;

	--demo-primary: #0a0a0a;
	--demo-primary-soft: #1a1a1a;
	--demo-accent: #c9a962;
	--demo-accent-light: #dcc98a;
	--demo-heading: #0a0a0a;
	--demo-text: #3d3d3d;
	--demo-muted: #737373;
	--demo-bg: #faf8f5;
	--demo-bg-dark: #0a0a0a;
	--demo-surface: #ffffff;
	--demo-border: #e8e4dc;
	--demo-radius-lg: 2px;
	--demo-shadow-sm: 0 4px 24px rgba(10, 10, 10, 0.06);
	--demo-shadow-md: 0 24px 64px rgba(10, 10, 10, 0.14);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.demo-photo .demo-btn-primary {
	background: var(--demo-accent);
	color: var(--demo-primary);
	border-radius: 0;
	font-size: 12px;
	font-weight: 600;
	padding: 16px 32px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: none;
}

.demo-photo .demo-btn-primary:hover {
	background: var(--demo-accent-light);
	transform: translateY(-1px);
}

.demo-photo .demo-btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	border-radius: 0;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: transparent;
	padding: 16px 32px;
}

.demo-photo .demo-btn-outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.demo-photo .demo-btn-text {
	color: var(--demo-accent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Nav — transparent → solid */
.photo-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 24px 0;
	transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.photo-nav.is-scrolled {
	background: rgba(250, 248, 245, 0.96);
	backdrop-filter: blur(12px);
	padding: 16px 0;
	box-shadow: 0 1px 0 var(--demo-border);
}

.photo-nav.is-scrolled .photo-nav-links a,
.photo-nav.is-scrolled .photo-brand {
	color: var(--demo-heading);
}

.photo-nav.is-scrolled .photo-nav-cta {
	background: var(--demo-primary);
	color: #fff;
}

.photo-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.photo-brand {
	font-family: var(--demo-font-display);
	font-size: 1.375rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.06em;
}

.photo-nav-links {
	display: flex;
	gap: 36px;
}

.photo-nav-links a {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.photo-nav-links a:hover {
	color: var(--demo-accent);
}

.photo-nav-cta {
	padding: 12px 24px;
	font-size: 11px;
}

/* Hero — full bleed cinematic */
.photo-hero {
	min-height: 100vh;
	min-height: 100dvh;
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.photo-hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.2) 50%, rgba(10, 10, 10, 0.35) 100%),
		url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=80") center/cover;
}

.photo-hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: clamp(48px, 8vw, 80px) 0;
}

.photo-hero-eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--demo-accent);
	margin-bottom: 16px;
}

.photo-hero-title {
	font-family: var(--demo-font-display);
	font-size: clamp(3rem, 7vw, 5.5rem);
	line-height: 1.05;
	color: #fff;
	font-weight: 400;
	margin-bottom: 20px;
	max-width: 720px;
}

.photo-hero-lead {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	max-width: 420px;
	margin-bottom: 32px;
}

.photo-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.photo-hero-scroll {
	position: absolute;
	bottom: 32px;
	right: max(20px, calc((100vw - 1140px) / 2 + 20px));
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

/* Portfolio masonry */
.photo-portfolio {
	background: var(--demo-bg);
	padding: clamp(64px, 10vw, 100px) 0;
}

.photo-portfolio-header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.photo-portfolio-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--demo-heading);
	font-weight: 400;
}

.photo-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.photo-filter span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--demo-muted);
	cursor: default;
}

.photo-filter span.active {
	color: var(--demo-heading);
	border-bottom: 1px solid var(--demo-accent);
	padding-bottom: 4px;
}

.photo-masonry {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 12px;
}

.photo-masonry-item {
	overflow: hidden;
	position: relative;
	background: var(--demo-border);
}

.photo-masonry-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.photo-masonry-item:hover img {
	transform: scale(1.04);
}

.photo-masonry-item.a {
	grid-column: span 5;
	grid-row: span 2;
	min-height: 420px;
}

.photo-masonry-item.b {
	grid-column: span 4;
	min-height: 204px;
}

.photo-masonry-item.c {
	grid-column: span 3;
	min-height: 204px;
}

.photo-masonry-item.d {
	grid-column: span 4;
	min-height: 280px;
}

.photo-masonry-item.e {
	grid-column: span 5;
	min-height: 280px;
}

.photo-masonry-item.f {
	grid-column: span 3;
	grid-row: span 2;
	min-height: 420px;
}

.photo-masonry-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(transparent, rgba(10, 10, 10, 0.7));
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity 0.3s;
}

.photo-masonry-item:hover .photo-masonry-caption {
	opacity: 1;
}

/* Featured project */
.photo-featured {
	background: var(--demo-surface);
}

.photo-featured-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 12px;
	align-items: stretch;
}

.photo-featured-img {
	overflow: hidden;
	min-height: 480px;
}

.photo-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-featured-side {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 12px;
}

.photo-featured-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-featured-copy {
	max-width: 560px;
	margin-top: 40px;
}

.photo-featured-copy .label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--demo-accent);
	margin-bottom: 12px;
}

.photo-featured-copy h3 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: var(--demo-heading);
	margin-bottom: 16px;
	font-weight: 400;
	line-height: 1.2;
}

.photo-featured-copy p {
	font-size: 15px;
	color: var(--demo-muted);
	line-height: 1.75;
}

/* Services — editorial list */
.photo-services {
	background: var(--demo-bg);
	padding: clamp(56px, 8vw, 80px) 0;
}

.photo-services-list {
	border-top: 1px solid var(--demo-border);
}

.photo-service-row {
	display: grid;
	grid-template-columns: 200px 1fr auto;
	gap: 40px;
	align-items: baseline;
	padding: 32px 0;
	border-bottom: 1px solid var(--demo-border);
}

.photo-service-row h3 {
	font-family: var(--demo-font-display);
	font-size: 1.75rem;
	color: var(--demo-heading);
	font-weight: 400;
}

.photo-service-row p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.65;
	max-width: 480px;
}

.photo-service-from {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--demo-accent);
	white-space: nowrap;
}

/* Process — minimal line steps */
.photo-process {
	background: var(--demo-surface);
	padding: clamp(48px, 6vw, 72px) 0;
}

.photo-process-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.photo-process-item {
	position: relative;
	padding-top: 24px;
	border-top: 2px solid var(--demo-primary);
}

.photo-process-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--demo-accent);
	margin-bottom: 12px;
}

.photo-process-item h3 {
	font-family: var(--demo-font-display);
	font-size: 1.25rem;
	color: var(--demo-heading);
	margin-bottom: 8px;
	font-weight: 500;
}

.photo-process-item p {
	font-size: 13px;
	color: var(--demo-muted);
	line-height: 1.55;
}

/* ===== EDITORIAL INQUIRY BOOKING (unique) ===== */
.photo-inquiry {
	background: var(--demo-bg-dark);
	color: #fff;
	padding: clamp(72px, 10vw, 120px) 0;
	position: relative;
}

.photo-inquiry::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("https://images.unsplash.com/photo-1452587925148-ce544e77ee70?auto=format&fit=crop&w=1600&q=80") center/cover;
	opacity: 0.12;
}

.photo-inquiry-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 64px;
	align-items: start;
	position: relative;
	z-index: 1;
}

.photo-inquiry-copy {
	padding-top: 24px;
	position: sticky;
	top: 100px;
}

.photo-inquiry-copy h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	line-height: 1.1;
	font-weight: 400;
	margin-bottom: 24px;
}

.photo-inquiry-copy > p {
	font-size: 15px;
	line-height: 1.75;
	opacity: 0.75;
	margin-bottom: 32px;
	max-width: 400px;
}

.photo-inquiry-sessions {
	display: grid;
	gap: 16px;
	margin-bottom: 32px;
}

.photo-inquiry-session {
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.photo-inquiry-session strong {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--demo-accent);
	margin-bottom: 4px;
}

.photo-inquiry-session span {
	font-size: 13px;
	opacity: 0.65;
}

.photo-inquiry-note {
	font-size: 12px;
	opacity: 0.5;
	line-height: 1.6;
	font-style: italic;
}

.photo-inquiry-form-wrap {
	background: var(--demo-surface);
	color: var(--demo-heading);
	padding: clamp(36px, 5vw, 48px);
	box-shadow: var(--demo-shadow-md);
}

.photo-inquiry-form-header {
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--demo-border);
}

.photo-inquiry-form-header h3 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--demo-muted);
	margin-bottom: 8px;
}

.photo-inquiry-form-header p {
	font-family: var(--demo-font-display);
	font-size: 1.5rem;
	color: var(--demo-heading);
}

.demo-photo .photo-inquiry-form-wrap .bookora-wizard {
	max-width: none;
	margin: 0;
	box-shadow: none;
	border: none;
	--bookora-primary: #0a0a0a;
	--bookora-primary-dark: #000;
	--bookora-accent: #c9a962;
	--bookora-radius: 0;
}

.demo-photo .photo-inquiry-form-wrap .demo-shortcode-placeholder {
	border: 1px dashed var(--demo-border);
	padding: 40px 24px;
	text-align: center;
	background: var(--demo-bg);
}

/* About */
.photo-about {
	background: var(--demo-bg);
}

.photo-about-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
	align-items: center;
}

.photo-about-portrait {
	position: relative;
}

.photo-about-portrait img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	filter: grayscale(20%);
}

.photo-about-portrait-frame {
	position: absolute;
	top: 24px;
	left: 24px;
	right: -24px;
	bottom: -24px;
	border: 1px solid var(--demo-accent);
	pointer-events: none;
	z-index: -1;
}

.photo-about-copy h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	color: var(--demo-heading);
	margin-bottom: 8px;
	font-weight: 400;
}

.photo-about-role {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--demo-accent);
	margin-bottom: 24px;
}

.photo-about-copy p {
	font-size: 15px;
	color: var(--demo-muted);
	line-height: 1.8;
	margin-bottom: 16px;
}

.photo-about-press {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--demo-border);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--demo-muted);
	line-height: 1.8;
}

/* Quote on image — NOT testimonial cards */
.photo-quote {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.photo-quote-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.55)),
		url("https://images.unsplash.com/photo-1465495976277-0e068229c7f0?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.photo-quote-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 720px;
	padding: 48px 24px;
}

.photo-quote-inner q {
	display: block;
	font-family: var(--demo-font-display);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	line-height: 1.5;
	color: #fff;
	font-style: italic;
	margin-bottom: 20px;
}

.photo-quote-inner cite {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--demo-accent);
	font-style: normal;
}

/* Good to know — inline, not FAQ accordion */
.photo-know {
	background: var(--demo-surface);
	padding: clamp(48px, 6vw, 64px) 0;
	border-top: 1px solid var(--demo-border);
}

.photo-know-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.photo-know-item h3 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--demo-heading);
	margin-bottom: 10px;
}

.photo-know-item p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.65;
}

/* Minimal footer — NOT 3-column grid */
.photo-footer {
	background: var(--demo-primary);
	color: rgba(255, 255, 255, 0.6);
	padding: 48px 0 32px;
	text-align: center;
}

.photo-footer-brand {
	font-family: var(--demo-font-display);
	font-size: 1.75rem;
	color: #fff;
	margin-bottom: 20px;
	font-weight: 400;
	letter-spacing: 0.04em;
}

.photo-footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 24px;
	margin-bottom: 24px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.photo-footer-links a {
	color: rgba(255, 255, 255, 0.7);
}

.photo-footer-links a:hover {
	color: var(--demo-accent);
}

.photo-footer-meta {
	font-size: 11px;
	opacity: 0.45;
	line-height: 1.6;
}

/* Mobile CTA */
.photo-mobile-cta {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	display: none;
}

.photo-mobile-cta .demo-btn {
	width: 100%;
	box-shadow: var(--demo-shadow-md);
}

@media (max-width: 1024px) {
	.photo-masonry {
		grid-template-columns: repeat(6, 1fr);
	}

	.photo-masonry-item.a,
	.photo-masonry-item.b,
	.photo-masonry-item.c,
	.photo-masonry-item.d,
	.photo-masonry-item.e,
	.photo-masonry-item.f {
		grid-column: span 6;
		grid-row: span 1;
		min-height: 280px;
	}

	.photo-featured-grid,
	.photo-about-grid,
	.photo-inquiry-grid {
		grid-template-columns: 1fr;
	}

	.photo-inquiry-copy {
		position: static;
	}

	.photo-featured-side {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.photo-service-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.photo-process-row,
	.photo-know-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.photo-nav-links {
		display: none;
	}

	.photo-hero-scroll {
		display: none;
	}

	.photo-filter {
		gap: 12px;
	}

	.photo-mobile-cta {
		display: block;
	}

	body.demo-photo {
		padding-bottom: 80px;
	}
}
