/* ==========================================================================
   Gabbokeh — modern portfolio
   ========================================================================== */

:root {
	--bg: #0a0a0a;
	--bg-elev: #111;
	--fg: #f4f1ec;
	--fg-dim: #9a958d;
	--line: rgba(244, 241, 236, 0.12);
	--accent: #e9d8a6;
	--accent-2: #ef6f6c;
	--radius: 14px;
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--container: 1400px;
	--nav-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	scroll-padding-top: var(--nav-h);
	scrollbar-color: rgba(244, 241, 236, 0.15) var(--bg);
	scrollbar-width: thin;
}

/* Focus visible for keyboard users */
:focus { outline: none; }
:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(244, 241, 236, 0.12); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(244, 241, 236, 0.2); }

body {
	background: var(--bg);
	color: var(--fg);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-weight: 300;
	font-size: 17px;
	line-height: 1.55;
	overflow-x: hidden;
}

html.has-custom-cursor body,
html.has-custom-cursor a,
html.has-custom-cursor button { cursor: none; }

@media (hover: none), (max-width: 900px) {
	html.has-custom-cursor body,
	html.has-custom-cursor a,
	html.has-custom-cursor button { cursor: auto; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: #000; }

/* Cursor */
.cursor, .cursor-dot {
	position: fixed;
	top: 0; left: 0;
	pointer-events: none;
	z-index: 9999;
	transform: translate3d(-50%, -50%, 0);
	mix-blend-mode: difference;
	opacity: 0;
	transition: opacity .3s;
}
html.has-custom-cursor .cursor,
html.has-custom-cursor .cursor-dot { opacity: 1; }
.cursor {
	width: 34px; height: 34px;
	border: 1px solid var(--fg);
	border-radius: 50%;
	transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), opacity .3s;
}
.cursor-dot {
	width: 5px; height: 5px;
	background: var(--fg);
	border-radius: 50%;
}
.cursor.is-hover { width: 70px; height: 70px; background: var(--fg); }
.cursor.is-hover ~ .cursor-dot { opacity: 0; }

/* Scroll progress */
.scroll-progress {
	position: fixed;
	top: 0; left: 0;
	height: 2px;
	width: 0;
	background: var(--accent);
	z-index: 1000;
	transition: width .1s linear;
}

/* Nav */
.nav {
	position: fixed;
	inset: 0 0 auto 0;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 clamp(20px, 4vw, 48px);
	z-index: 100;
	transition: background .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.is-scrolled {
	background: rgba(10, 10, 10, 0.7);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}
.nav__logo {
	font-family: 'Fraunces', serif;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.02em;
}
.nav__logo span { color: var(--accent); }

.nav__links {
	display: flex;
	gap: 32px;
	font-size: 14px;
	letter-spacing: 0.02em;
}
.nav__links a {
	position: relative;
	padding: 4px 0;
	color: var(--fg-dim);
	transition: color .3s;
}
.nav__links a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s var(--ease-out);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle {
	display: none;
	width: 44px; height: 44px;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.nav__toggle span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--fg);
	transform-origin: center;
	transition: transform .45s var(--ease-out), width .45s var(--ease-out);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(3.75px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
	transform: translateY(-3.75px) rotate(-45deg);
}

@media (max-width: 768px) {
	.nav__toggle { display: flex; z-index: 101; }

	.nav__links {
		position: fixed;
		inset: 0;
		background: var(--bg);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0;
		font-family: 'Fraunces', serif;
		font-size: clamp(32px, 8vw, 48px);
		letter-spacing: -0.02em;
		z-index: 100;
		opacity: 0;
		visibility: hidden;
		transition: opacity .45s var(--ease-out), visibility .45s;
		pointer-events: none;
	}
	.nav__links.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav__links a {
		position: relative;
		color: var(--fg);
		padding: 16px 42px;
		margin: 6px 0;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid var(--line);
		min-width: 240px;
		text-align: center;
		opacity: 0;
		transform: translateY(16px);
		transition: opacity .5s var(--ease-out), transform .5s var(--ease-out),
			background .3s var(--ease), border-color .3s var(--ease), color .3s;
	}
	.nav__links a:hover,
	.nav__links a:active {
		background: var(--fg);
		color: var(--bg);
		border-color: var(--fg);
	}
	.nav__links a::after { display: none; }

	.nav__links.is-open a {
		opacity: 1;
		transform: translateY(0);
	}
	.nav__links.is-open a:nth-child(1) { transition-delay: .15s; }
	.nav__links.is-open a:nth-child(2) { transition-delay: .22s; }
	.nav__links.is-open a:nth-child(3) { transition-delay: .29s; }
	.nav__links.is-open a:nth-child(4) { transition-delay: .36s; }
	.nav__links.is-open a:nth-child(5) { transition-delay: .43s; }
}

@media (prefers-reduced-motion: reduce) {
	.nav__links a { transition: none !important; transition-delay: 0s !important; opacity: 1 !important; transform: none !important; }
}

/* Hero */
.hero {
	min-height: 100vh;
	padding: calc(var(--nav-h) + 40px) clamp(20px, 4vw, 48px) 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	max-width: var(--container);
	margin: 0 auto;
}
.hero__meta {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--fg-dim);
	margin-bottom: 48px;
}
.hero__title {
	font-family: 'Fraunces', serif;
	font-weight: 300;
	font-size: clamp(56px, 11vw, 180px);
	line-height: 0.95;
	letter-spacing: -0.03em;
	margin-bottom: 40px;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.18em; }
.hero__title em {
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
}
.hero__sub {
	max-width: 520px;
	color: var(--fg-dim);
	font-size: clamp(16px, 1.4vw, 20px);
	margin-bottom: 40px;
}
.hero__cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.hero__scroll {
	position: absolute;
	bottom: 32px;
	right: clamp(20px, 4vw, 48px);
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--fg-dim);
}
.hero__scroll-line {
	width: 80px; height: 1px;
	background: linear-gradient(90deg, var(--fg-dim), transparent);
	position: relative;
	overflow: hidden;
}
.hero__scroll-line::after {
	content: '';
	position: absolute;
	inset: 0 auto 0 0;
	width: 20px;
	background: var(--accent);
	animation: scroll-line 2.4s var(--ease-out) infinite;
}
@keyframes scroll-line {
	0%   { transform: translateX(-100%); }
	100% { transform: translateX(400%); }
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-size: 14px;
	letter-spacing: 0.03em;
	border: 1px solid transparent;
	transition: transform .4s var(--ease-out), background .3s, color .3s, border-color .3s;
	will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { background: var(--accent); }
.btn--ghost { border-color: var(--line); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); }
.btn--lg { padding: 18px 34px; font-size: 15px; }

/* Marquee */
.marquee {
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 22px 0;
	font-family: 'Fraunces', serif;
	font-size: clamp(28px, 4vw, 56px);
	font-weight: 300;
	letter-spacing: -0.02em;
}
.marquee__track {
	display: flex;
	gap: 48px;
	white-space: nowrap;
	animation: marquee 30s linear infinite;
	width: max-content;
}
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* About */
.about {
	padding: clamp(80px, 14vw, 180px) clamp(20px, 4vw, 48px);
	max-width: var(--container);
	margin: 0 auto;
}
.about__label,
.section-head__label,
.contact__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--fg-dim);
	margin-bottom: 32px;
}
.about__label span,
.section-head__label span,
.contact__label span {
	font-family: 'Fraunces', serif;
	font-size: 14px;
	color: var(--accent);
}
.about__title,
.contact__title,
.section-head h2 {
	font-family: 'Fraunces', serif;
	font-weight: 300;
	font-size: clamp(40px, 7vw, 100px);
	line-height: 1;
	letter-spacing: -0.03em;
	margin-bottom: 60px;
}
.about__title span,
.contact__title span { display: block; overflow: hidden; padding-bottom: 0.18em; }
.about__title em,
.contact__title em { font-style: italic; color: var(--accent); }

.about__body {
	display: grid;
	grid-template-columns: 1fr minmax(260px, 340px);
	gap: clamp(40px, 6vw, 80px);
	align-items: start;
}
.about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	font-size: clamp(16px, 1.2vw, 18px);
	color: var(--fg-dim);
}
.about__photo {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-elev);
}
.about__photo img {
	width: 100%;
	height: auto;
	display: block;
	filter: saturate(0.92);
	transition: filter .6s var(--ease);
}
.about__photo:hover img { filter: saturate(1.05); }
.about__photo figcaption {
	padding: 14px 18px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fg-dim);
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
	.about__body { grid-template-columns: 1fr; }
	.about__photo { max-width: 420px; }
}
@media (max-width: 700px) {
	.about__grid { gap: 20px; }
}

/* Section head */
.section-head {
	padding: clamp(80px, 14vw, 160px) clamp(20px, 4vw, 48px) 60px;
	max-width: var(--container);
	margin: 0 auto;
}
.section-head h2 { margin-bottom: 24px; }
.section-head p { color: var(--fg-dim); max-width: 520px; }

/* Gallery — masonry, no crop */
.work { position: relative; }
.gallery {
	column-count: 3;
	column-gap: 16px;
	padding: 0 clamp(20px, 4vw, 48px) clamp(60px, 10vw, 120px);
	max-width: var(--container);
	margin: 0 auto;
}
.gallery--wide { column-count: 3; }
.gallery__item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--bg-elev);
	break-inside: avoid;
	margin: 0 0 16px;
	display: block;
}
.gallery__item a { display: block; width: 100%; position: relative; line-height: 0; }
.gallery__item img {
	width: 100%;
	height: auto;
	display: block;
	transition: filter .6s var(--ease);
	filter: saturate(0.92);
}
.gallery__item:hover img { filter: saturate(1.05); }

/* caption overlay */
.gallery__item figcaption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .5s var(--ease), transform .5s var(--ease);
	line-height: 1.3;
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery__item figcaption span {
	font-family: 'Fraunces', serif;
	font-size: 20px;
	font-weight: 400;
	color: var(--fg);
}
.gallery__item figcaption em {
	font-style: normal;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--fg-dim);
}

@media (max-width: 900px) {
	.gallery, .gallery--wide { column-count: 2; }
}
@media (max-width: 560px) {
	.gallery, .gallery--wide { column-count: 1; }
	.gallery__item figcaption { opacity: 1; transform: none; }
}

/* Contact */
.contact {
	padding: clamp(80px, 14vw, 180px) clamp(20px, 4vw, 48px);
	max-width: var(--container);
	margin: 0 auto;
}
.contact__title { margin-bottom: 80px; }

.form {
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 760px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form__hp { position: absolute; left: -9999px; }

.field {
	position: relative;
	display: block;
	border-bottom: 1px solid var(--line);
	transition: border-color .3s;
}
.field:focus-within { border-color: var(--fg); }
.field input,
.field textarea {
	width: 100%;
	background: transparent;
	border: 0;
	color: var(--fg);
	font: inherit;
	padding: 28px 0 12px;
	outline: none;
	font-size: 16px;
	resize: vertical;
}
.field span {
	position: absolute;
	left: 0; top: 28px;
	color: var(--fg-dim);
	font-size: 14px;
	letter-spacing: 0.02em;
	pointer-events: none;
	transition: transform .4s var(--ease-out), color .3s, font-size .3s;
}
.field input:focus + span,
.field input:not(:placeholder-shown) + span,
.field input:valid:not(:placeholder-shown) + span,
.field textarea:focus + span,
.field textarea:not(:placeholder-shown) + span {
	transform: translateY(-22px);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
}
.field input, .field textarea { /* hack to make :not(:placeholder-shown) work */ }
.field input::placeholder, .field textarea::placeholder { color: transparent; }

.contact__direct {
	margin-top: 80px;
	padding-top: 40px;
	border-top: 1px solid var(--line);
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	font-family: 'Fraunces', serif;
	font-size: clamp(20px, 2.5vw, 32px);
}
.contact__direct a {
	position: relative;
	transition: color .3s, transform .4s var(--ease-out);
}
.contact__direct a:hover { color: var(--accent); }

/* Footer */
.footer {
	padding: 0 clamp(20px, 4vw, 48px) 30px;
	border-top: 1px solid var(--line);
}
.footer__big {
	font-family: 'Fraunces', serif;
	font-weight: 300;
	font-size: clamp(80px, 22vw, 320px);
	line-height: 0.9;
	letter-spacing: -0.04em;
	text-align: center;
	color: var(--fg);
	padding: 40px 0 20px;
	background: linear-gradient(180deg, var(--fg) 0%, rgba(244,241,236,0.05) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	user-select: none;
}
.footer__bottom {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--fg-dim);
	padding-top: 20px;
	border-top: 1px solid var(--line);
}
.footer__top { transition: color .3s; }
.footer__top:hover { color: var(--fg); }

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(10, 10, 10, 0.96);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage {
	position: relative;
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	transform: scale(0.96);
	transition: transform .5s var(--ease-out);
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }
.lightbox__stage img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 6px;
	transition: opacity .3s var(--ease);
}
.lightbox.is-loading .lightbox__stage img { opacity: 0; }

/* Loading spinner */
.lightbox__stage::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 36px;
	height: 36px;
	margin: -18px 0 0 -18px;
	border-radius: 50%;
	border: 2px solid var(--line);
	border-top-color: var(--accent);
	animation: lb-spin 0.8s linear infinite;
	opacity: 0;
	transition: opacity .3s var(--ease);
	pointer-events: none;
}
.lightbox.is-loading .lightbox__stage::before { opacity: 1; }
@keyframes lb-spin {
	to { transform: rotate(360deg); }
}
.lightbox__stage figcaption {
	color: var(--fg-dim);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
	position: absolute;
	width: 52px; height: 52px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	border: 1px solid var(--line);
	color: var(--fg);
	font-size: 22px;
	display: flex; align-items: center; justify-content: center;
	transition: background .3s, transform .3s var(--ease-out);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.12); transform: scale(1.08); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 600px) {
	.lightbox { padding: 20px; }
	.lightbox__close { top: 16px; right: 16px; width: 44px; height: 44px; }
	.lightbox__prev  { left: 12px;  width: 44px; height: 44px; }
	.lightbox__next  { right: 12px; width: 44px; height: 44px; }
}

/* Reveal animations */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
	transition-delay: var(--d, 0s);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

.hero__title .word {
	display: inline-block;
	transform: translateY(110%);
	opacity: 0;
	transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
	transition-delay: var(--d, 0s);
}
.hero__title .word.is-in { transform: translateY(0); opacity: 1; }

.about__title span,
.contact__title span { position: relative; }
.about__title span > *,
.contact__title span > * { display: inline-block; }

.gallery__item {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.gallery__item.is-in { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.cursor, .cursor-dot { display: none; }
	body { cursor: auto; }
	[data-reveal], .hero__title .word, .gallery__item { opacity: 1; transform: none; }
}

/* Weddings */
.weddings { position: relative; }
.weddings__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(48px, 7vw, 96px);
	padding: 0 clamp(20px, 4vw, 48px) clamp(60px, 10vw, 120px);
	max-width: var(--container);
	margin: 0 auto;
}

.wedding-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.wedding-card__mosaic {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: repeat(3, 1fr);
	gap: 10px;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius);
	overflow: hidden;
}
.wedding-card__tile {
	position: relative;
	overflow: hidden;
	background: var(--bg-elev);
	line-height: 0;
}
.wedding-card__tile img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease-out), filter .6s var(--ease);
	filter: saturate(0.92);
}
.wedding-card__tile:hover img {
	transform: scale(1.04);
	filter: saturate(1.05);
}
.wedding-card__tile--main {
	grid-column: 1;
	grid-row: 1 / span 3;
}
.wedding-card__tile--more::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.55);
	transition: background .3s var(--ease);
	z-index: 1;
}
.wedding-card__tile--more:hover::before { background: rgba(10, 10, 10, 0.35); }
.wedding-card__more {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', serif;
	font-weight: 300;
	font-size: clamp(22px, 2.4vw, 32px);
	color: var(--fg);
	letter-spacing: -0.01em;
	z-index: 2;
}

.wedding-card__mosaic a[hidden] { display: none; }

.wedding-card__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.wedding-card__meta h3 {
	font-family: 'Fraunces', serif;
	font-weight: 300;
	font-size: clamp(28px, 3vw, 40px);
	letter-spacing: -0.02em;
	line-height: 1;
}
.wedding-card__meta h3 em {
	font-style: italic;
	color: var(--accent);
	font-weight: 400;
}
.wedding-card__meta span {
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--fg-dim);
}

@media (max-width: 700px) {
	.wedding-card__mosaic { aspect-ratio: 4 / 3; gap: 6px; }
	.wedding-card__more { font-size: 20px; }
}

/* Lightbox counter */
.lightbox__counter {
	position: absolute;
	right: 24px;
	bottom: 24px;
	font-family: 'Fraunces', serif;
	font-size: 14px;
	letter-spacing: 0.12em;
	color: var(--fg-dim);
	pointer-events: none;
}
.lightbox__counter strong {
	font-weight: 400;
	color: var(--fg);
}
@media (max-width: 600px) {
	.lightbox__counter { right: 16px; bottom: 16px; font-size: 12px; }
}
