/**
 * Interior Designer demo — editorial atelier theme
 *
 * Charcoal, terracotta & linen. Mood board + consultation booking split.
 * Style pills, project spotlight, design process (no card grids / no 3-col footer).
 */

:root {
	--demo-font-body: "Karla", system-ui, sans-serif;
	--demo-font-display: "Italiana", Georgia, serif;

	--demo-primary: #292524;
	--demo-primary-soft: #44403c;
	--demo-accent: #c4704a;
	--demo-accent-soft: #fdeee8;
	--demo-clay: #a16207;
	--demo-linen: #faf8f5;
	--demo-sand: #f5f0eb;
	--demo-heading: #1c1917;
	--demo-text: #57534e;
	--demo-muted: #78716c;
	--demo-bg: #faf8f5;
	--demo-surface: #ffffff;
	--demo-border: #e7e5e4;
	--demo-radius-lg: 2px;
	--demo-radius-md: 2px;
	--demo-shadow-sm: 0 8px 30px rgba(41, 37, 36, 0.06);
	--demo-shadow-md: 0 24px 60px rgba(41, 37, 36, 0.1);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.demo-interior-designer .demo-btn-primary {
	background: var(--demo-primary);
	color: #fff;
	border-radius: 0;
	font-weight: 600;
	font-size: 13px;
	padding: 14px 28px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.demo-interior-designer .demo-btn-primary:hover {
	background: var(--demo-primary-soft);
	transform: translateY(-2px);
	box-shadow: var(--demo-shadow-md);
}

.demo-interior-designer .demo-btn-outline {
	border: 1px solid var(--demo-primary);
	color: var(--demo-primary);
	border-radius: 0;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: transparent;
}

.demo-interior-designer .demo-btn-outline:hover {
	background: var(--demo-sand);
}

/* Studio bar */
.id-studio-bar {
	background: var(--demo-sand);
	color: var(--demo-text);
	padding: 10px 16px;
	font-size: 13px;
	text-align: center;
	border-bottom: 1px solid var(--demo-border);
	letter-spacing: 0.04em;
}

.id-studio-bar strong {
	color: var(--demo-accent);
}

/* Nav */
.id-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 248, 245, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--demo-border);
}

.id-nav.is-scrolled {
	box-shadow: var(--demo-shadow-sm);
}

.id-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
}

.id-brand strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 26px;
	font-weight: 400;
	color: var(--demo-heading);
	line-height: 1;
	letter-spacing: 0.02em;
}

.id-brand span {
	font-size: 10px;
	color: var(--demo-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.id-nav-links {
	display: flex;
	gap: 32px;
}

.id-nav-links a {
	font-size: 12px;
	font-weight: 600;
	color: var(--demo-text);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.id-nav-links a:hover {
	color: var(--demo-accent);
}

/* Hero */
.id-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: clamp(520px, 75vh, 680px);
}

.id-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 64px);
	background: var(--demo-linen);
}

.id-hero-tag {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--demo-accent);
	margin-bottom: 20px;
}

.id-hero-title {
	font-family: var(--demo-font-display);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 400;
	line-height: 1.08;
	color: var(--demo-heading);
	margin-bottom: 20px;
}

.id-hero-lead {
	font-size: 16px;
	color: var(--demo-muted);
	line-height: 1.75;
	margin-bottom: 32px;
	max-width: 420px;
}

.id-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.id-hero-img {
	position: relative;
	overflow: hidden;
}

.id-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.id-hero-caption {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: rgba(255, 255, 255, 0.92);
	font-size: 12px;
	font-weight: 600;
	color: var(--demo-heading);
	padding: 10px 16px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Styles */
.id-styles {
	padding: clamp(48px, 7vw, 72px) 0;
	background: var(--demo-surface);
	border-bottom: 1px solid var(--demo-border);
}

.id-styles-header {
	text-align: center;
	margin-bottom: 28px;
}

.id-styles-header h2 {
	font-family: var(--demo-font-display);
	font-size: 1.75rem;
	color: var(--demo-heading);
	margin-bottom: 8px;
}

.id-styles-header p {
	font-size: 14px;
	color: var(--demo-muted);
}

.id-style-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	max-width: 720px;
	margin: 0 auto;
}

.id-style-pill {
	padding: 14px 24px;
	border: 1px solid var(--demo-border);
	font-size: 13px;
	font-weight: 600;
	color: var(--demo-text);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: border-color 0.2s, background 0.2s;
}

.id-style-pill:hover {
	border-color: var(--demo-accent);
	background: var(--demo-accent-soft);
	color: var(--demo-accent);
}

/* Mood board + booking */
.id-booking-section {
	padding: clamp(56px, 8vw, 96px) 0;
	background: var(--demo-sand);
}

.id-booking-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 32px;
	align-items: start;
}

.id-moodboard {
	background: var(--demo-surface);
	border: 1px solid var(--demo-border);
	box-shadow: var(--demo-shadow-md);
	overflow: hidden;
}

.id-moodboard-header {
	padding: 20px 24px;
	border-bottom: 1px solid var(--demo-border);
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.id-moodboard-header h2 {
	font-family: var(--demo-font-display);
	font-size: 1.25rem;
	color: var(--demo-heading);
}

.id-moodboard-header span {
	font-size: 11px;
	font-weight: 600;
	color: var(--demo-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.id-moodboard-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	grid-template-rows: auto auto;
	gap: 8px;
	padding: 8px;
	background: var(--demo-linen);
}

.id-moodboard-main {
	grid-row: 1 / span 2;
	border-radius: 0;
	overflow: hidden;
}

.id-moodboard-main img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
}

.id-moodboard-swatch {
	padding: 16px;
	background: var(--demo-surface);
	border: 1px solid var(--demo-border);
}

.id-moodboard-swatch h3 {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--demo-muted);
	margin-bottom: 10px;
}

.id-swatch-row {
	display: flex;
	gap: 8px;
}

.id-swatch {
	width: 36px;
	height: 36px;
	border: 1px solid var(--demo-border);
}

.id-moodboard-notes {
	padding: 16px;
	background: var(--demo-surface);
	border: 1px solid var(--demo-border);
	font-size: 13px;
	color: var(--demo-text);
	line-height: 1.6;
}

.id-moodboard-notes strong {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--demo-muted);
	margin-bottom: 8px;
}

.id-moodboard-footer {
	padding: 16px 24px;
	font-size: 12px;
	color: var(--demo-muted);
	font-style: italic;
	border-top: 1px solid var(--demo-border);
}

.id-booking-panel {
	background: var(--demo-surface);
	border: 1px solid var(--demo-primary);
	box-shadow: var(--demo-shadow-md);
}

.id-booking-panel-header {
	padding: 28px 28px 0;
}

.id-booking-panel-header h2 {
	font-family: var(--demo-font-display);
	font-size: 1.65rem;
	color: var(--demo-heading);
	margin-bottom: 10px;
}

.id-booking-panel-header p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.65;
}

.id-booking-types {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 16px 28px 20px;
	border-bottom: 1px solid var(--demo-border);
}

.id-booking-type {
	font-size: 11px;
	font-weight: 700;
	color: var(--demo-primary);
	background: var(--demo-sand);
	border: 1px solid var(--demo-border);
	padding: 6px 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.id-booking-panel-body {
	padding: 24px 28px 28px;
}

.id-booking-panel .demo-shortcode-placeholder {
	border: 1px dashed var(--demo-border);
	background: var(--demo-linen);
	padding: 32px 24px;
	text-align: center;
}

/* Services */
.id-services {
	padding: clamp(56px, 8vw, 88px) 0;
	background: var(--demo-bg);
}

.id-services-header {
	text-align: center;
	max-width: 520px;
	margin: 0 auto 40px;
}

.id-services-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.75rem, 3vw, 2.2rem);
	color: var(--demo-heading);
}

.id-service-rows {
	max-width: 800px;
	margin: 0 auto;
}

.id-service-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px;
	padding: 22px 0;
	border-bottom: 1px solid var(--demo-border);
	align-items: start;
}

.id-service-row:last-child {
	border-bottom: none;
}

.id-service-row h3 {
	font-family: var(--demo-font-display);
	font-size: 1.15rem;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.id-service-row p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.6;
}

.id-service-row span {
	font-size: 12px;
	font-weight: 700;
	color: var(--demo-accent);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	white-space: nowrap;
	padding-top: 4px;
}

/* Project spotlight */
.id-project {
	padding: clamp(56px, 8vw, 88px) 0;
	background: var(--demo-primary);
	color: #e7e5e4;
}

.id-project-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
}

.id-project-eyebrow {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--demo-accent);
	margin-bottom: 12px;
}

.id-project h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.4rem);
	color: #fff;
	line-height: 1.15;
	margin-bottom: 16px;
}

.id-project-desc {
	font-size: 15px;
	color: #a8a29e;
	line-height: 1.7;
	margin-bottom: 24px;
}

.id-project-details {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.id-project-detail strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 20px;
	color: var(--demo-accent);
	margin-bottom: 2px;
}

.id-project-detail span {
	font-size: 12px;
	color: #78716c;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.id-project-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.id-project-images img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.id-project-images img:first-child {
	grid-row: 1 / span 2;
	aspect-ratio: auto;
	height: 100%;
}

/* Process */
.id-process {
	padding: clamp(56px, 8vw, 88px) 0;
	background: var(--demo-surface);
}

.id-process-header {
	text-align: center;
	margin-bottom: 48px;
}

.id-process-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.75rem, 3vw, 2.2rem);
	color: var(--demo-heading);
}

.id-process-list {
	max-width: 640px;
	margin: 0 auto;
}

.id-process-step {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 20px;
	padding-bottom: 32px;
	position: relative;
}

.id-process-step:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 23px;
	top: 48px;
	bottom: 0;
	width: 1px;
	background: var(--demo-border);
}

.id-process-step:last-child {
	padding-bottom: 0;
}

.id-process-num {
	width: 48px;
	height: 48px;
	border: 1px solid var(--demo-primary);
	display: grid;
	place-items: center;
	font-family: var(--demo-font-display);
	font-size: 18px;
	color: var(--demo-primary);
	background: var(--demo-surface);
	position: relative;
	z-index: 1;
}

.id-process-copy h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--demo-heading);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.id-process-copy p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.65;
}

/* Quote */
.id-quote {
	padding: clamp(56px, 7vw, 80px) 0;
	background: var(--demo-accent-soft);
	text-align: center;
}

.id-quote blockquote {
	font-family: var(--demo-font-display);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-style: italic;
	color: var(--demo-heading);
	max-width: 680px;
	margin: 0 auto 16px;
	line-height: 1.45;
}

.id-quote cite {
	font-size: 12px;
	font-weight: 700;
	color: var(--demo-accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-style: normal;
}

/* Press strip */
.id-press {
	padding: 20px 0;
	background: var(--demo-linen);
	border-block: 1px solid var(--demo-border);
}

.id-press-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 40px;
	font-size: 13px;
	font-weight: 700;
	color: var(--demo-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Footer */
.id-footer {
	background: var(--demo-heading);
	color: #a8a29e;
	padding: 40px 0 32px;
}

.id-footer-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 16px;
}

.id-footer-brand {
	font-family: var(--demo-font-display);
	font-size: 22px;
	color: #fff;
	margin-bottom: 4px;
}

.id-footer-tagline {
	font-size: 12px;
	color: #78716c;
}

.id-footer-contact {
	text-align: right;
	font-size: 14px;
}

.id-footer-contact a {
	color: var(--demo-accent);
	font-weight: 600;
}

.id-footer-meta {
	font-size: 11px;
	line-height: 1.7;
}

/* Mobile CTA */
.id-mobile-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 12px 20px;
	background: rgba(250, 248, 245, 0.96);
	border-top: 1px solid var(--demo-border);
}

.id-mobile-cta .demo-btn {
	width: 100%;
	justify-content: center;
}

/* Responsive */
@media (max-width: 960px) {
	.id-hero {
		grid-template-columns: 1fr;
	}

	.id-hero-img {
		min-height: 360px;
		order: -1;
	}

	.id-booking-grid,
	.id-project-grid,
	.id-project-images {
		grid-template-columns: 1fr;
	}

	.id-project-images img:first-child {
		grid-row: auto;
		aspect-ratio: 4 / 3;
		height: auto;
	}

	.id-moodboard-grid {
		grid-template-columns: 1fr;
	}

	.id-moodboard-main {
		grid-row: auto;
		min-height: 220px;
	}

	.id-nav-links {
		display: none;
	}

	.id-footer-contact {
		text-align: left;
	}
}

@media (max-width: 640px) {
	body.demo-interior-designer {
		padding-bottom: 72px;
	}
}
