﻿/* ============================================================
   Rajiv Bespoke â€” Classique by Rajiv
   Flowing luxury lookbook stylesheet
   ============================================================ */

:root {
	--ink: #141210;
	--ink-soft: #1e1b17;
	--cream: #f4efe6;
	--paper: #faf7f1;
	--gold: #b88a44;
	--gold-light: #d2ad6b;
	--text: #2a2622;
	--muted: #857d73;
	--line: rgba(20, 18, 16, 0.10);
	--maxw: 1200px;
	--ease: cubic-bezier(0.22, 0.8, 0.28, 1);
	--serif: "Cormorant Garamond", Georgia, serif;
	--sans: "Jost", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--sans);
	color: var(--text);
	background: var(--paper);
	line-height: 1.75;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 28px;
}

h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1.12;
	color: var(--ink);
}

h1 { font-size: clamp(2.7rem, 6.2vw, 5.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.05rem, 4.2vw, 3.35rem); }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.85rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.34em;
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--gold);
	margin-bottom: 1.15rem;
}
.eyebrow.gold { color: var(--gold-light); }

.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--sans);
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 17px 36px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), padding 0.45s var(--ease);
	padding: 24px 0;
}
.site-header.scrolled {
	background: rgba(18, 16, 14, 0.94);
	backdrop-filter: blur(12px);
	padding: 12px 0;
	box-shadow: 0 10px 40px rgba(0,0,0,0.28);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.brand-logo {
	display: block;
	height: 52px;
	width: auto;
	max-width: min(260px, 48vw);
}
.site-header.scrolled .brand-logo { height: 42px; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
	color: rgba(255,255,255,0.88);
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 400;
	position: relative;
	transition: color 0.3s var(--ease);
}
.nav a::after {
	content: "";
	position: absolute; left: 0; bottom: -6px;
	width: 0; height: 1px; background: var(--gold-light);
	transition: width 0.3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }
.nav .nav-cta {
	border: 1px solid var(--gold-light);
	padding: 9px 22px;
	color: var(--gold-light);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--gold-light); color: var(--ink); }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none; border: none; cursor: pointer;
	padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: all 0.3s var(--ease); }

/* ---------- Hero â€” full-bleed lookbook ---------- */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding-bottom: clamp(72px, 12vh, 120px);
}
.hero-bg-img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center 42%;
	transform: scale(1.04);
	animation: heroZoom 18s ease forwards;
	background-color: #1a1612;
}
@keyframes heroZoom { to { transform: scale(1); } }

/* Lighter overlay so the couple-in-car photo reads clearly */
.hero-overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(12,10,9,0.48) 0%, rgba(12,10,9,0.18) 42%, rgba(12,10,9,0.06) 100%),
		linear-gradient(180deg, rgba(12,10,9,0.28) 0%, rgba(12,10,9,0.05) 38%, rgba(12,10,9,0.55) 100%);
	pointer-events: none;
}
.hero-content {
	position: relative;
	z-index: 2;
	color: #fff;
	max-width: 720px;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 {
	color: #fff;
	margin-bottom: 1.35rem;
	text-shadow: 0 2px 28px rgba(0,0,0,0.25);
}
.hero-lede {
	font-family: var(--serif);
	font-size: clamp(1.15rem, 2vw, 1.48rem);
	font-weight: 400;
	color: rgba(255,255,255,0.92);
	max-width: 560px;
	margin-bottom: 2.2rem;
	text-shadow: 0 1px 16px rgba(0,0,0,0.2);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-cue {
	position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
	z-index: 2; color: #fff; font-size: 1.25rem;
	animation: bounce 2.2s infinite;
	opacity: 0.75;
}
@keyframes bounce {
	0%,100% { transform: translate(-50%, 0); }
	50% { transform: translate(-50%, 8px); }
}

/* ---------- Sections â€” continuous rhythm ---------- */
.section {
	padding: clamp(88px, 11vw, 140px) 0;
	position: relative;
}
.section-head {
	max-width: 620px;
	margin: 0 auto clamp(48px, 7vw, 80px);
	text-align: center;
}
.section-head.left {
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}
.section-sub {
	color: var(--muted);
	font-size: 1.05rem;
	margin-top: 0.9rem;
	font-family: var(--serif);
	font-weight: 400;
}

/* Soft blend between stacked bands */
.section + .section::before {
	content: none;
}

/* ---------- About â€” editorial split, no frame ---------- */
.about { background: var(--paper); }
.about-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(40px, 7vw, 96px);
	align-items: center;
}
.about-media { position: relative; margin: 0; }
.about-media img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text); margin-bottom: 1.15rem; }
.about-stats {
	display: flex;
	gap: 42px;
	margin-top: 2.6rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
	flex-wrap: wrap;
}
.about-stats > div { display: flex; flex-direction: column; }
.stat-num {
	font-family: var(--serif);
	font-size: 2.35rem;
	color: var(--gold);
	line-height: 1;
}
.stat-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--muted);
	margin-top: 8px;
}

/* ---------- Full-bleed interlude ---------- */
.bleed-band {
	position: relative;
	min-height: clamp(380px, 55vh, 620px);
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 0;
}
.bleed-band img,
.bleed-band .bleed-bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
}
.bleed-band .bleed-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(12,10,9,0.62) 0%, rgba(12,10,9,0.28) 55%, rgba(12,10,9,0.15) 100%);
}
.bleed-band .bleed-copy {
	position: relative;
	z-index: 2;
	color: #fff;
	max-width: 520px;
	padding: clamp(48px, 8vw, 100px) 28px;
}
.bleed-band .bleed-copy h2 { color: #fff; margin-bottom: 1rem; }
.bleed-band .bleed-copy p {
	font-family: var(--serif);
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	color: rgba(255,255,255,0.88);
}

/* ---------- Gallery â€” edge-to-edge mosaic ---------- */
.gallery {
	background: var(--ink);
	padding-left: 0;
	padding-right: 0;
}
.gallery .container { max-width: none; padding: 0; }
.gallery .section-head {
	max-width: var(--maxw);
	margin-left: auto;
	margin-right: auto;
	padding: 0 28px;
}
.gallery .section-head h2 { color: var(--cream); }
.gallery .eyebrow { color: var(--gold-light); }
.gallery .section-sub { color: rgba(255,255,255,0.55); }

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3px;
}
.gallery-item {
	border: none;
	padding: 0;
	cursor: pointer;
	background: none;
	overflow: hidden;
	position: relative;
	aspect-ratio: 1;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
	filter: saturate(0.92);
}
.gallery-item::after {
	content: "";
	position: absolute; inset: 0;
	background: rgba(12,10,9,0.28);
	opacity: 0;
	transition: opacity 0.45s var(--ease);
}
.gallery-item:hover img {
	transform: scale(1.06);
	filter: saturate(1);
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Products â€” open columns, not cards ---------- */
.products { background: var(--cream); }
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-bottom: 64px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.product-card {
	background: transparent;
	padding: clamp(32px, 4vw, 48px) clamp(20px, 2.5vw, 36px);
	border: none;
	border-right: 1px solid var(--line);
	transition: background 0.4s var(--ease);
}
.product-card:last-child { border-right: none; }
.product-card:hover { background: rgba(255,255,255,0.45); transform: none; box-shadow: none; }
.product-card h3 {
	margin-bottom: 0.9rem;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
}
.product-card p {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

/* ---------- Measure â€” clean chart presentation ---------- */
.measure { background: var(--paper); }
.measure-charts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}
.measure-chart {
	margin: 0;
	background: transparent;
	border: none;
	padding: 0;
}
.measure-chart figcaption {
	font-family: var(--serif);
	font-size: 1.45rem;
	color: var(--ink);
	text-align: left;
	margin-bottom: 16px;
	letter-spacing: 0.01em;
}
.measure-chart-btn {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	background: var(--cream);
	cursor: zoom-in;
	overflow: hidden;
}
.measure-chart-btn img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.measure-chart-btn:hover img {
	transform: scale(1.015);
	opacity: 0.96;
}
.measure-chart-link {
	display: inline-block;
	margin-top: 14px;
	font-size: 0.74rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 500;
}
.measure-chart-link:hover { color: var(--ink); }

/* ---------- Jeans â€” full-bleed cinematic ---------- */
.jeans {
	position: relative;
	color: #fff;
	overflow: hidden;
	min-height: clamp(520px, 72vh, 780px);
	display: flex;
	align-items: center;
	padding: clamp(88px, 12vw, 140px) 0;
}
.jeans-bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
}
.jeans-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(105deg, rgba(12,10,9,0.88) 0%, rgba(12,10,9,0.55) 48%, rgba(12,10,9,0.22) 100%);
}
.jeans-content { position: relative; z-index: 2; }
.jeans-text { max-width: 600px; }
.jeans-text h2 { color: #fff; margin-bottom: 1.4rem; }
.jeans-text h3 { color: var(--gold-light); margin: 2rem 0 1rem; font-size: 1.45rem; }
.jeans-text p { color: rgba(255,255,255,0.86); }
.jeans-text .btn { margin-top: 2rem; }

/* ---------- Contact â€” open editorial ---------- */
.contact { background: var(--cream); }
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(48px, 8vw, 96px);
	align-items: start;
}
.contact-block {
	margin-bottom: 1.8rem;
	padding-bottom: 1.8rem;
	border-bottom: 1px solid var(--line);
}
.contact-block:last-of-type { border-bottom: none; }
.contact-block h3 { margin-bottom: 0.3rem; }
.contact-block h4 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: var(--gold);
}
.contact-info a:not(.btn) { transition: color 0.3s var(--ease); }
.contact-info a:not(.btn):hover { color: var(--gold); }
.link-arrow {
	display: inline-block;
	margin-top: 0.6rem;
	color: var(--gold);
	font-weight: 500;
	letter-spacing: 0.04em;
}

.contact-form {
	background: transparent;
	padding: 0;
	border-top: 1px solid var(--line);
	padding-top: clamp(28px, 3vw, 40px);
}
.contact-form h3 { margin-bottom: 1.6rem; }
.field { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.field label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--muted);
	margin-bottom: 8px;
}
.field input, .field textarea {
	font-family: var(--sans);
	font-size: 0.95rem;
	color: var(--text);
	padding: 14px 0;
	border: none;
	border-bottom: 1px solid var(--line);
	background: transparent;
	transition: border-color 0.3s var(--ease);
	resize: vertical;
	border-radius: 0;
}
.field input:focus, .field textarea:focus {
	outline: none;
	border-bottom-color: var(--gold);
}
.contact-form .btn { width: 100%; margin-top: 0.6rem; }
.form-note {
	font-size: 0.85rem;
	color: var(--muted);
	margin-top: 1.1rem;
	text-align: center;
}
.form-status {
	font-size: 0.92rem;
	padding: 12px 14px;
	margin-bottom: 1.2rem;
	line-height: 1.45;
}
.form-status.ok {
	background: rgba(60, 120, 70, 0.12);
	color: #2d5a36;
	border: 1px solid rgba(60, 120, 70, 0.25);
}
.form-status.err {
	background: rgba(140, 40, 40, 0.08);
	color: #6b2424;
	border: 1px solid rgba(140, 40, 40, 0.2);
}
.field.hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--ink);
	color: rgba(255,255,255,0.7);
	padding: 64px 0 32px;
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo {
	display: block;
	height: 56px;
	width: auto;
	max-width: 280px;
}
.brand-sub {
	font-family: var(--sans);
	font-size: 0.62rem;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--gold-light);
}
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a {
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 24px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ---------- Lightbox ---------- */
.lightbox {
	position: fixed; inset: 0; z-index: 200;
	background: rgba(10,8,7,0.96);
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.35s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
	max-width: 88vw;
	max-height: 88vh;
	object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
	position: absolute;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: color 0.3s var(--ease);
	z-index: 2;
}
.lb-close { top: 26px; right: 34px; font-size: 2.6rem; line-height: 1; }
.lb-prev, .lb-next {
	top: 50%;
	transform: translateY(-50%);
	font-size: 3.4rem;
	padding: 0 24px;
}
.lb-prev { left: 10px; }
.lb-next { right: 10px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold-light); }

/* ---------- Reveal ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.products-grid { grid-template-columns: repeat(2, 1fr); }
	.product-card:nth-child(2n) { border-right: none; }
	.product-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
	.nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(78vw, 320px);
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 28px;
		padding: 0 40px;
		background: rgba(18,16,14,0.98);
		backdrop-filter: blur(12px);
		transform: translateX(100%);
		transition: transform 0.4s var(--ease);
	}
	.nav.open { transform: translateX(0); }
	.nav a { font-size: 1rem; }
	.nav-toggle { display: flex; z-index: 110; }
	.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-toggle.open span:nth-child(2) { opacity: 0; }
	.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.about-grid, .contact-grid { grid-template-columns: 1fr; }
	.measure-charts { grid-template-columns: 1fr; }
	.hero { align-items: flex-end; padding-bottom: 88px; }
	.hero-overlay {
		background:
			linear-gradient(180deg, rgba(12,10,9,0.22) 0%, rgba(12,10,9,0.12) 40%, rgba(12,10,9,0.68) 100%);
	}
}

@media (max-width: 560px) {
	.container { padding: 0 20px; }
	.gallery .section-head { padding: 0 20px; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
	.products-grid { grid-template-columns: 1fr; }
	.product-card {
		border-right: none;
		border-bottom: 1px solid var(--line);
		padding: 28px 4px;
	}
	.product-card:last-child { border-bottom: none; }
	.product-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.hero-actions { flex-direction: column; }
	.hero-actions .btn { text-align: center; }
	.footer-inner { flex-direction: column; align-items: flex-start; }
	.bleed-band { min-height: 360px; }
}
