:root {
	--bg: #eeecea;
	--ink: #212024;
	--soft-ink: #38363b;
	--muted-gold: #ad8f68;
	--line: #c9c5c2;
	--white: #ffffff;
	--section-space: clamp(90px, 10vw, 148px);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { width: 100%; overflow-x: clip; }

body {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.4;
}

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; height: auto; }

/* ── LENIS ──────────────────────────────── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ── HEADER ─────────────────────────────── */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(238, 236, 234, 0.96);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(180,170,160,0.25);
	height: 66px;
	transition: box-shadow 300ms var(--ease);
}

.site-header.scrolled {
	box-shadow: 0 2px 24px rgba(30, 28, 26, 0.08);
}

.header-inner {
	max-width: 1510px;
	height: 66px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}

.logo {
	font-size: clamp(22px, 2vw, 34px);
	letter-spacing: 0.1em;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	color: #5a5448;
	line-height: 1;
	justify-self: start;
}

.main-nav {
	display: flex;
	gap: clamp(16px, 2.4vw, 36px);
	justify-self: center;
	white-space: nowrap;
}

.main-nav a {
	font-size: 11px;
	letter-spacing: 0.1em;
	color: #5a5448;
	position: relative;
	transition: opacity 220ms var(--ease);
	text-transform: uppercase;
}

.main-nav a::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--muted-gold);
	transition: width 300ms var(--ease);
}

.main-nav a:hover { opacity: 0.6; }
.main-nav a:hover::after { width: 100%; }

.header-tools {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-tools a {
	margin: 0 0 0 5px;
}
.header-tools a i {
	color: #5a5448;
	font-size: 15px;
}

.icon-btn {
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border: 0;
	background: transparent;
	color: #5a5448;
	cursor: pointer;
	opacity: 0.75;
	transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.icon-btn:hover { opacity: 1; transform: translateY(-1px); }

.icon-btn svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bag-count { font-size: 11px; letter-spacing: 0.02em; color: #5a5448; }

/* ── HERO ───────────────────────────────── */

.hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	overflow: hidden;
	background: #c8c3bc;
	margin-top: -2px;
	cursor: none;
}

.hero-slides { 
	position: absolute; 
	inset: 0; 
	animation: heroRevealUp 1600ms cubic-bezier(0.8, 0, 0.2, 1) both;
}

@keyframes heroRevealUp {
	0%   { clip-path: inset(100% 0 0 0); }
	100% { clip-path: inset(0 0 0 0); }
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1400ms var(--ease), visibility 1400ms var(--ease);
}

.hero-slide.is-active { 
	opacity: 1; 
	visibility: visible; 
}

.hero-overlay { display: none; }

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	transform-origin: center;
}

.hero-copy {
	position: absolute;
	left: min(6vw, 90px);
	bottom: clamp(60px, 10vh, 130px);
	color: #000;
	z-index: 4;
}

.hero.hero-reveal-complete .hero-copy {
	color: #f5f3f0;
}

.hero-copy h1 {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	line-height: 0.95;
	font-size: clamp(52px, 6.5vw, 100px);
	letter-spacing: 0.05em;
}

.hero-copy h1 .line-wrap {
	display: block;
	overflow: hidden;
}

.hero-copy h1 .line-wrap em {
	display: block;
	font-style: normal;
	animation: heroLineUp 1000ms var(--ease) both;
}

.hero-copy h1 .line-wrap:nth-child(1) em { animation-delay: 100ms; }
.hero-copy h1 .line-wrap:nth-child(2) em {
	animation-delay: 250ms;
	margin-left: clamp(40px, 6vw, 120px);
}
.hero-copy h1 .line-wrap:nth-child(3) em {
	animation-delay: 400ms;
	margin-left: clamp(80px, 12vw, 240px);
}

.hero-copy h1 .line-wrap em.serif-text {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.01em;
	font-size: 1.25em;
}

@keyframes heroLineUp {
	from { transform: translateY(110%); opacity: 0; }
	to   { transform: translateY(0);    opacity: 1; }
}

.hero-cursor {
	position: absolute;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.75);
	color: #fff;
	pointer-events: none;
	font-size: 20px;
	display: grid;
	place-items: center;
	z-index: 10;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.8);
	transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.hero-cursor.show {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* ── PHILOSOPHY ─────────────────────────── */

.philosophy {
	padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
	background: var(--bg);
	overflow: hidden;
}

.philosophy-title {
	text-align: center;
	margin-bottom: clamp(40px, 6vw, 80px);
}

.philosophy-title h2 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-size: clamp(60px, 9vw, 130px);
	line-height: 0.88;
	letter-spacing: 0.01em;
	color: var(--ink);
	display: grid;
}

.philosophy-title h2 span:first-child {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	font-size: 0.52em;
	letter-spacing: 0.12em;
	line-height: 1.4;
	color: #7a7470;
}

.philosophy-collage {
	position: relative;
	display: grid;
	grid-template-columns: 1fr minmax(0, 55vw) 1fr;
	align-items: flex-start;
	min-height: clamp(600px, 75vw, 1100px);
	padding-bottom: 80px;
}

.philo-left {
	position: relative;
	align-self: center;
	margin-top: 15%;
	transform: translateX(20%);
	z-index: 1;
}

.philo-left img {
	width: 100%;
	height: clamp(260px, 30vw, 500px);
	object-fit: cover;
	object-position: center;
}

.philo-main {
	position: relative;
	z-index: 2;
}

.philo-main img {
	width: 100%;
	height: clamp(600px, 72vw, 1040px);
	object-fit: cover;
	object-position: center top;
}

.philo-right {
	position: relative;
	align-self: center;
	margin-top: -15%;
	transform: translateX(-20%);
	z-index: 1;
}

.philo-right img {
	width: 100%;
	height: clamp(240px, 28vw, 460px);
	object-fit: cover;
	object-position: center;
}

.philo-left,
.philo-right,
.philo-main { overflow: hidden; }

.philo-left img,
.philo-right img,
.philo-main img {
	transition: transform 700ms var(--ease);
}

.philo-left:hover img,
.philo-right:hover img,
.philo-main:hover img { transform: scale(1.04); }

.philo-chair {
	position: absolute;
	right: calc(50% - 55vw/2 - 80px);
	bottom: 90px;
	width: clamp(160px, 15vw, 280px);
	z-index: 5;
	pointer-events: none;
}

.philosophy-copy {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(40px, 7vw, 90px) clamp(24px, 5vw, 80px) 0;
	display: grid;
	gap: 44px;
	justify-items: start;
}

.philosophy-copy p {
	font-size: clamp(22px, 2.6vw, 44px);
	line-height: 1.3;
	color: #2a292d;
	font-weight: 300;
	max-width: 960px;
}

/* ── CIRCLE BUTTON ──────────────────────── */

.circle-btn {
	display: inline-grid;
	place-items: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--muted-gold);
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-align: center;
	transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), background 250ms var(--ease);
}

.circle-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 32px rgba(173,143,104,0.3);
	background: #9e7e57;
}

/* ── SECTION TITLES ───────────────────── */

.products,
.projects-section {
	padding: var(--section-space) 0;
}

.section-title {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
	margin-bottom: clamp(32px, 5vw, 64px);
}

.section-title.centered { text-align: center; }

.section-title h2 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-size: clamp(56px, 8.5vw, 118px);
	line-height: 0.85;
	display: inline-grid;
	letter-spacing: 0.01em;
}

.section-title h2 span:first-child {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	font-size: 0.64em;
	line-height: 1;
	margin-left: 0.13em;
	letter-spacing: 0.06em;
	color: #7a7470;
}

/* ── OUR PROCESS ───────────────────────── */

.our-process {
	padding: clamp(80px, 10vw, 130px) 24px clamp(70px, 9vw, 120px);
	background: #f7f5f2;
}

.process-intro {
	max-width: 980px;
	margin: 0 auto clamp(42px, 5vw, 64px);
	text-align: center;
}

.process-intro p {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(34px, 4.2vw, 56px);
	line-height: 1.05;
	color: #b39a72;
	margin-bottom: clamp(26px, 3vw, 40px);
}

.process-intro h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(44px, 4.4vw, 62px);
	font-weight: 500;
	color: #b39a72;
}

.process-grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid #d7cec1;
	border-bottom: 1px solid #d7cec1;
}

.process-card {
	padding: clamp(26px, 2.4vw, 34px) clamp(18px, 2vw, 28px);
}

.process-card:not(:last-child) {
	border-right: 1px solid #d7cec1;
}

.process-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
	color: #b39a72;
}

.process-icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
	stroke-width: 1.4;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.process-step {
	display: block;
	font-size: 11px;
	letter-spacing: 0.08em;
	color: #b39a72;
	margin-bottom: 8px;
}

.process-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(24px, 2vw, 32px);
	color: #a8926e;
	margin-bottom: 10px;
	font-weight: 500;
}

.process-card p {
	font-size: 16px;
	line-height: 1.55;
	color: #686461;
	max-width: 280px;
}

/* ── SEAMLESS EXPERIENCE ──────────────── */

.seamless-experience {
	padding: clamp(80px, 10vw, 140px) 24px;
	background-color: #fff;
	text-align: center;
}

.seamless-header h2 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-size: clamp(38px, 4.5vw, 64px);
	color: #cba063;
	margin-bottom: 12px;
	letter-spacing: 0.02em;
}

.seamless-header p {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	font-size: clamp(14px, 1.4vw, 18px);
	color: #7a7470;
	margin-bottom: clamp(40px, 6vw, 60px);
}

.before-after-slider {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	height: clamp(400px, 50vw, 650px);
	overflow: hidden;
	background: #e4e0db;
}

.image-before, .image-after {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.image-before img, .image-after img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.image-after {
	clip-path: polygon(0 0, var(--clip, 50%) 0, var(--clip, 50%) 100%, 0 100%);
}

.slider-range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
	z-index: 10;
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
}

.slider-thumb {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--clip, 50%);
	width: 2px;
	background: #fff;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 5;
}

.slider-thumb::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid #c8c3bc;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.slider-thumb svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	color: #a78c68;
	z-index: 2;
}

.seamless-footer {
	margin-top: clamp(40px, 6vw, 60px);
}

.seamless-footer p {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	font-size: clamp(14px, 1.4vw, 18px);
	color: #7a7470;
	margin-bottom: 28px;
}

/* ── ABOUT US ───────────────────────────── */

.about-us {
	background-color: #f9f9f9;
	padding: clamp(80px, 12vw, 160px) 0;
}

.about-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 0.8fr 1fr;
	gap: clamp(40px, 8vw, 100px);
	align-items: center;
}

.about-image-col {
	position: relative;
	overflow: hidden;
	border-radius: 30px;
}

.about-image-col img {
	width: 100%;
	height: clamp(450px, 50vw, 700px);
	object-fit: cover;
	display: block;
}

.about-text-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

.about-title {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-size: clamp(44px, 5vw, 72px);
	color: #cba063;
	line-height: 1;
	margin-bottom: 8px;
}

.about-desc {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.6;
	color: #3b3a38;
}

.about-btn {
	display: inline-block;
	margin-top: 12px;
	padding: 14px 40px;
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: 0.15em;
	color: #cba063;
	border: 1px solid #cba063;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 250ms var(--ease), color 250ms var(--ease), transform 250ms var(--ease);
}

.about-btn:hover {
	background: #cba063;
	color: #fff;
}

@media (max-width: 960px) {
	.about-container {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.about-image-col img {
		height: clamp(380px, 60vw, 500px);
	}
}

/* ── PROJECTS (Main Page) ───────────────── */

.projects-hero {
	overflow: hidden;
	height: clamp(280px, 42vw, 580px);
	position: relative;
}

.projects-hero img {
	width: 100%;
	height: 115%;
	object-fit: cover;
	object-position: center;
}

.projects-grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"left top"
		"left bottom"
		"copy bottom";
	gap: clamp(20px, 2vw, 36px);
}

.project-large { grid-area: left; overflow: hidden; }
.project-top   { grid-area: top; overflow: hidden; }
.project-bottom{ grid-area: bottom; overflow: hidden; }

.project-copy { grid-area: copy; padding: 0; align-content: start; }

.projects-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 300px;
	transition: transform 700ms var(--ease);
}

.project-large:hover img,
.project-top:hover img,
.project-bottom:hover img { transform: scale(1.04); }

.project-large img  { min-height: 820px; }
.project-top img,
.project-bottom img { min-height: 380px; }

.project-copy,
.project-copy p {
	font-size: clamp(22px, 2vw, 36px);
	line-height: 1.3;
	max-width: 620px;
	padding: 0;
	gap: 36px;
	display: grid;
	justify-items: start;
	align-content: start;
}

/* ── MARQUEE ────────────────────────────── */

.marquee-wrap {
	padding: clamp(48px, 7vw, 88px) 0 24px;
	overflow: hidden;
	white-space: nowrap;
}

.marquee {
	display: inline-flex;
	gap: 48px;
	animation: scrollText 34s linear infinite;
}

.marquee span {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-size: clamp(90px, 12vw, 240px);
	line-height: 0.88;
	color: #1f1e22;
}

@keyframes scrollText {
	0%   { transform: translateX(0%);   }
	100% { transform: translateX(-50%); }
}

/* ── FOOTER ─────────────────────────────── */

.site-footer {
	padding: clamp(54px, 9vw, 130px) 24px 56px;
	background: var(--bg);
}

.newsletter {
	max-width: 680px;
	margin: 0 auto 30px;
	text-align: center;
}

.newsletter img{
	 width:160px;
}

.newsletter h3 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-size: clamp(40px, 4.4vw, 68px);
	line-height: 0.9;
	color: #b1916d;
	margin-bottom: 22px;
}

.newsletter-form {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	border-bottom: 1px solid #c4b8a8;
	padding-bottom: 10px;
	gap: 12px;
	margin-bottom: 12px;
}

.newsletter-form input {
	border: 0;
	outline: none;
	background: transparent;
	font-size: 13px;
	color: #2a292d;
	padding: 5px 0;
	letter-spacing: 0.06em;
	font-family: 'Jost', sans-serif;
}

.newsletter-form input::placeholder {
	color: #b8a893;
	letter-spacing: 0.1em;
	font-size: 11px;
}

.newsletter-form button {
	border: 0;
	background: transparent;
	color: #b1916d;
	font-size: 11px;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: color 200ms var(--ease);
	font-family: 'Jost', sans-serif;
}

.newsletter-form button:hover { color: #8a6e4a; }

.privacy-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	color: #a49178;
	letter-spacing: 0.03em;
	justify-content: center;
}

.footer-grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 0.8fr;
	gap: clamp(24px, 3vw, 54px);
	color: #a38c6f;
	border-top: 1px solid #ccc4b8;
	padding-top: 48px;
}

.footer-grid h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 14px;
	color: #7a6a58;
}

.footer-grid p,
.footer-grid a {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	line-height: 1.6;
	transition: color 200ms var(--ease);
	text-decoration: none;
	color: #a38c6f;
}

.footer-grid a:hover { color: #7a6245; }

.footer-meta {
	max-width: 1280px;
	margin: 32px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	color: #a08a6f;
	font-size: 12px;
	letter-spacing: 0.02em;
}

.payment-strip {
	height: 38px;
	object-fit: contain;
}

/* ── SCROLL REVEAL (Global) ──────────────── */

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BACK TO TOP (Global) ────────────────── */

.to-top {
	position: fixed;
	right: 14px;
	bottom: 14px;
	width: 32px;
	height: 32px;
	border: 1px solid #c2bdb7;
	background: rgba(238,236,234,0.9);
	color: #7d7368;
	cursor: pointer;
	z-index: 42;
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms var(--ease), transform 260ms var(--ease);
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-2px); }

/* ── RESPONSIVE 1200px ──────────────────── */

@media (max-width: 1200px) {
	.main-nav { display: none; }
	.header-inner { grid-template-columns: 1fr auto; }

	.philosophy-collage {
		grid-template-columns: 0 1fr 0;
	}

	.philo-left,
	.philo-right { display: none; }

	.philo-chair { right: 20px; }

	.products-shell { grid-template-columns: 1fr; padding-right: 0; }
	.all-products   { margin: 12px auto 0; }

	.projects-grid {
		grid-template-columns: 1fr;
		grid-template-areas: "left" "top" "bottom" "copy";
	}

	.project-large img,
	.project-top img,
	.project-bottom img { min-height: 0; }

	.process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.process-card:nth-child(2n) { border-right: 0; }
	.process-card:nth-child(-n+2) { border-bottom: 1px solid #d7cec1; }

	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-meta { flex-direction: column; align-items: flex-start; }
}

/* ── RESPONSIVE 720px ───────────────────── */

@media (max-width: 720px) {
	.site-header,
	.header-inner { height: 60px; }

	.logo { font-size: 22px; }

	.hero { cursor: auto; }
	.hero-copy { left: 20px; bottom: 60px; }
	.hero-copy h1 { font-size: clamp(44px, 12vw, 72px); }
	.hero-copy h1 .line-wrap:nth-child(2) em { margin-left: 40px; }
	.hero-cursor { display: none; }

	.philosophy-title h2 { font-size: clamp(52px, 14vw, 90px); }
	.philosophy-copy p   { font-size: 22px; }

	.process-grid { grid-template-columns: 1fr; }
	.process-card { border-right: 0 !important; }
	.process-card:not(:last-child) { border-bottom: 1px solid #d7cec1; }

	.product-card h3 { font-size: 44px; }
	.footer-grid     { grid-template-columns: 1fr; }
}

/* ── REDUCED MOTION ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.reveal { transition: none !important; }
	.philo-chair { animation: none; }
	.marquee { animation-duration: 120s; }
	.hero-copy h1 .line-wrap em { animation: none; opacity: 1; transform: none; }
	.philo-left img,
	.philo-right img,
	.philo-main img,
	.projects-grid img { transition: none !important; }
}

/* ============================================ */
/* ===== ABOUT PAGE EXCLUSIVE STYLES ========= */
/* ============================================ */

.about-page-main {
	background: var(--bg, #eeecea);
	overflow-x: clip;
}

/* Hero with Cinematic Reveal */
.about-story-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #12100e;
	margin-top: -2px;
	overflow: hidden;
	isolation: isolate;
}
.about-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
	filter: grayscale(0.15) contrast(1.08);
	transform: scale(1.02);
	transition: transform 10s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	will-change: transform;
}
.about-story-hero:hover .about-hero-bg {
	transform: scale(1.08);
}
.about-hero-content {
	position: relative;
	z-index: 3;
	max-width: 1200px;
	text-align: center;
	padding: 2rem 1.5rem;
	animation: heroFadeGlow 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}
@keyframes heroFadeGlow {
	0% { opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(8px); }
	100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.about-hero-content h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(64px, 11vw, 150px);
	font-weight: 400;
	color: #f8f5ef;
	line-height: 1;
	letter-spacing: -0.01em;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 20px rgba(0,0,0,0.3);
	animation: textGlide 1s ease-out 0.2s both;
}
@keyframes textGlide {
	from { opacity: 0; transform: translateX(-30px); }
	to { opacity: 1; transform: translateX(0); }
}
.about-hero-tagline {
	font-family: 'Jost', sans-serif;
	font-size: clamp(13px, 2vw, 17px);
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #ecd9b4;
	background: rgba(18,16,14,0.6);
	display: inline-block;
	padding: 0.7rem 2rem;
	backdrop-filter: blur(8px);
	border-radius: 60px;
	animation: taglineRise 0.9s cubic-bezier(0.2, 0.9, 0.4, 1) 0.4s both;
}
@keyframes taglineRise {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Heritage Section */
.heritage-section {
	padding: clamp(90px, 12vw, 160px) 24px;
	background: var(--bg, #eeecea);
}
.heritage-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 7vw, 100px);
	align-items: center;
}
.heritage-text {
	padding-right: 2rem;
}
.heritage-label {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: 0.24em;
	color: #b39a72;
	text-transform: uppercase;
	margin-bottom: 1.2rem;
	display: inline-block;
	animation: slideFadeIn 0.7s ease both;
	animation-delay: 0.1s;
}
.heritage-text h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(42px, 5vw, 78px);
	font-weight: 400;
	line-height: 1.1;
	color: #212024;
	margin-bottom: 2rem;
	animation: slideFadeIn 0.8s ease both;
	animation-delay: 0.2s;
}
.heritage-text p {
	font-family: 'Jost', sans-serif;
	font-size: 1.15rem;
	line-height: 1.65;
	color: #3b3a38;
	margin-bottom: 1.8rem;
	font-weight: 300;
	animation: slideFadeIn 0.8s ease both;
	animation-delay: 0.3s;
}
.heritage-text p:last-of-type {
	animation-delay: 0.4s;
}
@keyframes slideFadeIn {
	from { opacity: 0; transform: translateX(-28px); }
	to { opacity: 1; transform: translateX(0); }
}
.heritage-image {
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 30px 45px -20px rgba(0,0,0,0.3);
	transform: translateY(30px);
	opacity: 0;
	animation: imageFloatReveal 1s cubic-bezier(0.2, 0.9, 0.4, 1) 0.3s forwards;
}
@keyframes imageFloatReveal {
	0% { opacity: 0; transform: translateY(50px) scale(0.96); }
	100% { opacity: 1; transform: translateY(0) scale(1); }
}
.heritage-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.4, 1);
}
.heritage-image:hover img {
	transform: scale(1.04);
}

/* Values Pillars */
.values-section {
	background: #f7f3ef;
	padding: clamp(80px, 10vw, 130px) 24px;
}
.section-header-center {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 4rem;
}
.section-header-center h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(38px, 4.6vw, 68px);
	font-weight: 400;
	color: #cba063;
	margin-bottom: 1rem;
	animation: gentleRise 0.7s ease both;
}
.section-header-center p {
	font-size: 1.05rem;
	color: #6f685f;
	font-weight: 300;
	animation: gentleRise 0.7s 0.15s both;
}
@keyframes gentleRise {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
.pillars-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.pillar-card {
	background: #ffffffd9;
	padding: 2.4rem 1.8rem;
	border-radius: 2rem;
	transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
	border: 1px solid #e7dfd6;
	text-align: center;
	opacity: 0;
	transform: translateY(40px);
	animation: cardPop 0.7s cubic-bezier(0.2, 0.85, 0.4, 1) forwards;
}
.pillar-card:nth-child(1) { animation-delay: 0.1s; }
.pillar-card:nth-child(2) { animation-delay: 0.25s; }
.pillar-card:nth-child(3) { animation-delay: 0.4s; }
@keyframes cardPop {
	0% { opacity: 0; transform: translateY(50px) scale(0.94); }
	100% { opacity: 1; transform: translateY(0) scale(1); }
}
.pillar-card:hover {
	transform: translateY(-12px) scale(1.01);
	background: #fff;
	box-shadow: 0 28px 38px -16px rgba(0,0,0,0.12);
	border-color: #cfbea7;
}
.pillar-icon {
	font-size: 52px;
	color: #cba063;
	margin-bottom: 1.8rem;
	display: inline-block;
	transition: transform 0.3s ease;
}
.pillar-card:hover .pillar-icon {
	transform: scale(1.08) rotate(2deg);
}
.pillar-card h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 0.75rem;
	color: #2c2a29;
}
.pillar-card p {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #5f5b56;
}

/* Team Section */
.team-spirit {
	padding: clamp(80px, 10vw, 140px) 24px;
	background: var(--bg);
}
.team-collage {
	max-width: 1380px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.8rem;
}
.team-member {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	aspect-ratio: 3/4;
	opacity: 0;
	transform: scale(0.92) translateY(20px);
	animation: teamFadeIn 0.8s cubic-bezier(0.2, 0.9, 0.4, 1) forwards;
	box-shadow: 0 12px 20px -12px rgba(0,0,0,0.2);
	transition: all 0.4s ease;
}
.team-member:nth-child(1) { animation-delay: 0.05s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.35s; }
.team-member:nth-child(4) { animation-delay: 0.5s; }
@keyframes teamFadeIn {
	0% { opacity: 0; transform: scale(0.92) translateY(35px); }
	100% { opacity: 1; transform: scale(1) translateY(0); }
}
.team-member:hover {
	transform: translateY(-8px) scale(1.01);
	box-shadow: 0 28px 36px -16px rgba(0,0,0,0.25);
}
.team-member img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.4, 1);
	filter: brightness(0.98);
}
.team-member:hover img {
	transform: scale(1.06);
	filter: brightness(1.02);
}
.member-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
	padding: 1rem 1rem 1.3rem;
	color: #fff;
	transform: translateY(12px);
	transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
	opacity: 0.9;
}
.team-member:hover .member-caption {
	transform: translateY(0);
}
.member-caption strong {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	display: block;
}
.member-caption span {
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.85;
}

/* Stats Section */
.global-footprint {
	background: #21201e;
	color: #e8dfd4;
	padding: 70px 24px 90px;
}
.stats-grid {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3rem;
	text-align: center;
}
.stat-item {
	flex: 1;
	min-width: 160px;
	opacity: 0;
	transform: translateY(20px);
	animation: statSlide 0.7s cubic-bezier(0.2, 0.9, 0.4, 1) forwards;
}
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.25s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }
.stat-item:nth-child(4) { animation-delay: 0.55s; }
@keyframes statSlide {
	from { opacity: 0; transform: translateY(35px); }
	to { opacity: 1; transform: translateY(0); }
}
.stat-number {
	font-family: 'Cormorant Garamond', serif;
	font-size: 4.2rem;
	font-weight: 500;
	color: #e2cfb0;
	line-height: 1;
}
.stat-label {
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-top: 0.75rem;
}

/* About CTA */
.about-cta {
	padding: 90px 24px;
	background: #e2d6cb;
	text-align: center;
	position: relative;
	isolation: isolate;
}
.about-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(192,165,120,0.08), transparent);
	pointer-events: none;
}
.about-cta h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 400;
	color: #2f2c28;
	max-width: 750px;
	margin: 0 auto 2rem;
	animation: ctaGlow 1.1s ease both;
}
@keyframes ctaGlow {
	0% { opacity: 0; transform: scale(0.96); filter: blur(2px);}
	100% { opacity: 1; transform: scale(1); filter: blur(0);}
}
.cta-button {
	display: inline-block;
	background: transparent;
	border: 1.5px solid #a0815e;
	padding: 14px 48px;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: #5d4b32;
	text-transform: uppercase;
	transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
	position: relative;
	overflow: hidden;
	text-decoration: none;
}
.cta-button::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #a0815e;
	transition: left 0.45s cubic-bezier(0.2, 1, 0.4, 1);
	z-index: -1;
}
.cta-button:hover {
	color: #fff;
	border-color: #a0815e;
}
.cta-button:hover::after {
	left: 0;
}
.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px -8px rgba(0,0,0,0.2);
}

/* About Page Responsive */
@media (max-width: 1000px) {
	.heritage-grid {
		grid-template-columns: 1fr;
	}
	.heritage-text {
		padding-right: 0;
		order: 2;
	}
	.pillars-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.team-collage {
		grid-template-columns: repeat(2, 1fr);
	}
	.stats-grid {
		flex-direction: column;
		gap: 2rem;
	}
}
@media (max-width: 640px) {
	.team-collage {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.pillar-card {
		padding: 1.8rem;
	}
}

/* ============================================ */
/* ===== CONTACT PAGE EXCLUSIVE STYLES ======= */
/* ============================================ */

.contact-page-main {
	background: var(--bg, #eeecea);
	overflow-x: clip;
}

.contact-hero {
	position: relative;
	min-height: 55vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1e1c1a;
	margin-top: -2px;
	overflow: hidden;
	isolation: isolate;
}
.contact-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.48;
	filter: grayscale(0.2) contrast(1.05);
	transform: scale(1.02);
	transition: transform 12s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.contact-hero:hover .contact-hero-bg {
	transform: scale(1.07);
}
.contact-hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	padding: 2rem 1.5rem;
	animation: heroContactRise 1s cubic-bezier(0.2, 0.9, 0.4, 1) forwards;
}
@keyframes heroContactRise {
	0% { opacity: 0; transform: translateY(45px) scale(0.96); filter: blur(6px); }
	100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.contact-hero h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(64px, 9vw, 130px);
	font-weight: 400;
	color: #f8f5ef;
	line-height: 1;
	letter-spacing: -0.01em;
	margin-bottom: 1rem;
	text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.contact-hero-sub {
	font-family: 'Jost', sans-serif;
	font-size: clamp(13px, 2vw, 17px);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #e2cfb0;
	background: rgba(30,28,26,0.55);
	display: inline-block;
	padding: 0.6rem 2rem;
	backdrop-filter: blur(5px);
	border-radius: 60px;
}

.contact-grid-section {
	padding: clamp(70px, 10vw, 120px) 24px;
	background: var(--bg);
}
.contact-container {
	max-width: 1380px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 0.9fr;
	gap: clamp(40px, 6vw, 90px);
}
.contact-form-wrapper {
	background: #ffffffcc;
	backdrop-filter: blur(2px);
	padding: 2.4rem 2rem 2.8rem;
	border-radius: 32px;
	box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
	border: 1px solid #e2d9cf;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-form-wrapper:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 40px -16px rgba(0,0,0,0.12);
}
.form-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.4rem;
	font-weight: 500;
	color: #a4835c;
	margin-bottom: 0.5rem;
}
.form-sub {
	font-size: 0.85rem;
	color: #7d7468;
	margin-bottom: 2rem;
	letter-spacing: 0.02em;
}
.input-group {
	margin-bottom: 1.6rem;
}
.input-group input, 
.input-group textarea,
.input-group select {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid #cfc4b6;
	padding: 12px 4px 8px;
	font-family: 'Jost', sans-serif;
	font-size: 0.95rem;
	color: #2c2a27;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
	outline: none;
}
.input-group textarea {
	min-height: 100px;
	resize: vertical;
}
.input-group input:focus, 
.input-group textarea:focus,
.input-group select:focus {
	border-bottom-color: #b1926e;
	padding-left: 8px;
}
.input-group label {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #a48f74;
	margin-bottom: 6px;
}
.submit-btn {
	background: #b1926e;
	border: none;
	padding: 14px 28px;
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	letter-spacing: 0.2em;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.35s ease;
	margin-top: 16px;
	width: 100%;
	border-radius: 44px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #8f6e4b;
	transition: left 0.4s cubic-bezier(0.2, 1, 0.4, 1);
	z-index: -1;
}
.submit-btn:hover::before {
	left: 0;
}
.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px -8px rgba(0,0,0,0.2);
}

.contact-info-side {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.info-card {
	background: #fefaf5;
	padding: 1.8rem 2rem;
	border-radius: 28px;
	transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
	border: 1px solid #eae0d4;
}
.info-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 28px -12px rgba(0,0,0,0.1);
}
.info-icon {
	font-size: 2rem;
	color: #c3a072;
	margin-bottom: 1rem;
	display: inline-block;
}
.info-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.7rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: #3e3a34;
}
.info-card p, .info-card a {
	font-family: 'Jost', sans-serif;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #5f5a52;
	display: block;
	margin-top: 0.3rem;
	text-decoration: none;
	transition: color 0.2s;
}
.info-card a:hover {
	color: #b28b5e;
}
.social-links-compact {
	display: flex;
	gap: 18px;
	margin-top: 12px;
}
.social-links-compact a {
	font-size: 1.4rem;
	color: #b3946e;
	transition: transform 0.2s, color 0.2s;
}
.social-links-compact a:hover {
	transform: translateY(-3px);
	color: #7a5d3e;
}

.studio-showcase {
	padding: 0 24px 100px;
}
.showcase-inner {
	max-width: 1380px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	background: #f4efe8;
	border-radius: 36px;
	overflow: hidden;
	box-shadow: 0 25px 38px -18px rgba(0,0,0,0.12);
}
.studio-map, .studio-image {
	min-height: 380px;
	overflow: hidden;
}
.studio-map iframe {
	width: 100%;
	height: 100%;
	filter: grayscale(0.2) contrast(0.98);
}
.studio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.4, 1);
}
.studio-image:hover img {
	transform: scale(1.03);
}
.showcase-caption {
	grid-column: 1 / -1;
	text-align: center;
	padding: 1.2rem;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	color: #9e8b74;
	background: #f4efe8;
}

.faq-section {
	padding: 70px 24px 110px;
	background: #f9f7f3;
}
.faq-header {
	text-align: center;
	margin-bottom: 3rem;
}
.faq-header h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(36px, 4.4vw, 62px);
	color: #b0906c;
}
.faq-header p {
	color: #6b645a;
}
.accordion {
	max-width: 880px;
	margin: 0 auto;
}
.accordion-item {
	background: #fffefc;
	margin-bottom: 1rem;
	border-radius: 20px;
	border: 1px solid #e7dfd4;
	overflow: hidden;
}
.accordion-question {
	width: 100%;
	background: transparent;
	border: none;
	padding: 1.3rem 1.8rem;
	text-align: left;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	color: #3d382f;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}
.accordion-question:hover {
	background: #f6efe8;
}
.accordion-question i {
	transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
	font-size: 1.2rem;
	color: #b3926e;
}
.accordion-item.active .accordion-question i {
	transform: rotate(180deg);
}
.accordion-answer {
	max-height: 0;
	padding: 0 1.8rem;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.2, 0.9, 0.4, 1), padding 0.3s;
	font-size: 0.9rem;
	line-height: 1.55;
	color: #6a6258;
}
.accordion-item.active .accordion-answer {
	max-height: 180px;
	padding: 0 1.8rem 1.4rem 1.8rem;
}

.contact-cta {
	background: #e2d6cb;
	padding: 70px 24px;
	text-align: center;
}
.contact-cta h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.4rem;
	font-weight: 400;
	color: #3f3a32;
	margin-bottom: 1rem;
}
.small-link {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	color: #7d6449;
	text-transform: uppercase;
	border-bottom: 1px solid;
	display: inline-block;
	text-decoration: none;
}
.small-link:hover {
	color: #5a4230;
}

@media (max-width: 960px) {
	.contact-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.showcase-inner {
		grid-template-columns: 1fr;
	}
	.studio-map, .studio-image {
		min-height: 320px;
	}
}
@media (max-width: 640px) {
	.contact-form-wrapper {
		padding: 1.8rem;
	}
	.info-card {
		padding: 1.4rem;
	}
}

/* ============================================ */
/* ===== PAST PROJECTS PAGE STYLES =========== */
/* ============================================ */

/* ===== PAST PROJECTS PAGE - SIMILAR TO CONTACT PAGE ===== */

.projects-page {
    background: #F2F0ED;
}

/* Hero Section - Matching Contact Page Style */
.projects-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1c1a;
    margin-top: -2px;
    overflow: hidden;
    isolation: isolate;
    margin-bottom: 80px;  /* ADDED: Gap between hero and projects */
}

.projects-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
    filter: grayscale(0.2) contrast(1.05);
    transform: scale(1.02);
    transition: transform 12s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.projects-hero:hover .projects-hero-bg {
    transform: scale(1.07);
}

.projects-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1.5rem;
    animation: heroRise 1s cubic-bezier(0.2, 0.9, 0.4, 1) forwards;
}

@keyframes heroRise {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.projects-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(64px, 9vw, 130px);
    font-weight: 400;
    color: #f8f5ef;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.projects-hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: clamp(13px, 2vw, 17px);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e2cfb0;
    background: rgba(30,28,26,0.55);
    display: inline-block;
    padding: 0.6rem 2rem;
    backdrop-filter: blur(5px);
    border-radius: 60px;
}

/* Projects Grid */
.projects-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    position: relative;
    background: #F2F0ED;
}

/* Or if you want specific spacing, you can also add padding-top to the grid */
/* .projects-grid {
    padding-top: 80px;
} */

.col-left, .col-right {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.col-right {
    transform: translateY(80px);
}

.project-card {
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: pointer;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}

.project-card h3 {
    transition: color 0.3s ease;
}

.project-card:hover h3 {
    color: #b1926e;
}

.project-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
    background: #e8e4df;
}

.project-card.landscape .project-image {
    aspect-ratio: 4 / 3;
}
.project-card.portrait .project-image {
    aspect-ratio: 3 / 4;
}
.project-card.square .project-image {
    aspect-ratio: 1 / 1;
}
.project-card.wide .project-image {
    aspect-ratio: 16 / 9;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.4, 1);
    display: block;
}

.project-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.project-description {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    line-height: 1.7;
    color: #6b645a;
    text-transform: uppercase;
    max-width: 85%;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 16px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border-radius: 50%;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.lightbox-title {
    position: absolute;
    bottom: -40px;
    left: 20px;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        padding: 0 24px 80px;
    }
    .col-right {
        transform: translateY(0);
    }
    .projects-hero {
        min-height: 45vh;
        margin-bottom: 60px;  /* Slightly smaller gap on tablet */
    }
    .projects-hero-content h1 {
        font-size: clamp(48px, 8vw, 80px);
    }
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .lightbox-prev { left: -50px; }
    .lightbox-next { right: -50px; }
    .lightbox-close {
        top: -30px;
        right: -30px;
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .projects-hero {
        min-height: 40vh;
        margin-bottom: 40px;  /* Smaller gap on mobile */
    }
    .projects-hero-content h1 {
        font-size: 42px;
    }
    .projects-hero-sub {
        font-size: 10px;
        padding: 0.4rem 1.2rem;
    }
    .lightbox-prev, .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .lightbox-prev { left: -40px; }
    .lightbox-next { right: -40px; }
}

/* ============================================ */
/* ===== REDESIGNED ABOUT PAGE =============== */
/* ============================================ */

.hero-section {
	position: relative;
	height: 85vh;
	min-height: 550px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: -2px;
}
.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.45);
}
.hero-text {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
}
.hero-text h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(48px, 8vw, 110px);
	font-weight: 400;
	letter-spacing: 0.02em;
	margin-bottom: 16px;
}
.hero-text p {
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #e2cfb0;
}

.section {
	padding: 100px 48px;
	max-width: 1400px;
	margin: 0 auto;
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}
.two-col.reverse {
	direction: rtl;
}
.two-col.reverse .col-text {
	direction: ltr;
}
.col-image {
	overflow: hidden;
	box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}
.col-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s ease;
}
.col-image:hover img {
	transform: scale(1.02);
}
.col-text h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 42px;
	font-weight: 400;
	color: #b1926e;
	margin-bottom: 24px;
	letter-spacing: 0.02em;
}
.col-text p {
	font-family: 'Jost', sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	color: #3b3a38;
	margin-bottom: 20px;
	font-weight: 300;
}
.col-text strong {
	color: #b1926e;
	font-weight: 500;
}

.image-banner {
	width: 100%;
	height: 450px;
	object-fit: cover;
	display: block;
}

.full-text {
	max-width: 800px;
	margin: 0 auto 50px;
	text-align: center;
}
.full-text h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 38px;
	font-weight: 400;
	color: #b1926e;
}

.approach-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 20px;
}
.approach-card {
	background: #fff;
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0,0,0,0.03);
	border: 1px solid #e8e0d5;
}
.approach-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px -10px rgba(0,0,0,0.08);
	border-color: #b1926e;
}
.approach-icon {
	font-size: 42px;
	color: #b1926e;
	margin-bottom: 20px;
}
.approach-card h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 12px;
	color: #1a1a1a;
}
.approach-card p {
	font-family: 'Jost', sans-serif;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #6b645a;
}

.quote-section {
	background: #e8e0d5;
	padding: 80px 48px;
	text-align: center;
	margin: 40px 0 0;
}
.quote-section p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 32px;
	font-style: italic;
	color: #2c2a29;
	max-width: 950px;
	margin: 0 auto;
	line-height: 1.4;
}

@media (max-width: 968px) {
	.section {
		padding: 60px 32px;
	}
	.two-col {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.approach-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.quote-section p {
		font-size: 28px;
	}
	.image-banner {
		height: 300px;
	}
}
@media (max-width: 640px) {
	.section {
		padding: 40px 24px;
	}
	.approach-grid {
		grid-template-columns: 1fr;
	}
	.quote-section {
		padding: 50px 24px;
	}
	.quote-section p {
		font-size: 22px;
	}
	.image-banner {
		height: 200px;
	}
	.col-text h2 {
		font-size: 32px;
	}
}

/* ===== MOBILE MENU STYLES ===== */

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #5a5448;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 10px; }
.mobile-menu-btn span:nth-child(3) { top: 20px; }

.mobile-menu-btn.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.mobile-menu-btn.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 66px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 66px);
    background: rgba(242, 240, 237, 0.98);
    backdrop-filter: blur(10px);
    z-index: 99;
    transition: left 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav a {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    letter-spacing: 0.15em;
    color: #5a5448;
    text-decoration: none;
    text-transform: uppercase;
    padding: 12px 24px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #b1926e;
    transition: width 0.3s ease;
}

.mobile-nav a:hover::after,
.mobile-nav a.active-link::after {
    width: 40px;
}

.mobile-nav a:hover {
    color: #b1926e;
}

/* Mobile Social Icons */
.mobile-social {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.mobile-social a {
    font-size: 22px;
    color: #5a5448;
    transition: color 0.3s ease;
    padding: 0;
}

.mobile-social a::after {
    display: none;
}

.mobile-social a:hover {
    color: #b1926e;
    transform: translateY(-2px);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Show mobile menu button on smaller screens */
@media (max-width: 1200px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 16px;
    }
    
    .header-tools {
        justify-self: end;
    }
}

@media (max-width: 640px) {
    .mobile-nav a {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .mobile-social {
        gap: 20px;
    }
    
    .mobile-social a {
        font-size: 20px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
	.animated-heading,
	.animated-subheading,
	.hero-decoration,
	.hero-decoration .line,
	.hero-decoration .dot,
	.animated-heading::after,
	.lightbox-image,
	.lightbox.active {
		animation: none !important;
		opacity: 1 !important;
		transform: scale(1) !important;
	}
	.animated-heading::after {
		width: 80px;
	}
	.hero-decoration .line {
		transform: scaleX(1);
	}
	.hero-decoration .dot {
		opacity: 1;
		transform: scale(1);
	}
	.projects-hero:hover .animated-heading {
		letter-spacing: 0.02em;
	}
}


/* ===== PROJECT DETAIL PAGE STYLES ===== */

.project-detail-page {
    background: #F2F0ED;
}

/* Hero Image */
.project-hero {
    width: 100%;
    overflow: hidden;
    margin-top: -2px;
}

.project-hero-image {
    width: 100%;
    height: auto;
}

.project-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Project Container */
.project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 48px 100px;
}

/* Project Title */
.project-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
    text-align: left;
}

/* Project Description */
.project-description {
    max-width: 800px;
    margin-bottom: 60px;
}

.project-description p {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #3b3a38;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* Gallery */
.project-gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.gallery-item {
    width: 100%;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.4, 1);
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Project Navigation */
.project-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd6cd;
    padding-top: 50px;
    margin-top: 20px;
}

.project-navigation a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-prev, .nav-next {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b1926e;
}

.nav-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.project-navigation a:hover .nav-title {
    color: #b1926e;
}

.nav-prev {
    text-align: left;
}

.nav-next {
    text-align: right;
}

/* Clickable images - make gallery images clickable for lightbox */
.gallery-item {
    cursor: pointer;
}

/* Responsive */
@media (max-width: 968px) {
    .project-container {
        padding: 40px 32px 80px;
    }
    .project-gallery {
        gap: 30px;
    }
    .project-navigation {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    .nav-next {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .project-container {
        padding: 30px 24px 60px;
    }
    .project-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .project-description p {
        font-size: 0.9rem;
    }
    .project-gallery {
        gap: 20px;
    }
}