/* ==========================================================================
   LUMINANCE — main.css
   A warm, editorial system for a wedding & event photographer.
   Palette: ivory / champagne base · charcoal ink · terracotta + clay accents.
   Type: Cormorant Garamond (display) · Jost (UI/body).
   Performance: CSS-only motion, no frameworks, fluid type via clamp().
   ========================================================================== */

:root {
	--ivory:      #faf6f0;
	--champagne:  #f1e8db;
	--sand:       #e7dcc9;
	--clay:       #c2a878;
	--terracotta: #a98852;
	--gold:       #b29561;
	--ink:        #3a342c;
	--ink-soft:   #6f655a;
	--line:       #e4dac8;
	--white:      #ffffff;

	--font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

	--maxw: 1280px;
	--gutter: clamp(1.25rem, 4vw, 4rem);
	--radius: 2px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset-ish ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 300;
	font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
	line-height: 1.7;
	color: var(--ink);
	background: var(--ivory);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: 0.005em;
	margin: 0 0 0.5em;
}

::selection { background: var(--clay); color: var(--ivory); }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 1000;
	background: var(--ink); color: var(--ivory); padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

/* ----- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 820px; }

.section-title {
	font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
	letter-spacing: 0.01em;
}
.section-title--center { text-align: center; }

/* ----- Buttons ------------------------------------------------------------ */
.lum-btn {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 1.05rem 2.4rem;
	background: var(--ink);
	color: var(--ivory);
	border: 1px solid var(--ink);
	border-radius: var(--radius);
	transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.lum-btn:hover { background: transparent; color: var(--ink); transform: translateY(-2px); }
.lum-btn--ghost { background: transparent; color: var(--ink); }
.lum-btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.lum-btn--light { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.lum-btn--light:hover { background: transparent; color: var(--ivory); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: color-mix(in srgb, var(--ivory) 88%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color .4s var(--ease), background .4s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); }
.site-header__inner {
	max-width: var(--maxw); margin-inline: auto;
	padding: 1.4rem var(--gutter);
	display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.site-title {
	font-family: var(--font-display);
	font-size: 1.6rem; font-weight: 600;
	letter-spacing: 0.04em;
}
.custom-logo { max-height: 56px; width: auto; }

.site-nav__list {
	list-style: none; display: flex; gap: 2.4rem; margin: 0; padding: 0;
}
.site-nav__list a {
	font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
	font-weight: 400; position: relative; padding-bottom: 4px;
}
.site-nav__list a::after {
	content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
	background: var(--terracotta); transition: width .4s var(--ease);
}
.site-nav__list a:hover::after,
.site-nav .current-menu-item > a::after { width: 100%; }

.nav-toggle {
	display: none; background: none; border: 0; padding: 0.5rem;
	flex-direction: column; gap: 6px; width: 40px;
}
.nav-toggle__bar { display: block; width: 26px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .35s var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
	position: relative; min-height: 92vh;
	display: flex; align-items: center; justify-content: center;
	text-align: center; color: var(--ivory);
	background-image: var(--hero-img); background-size: cover; background-position: center;
	overflow: hidden;
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(42,37,33,.35), rgba(42,37,33,.5));
}
.hero__content { position: relative; max-width: 760px; padding: 2rem var(--gutter); z-index: 2; }
.hero__eyebrow {
	font-size: 0.74rem; letter-spacing: 0.42em; text-transform: uppercase;
	margin: 0 0 1.6rem; opacity: 0;
	animation: rise 1s var(--ease) 0.2s forwards;
}
.hero__title {
	font-size: clamp(3.2rem, 2rem + 8vw, 8rem);
	font-weight: 500; font-style: italic; letter-spacing: 0;
	margin: 0 0 1.2rem; opacity: 0;
	animation: rise 1.1s var(--ease) 0.35s forwards;
}
.hero__lede {
	font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
	max-width: 540px; margin: 0 auto 2.6rem; opacity: 0;
	animation: rise 1.1s var(--ease) 0.5s forwards;
}
.hero__actions {
	display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
	opacity: 0; animation: rise 1.1s var(--ease) 0.65s forwards;
}
.hero__actions .lum-btn { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.hero__actions .lum-btn:hover { background: transparent; color: var(--ivory); }
.hero__actions .lum-btn--ghost { background: transparent; color: var(--ivory); }
.hero__actions .lum-btn--ghost:hover { background: var(--ivory); color: var(--ink); }
.hero__scroll {
	position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
	font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase; opacity: .8;
	z-index: 2;
}
.hero__scroll::after {
	content: ''; display: block; width: 1px; height: 40px; margin: 0.6rem auto 0;
	background: var(--ivory); animation: scrollline 2s var(--ease) infinite;
	transform-origin: top;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.hero__eyebrow, .hero__title, .hero__lede, .hero__actions { transform: translateY(22px); }
@keyframes scrollline { 0%,100% { transform: scaleY(.3); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ==========================================================================
   INTRO STATEMENT
   ========================================================================== */
.intro { padding: clamp(5rem, 12vh, 9rem) 0; }
.intro__inner { max-width: 960px; margin-inline: auto; padding-inline: var(--gutter); text-align: center; }
.intro__kicker {
	font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
	color: var(--terracotta); margin: 0 0 2rem;
}
.intro__statement {
	font-family: var(--font-display); font-style: italic; font-weight: 400;
	font-size: clamp(1.6rem, 1rem + 3.2vw, 3.1rem); line-height: 1.28;
	color: var(--ink); margin: 0;
}

/* ==========================================================================
   MASONRY GALLERY GRID
   ========================================================================== */
.featured { padding: 0 var(--gutter) clamp(5rem, 12vh, 9rem); max-width: var(--maxw); margin-inline: auto; }
.featured__head {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem;
	border-bottom: 1px solid var(--line); padding-bottom: 1.4rem;
}
.section-link { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); }
.section-link:hover { color: var(--ink); }

.masonry { columns: 3; column-gap: 1.2rem; }
.masonry__item {
	display: block; position: relative; margin-bottom: 1.2rem;
	break-inside: avoid; overflow: hidden; border-radius: var(--radius);
	background: var(--champagne);
}
.masonry__img { width: 100%; transition: transform 1s var(--ease), filter .6s var(--ease); }
.masonry__item:hover .masonry__img { transform: scale(1.05); filter: brightness(.85); }
.masonry__caption {
	position: absolute; inset: auto 0 0 0; padding: 1.4rem;
	display: flex; flex-direction: column; gap: .2rem; color: var(--ivory);
	background: linear-gradient(0deg, rgba(42,37,33,.7), transparent);
	opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.masonry__item:hover .masonry__caption { opacity: 1; transform: translateY(0); }
.masonry__title { font-family: var(--font-display); font-size: 1.4rem; }
.masonry__cat { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: .85; }

/* Filter bar (portfolio archive) */
.filter { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin: 0 0 3rem; }
.filter__btn {
	background: none; border: 1px solid var(--line); color: var(--ink-soft);
	font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
	padding: 0.6rem 1.3rem; border-radius: 50px;
	transition: all .35s var(--ease);
}
.filter__btn:hover { border-color: var(--ink); color: var(--ink); }
.filter__btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.masonry__item.is-hidden { display: none; }

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.testimonial { background: var(--ivory); padding: clamp(4.5rem, 12vh, 8rem) 0; text-align: center; }
.testimonial__inner { max-width: 880px; margin-inline: auto; padding-inline: var(--gutter); }
.testimonial__quote {
	font-family: var(--font-display); font-style: italic; font-weight: 500;
	font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.9rem); line-height: 1.28;
	color: var(--ink); margin: 0 0 1.5rem;
}
.testimonial__cite {
	font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.28em;
	text-transform: uppercase; color: var(--terracotta); margin: 0;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--champagne); padding: clamp(5rem, 12vh, 9rem) 0; }
.services__inner { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3.5rem; }
.service { position: relative; padding-top: 2.4rem; border-top: 1px solid var(--clay); }.service__num {
	position: absolute; top: -0.4em; right: 0;
	font-family: var(--font-display); font-style: italic; font-size: 2.6rem; color: var(--clay); opacity: .55;
}
.service__title { font-size: 1.9rem; margin-bottom: .6rem; }
.service p { color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta {
	position: relative; padding: clamp(6rem, 16vh, 11rem) var(--gutter);
	text-align: center; color: var(--ivory);
	background-image: var(--cta-img); background-size: cover; background-position: center;
}
.cta__overlay { position: absolute; inset: 0; background: rgba(42,37,33,.5); }
.cta__content { position: relative; max-width: 640px; margin-inline: auto; z-index: 2; }
.cta__title { font-size: clamp(2rem, 1.2rem + 3.6vw, 4rem); font-style: italic; }
.cta__text { margin: 0 0 2.4rem; font-size: 1.1rem; }

/* ==========================================================================
   PAGE HEADERS / CONTENT
   ========================================================================== */
.page-head { text-align: center; padding: clamp(4rem, 10vh, 7rem) var(--gutter) 2.5rem; max-width: 820px; margin-inline: auto; }
.page-head__kicker { font-size: 0.76rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--terracotta); margin: 0 0 1rem; }
.page-head__title { font-size: clamp(2.6rem, 1.6rem + 4vw, 5rem); font-style: italic; }
.page-head__lede { color: var(--ink-soft); font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }

.entry-content { padding-bottom: 5rem; font-size: 1.08rem; }
.entry-content > * + * { margin-top: 1.4rem; }
.entry-content h2 { font-size: 2rem; margin-top: 2.5rem; }
.entry-content h3 { font-size: 1.5rem; margin-top: 2rem; }
.entry-content a { color: var(--terracotta); border-bottom: 1px solid currentColor; }
.entry-content img { border-radius: var(--radius); margin-block: 2rem; }
.entry-content blockquote {
	border-left: 2px solid var(--clay); padding-left: 1.5rem; margin-left: 0;
	font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--ink-soft);
}

/* ==========================================================================
   GALLERY SINGLE
   ========================================================================== */
.gallery-single__head {
	position: relative; min-height: 70vh; display: flex; align-items: flex-end;
	color: var(--ivory); background-image: var(--g-img); background-size: cover; background-position: center;
}
.gallery-single__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,37,33,.2), rgba(42,37,33,.65)); }
.gallery-single__intro { position: relative; z-index: 2; padding: var(--gutter); max-width: var(--maxw); margin-inline: auto; width: 100%; }
.gallery-single__kicker { font-size: 0.76rem; letter-spacing: 0.3em; text-transform: uppercase; margin: 0 0 .6rem; }
.gallery-single__title { font-size: clamp(2.6rem, 1.6rem + 4vw, 5.5rem); font-style: italic; margin: 0; }
.gallery-single__body { padding: clamp(3rem, 8vh, 5rem) 0; font-size: 1.08rem; }
.gallery-single__body > * + * { margin-top: 1.4rem; }
.gallery-single__body img { border-radius: var(--radius); }

.gallery-nav {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	border-top: 1px solid var(--line); padding: 2rem 0 5rem; font-size: 0.8rem;
	letter-spacing: 0.12em; text-transform: uppercase;
}
.gallery-nav__all { color: var(--terracotta); }
.gallery-nav a:hover { color: var(--ink); }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.lum-contact-form { max-width: 720px; margin: 0 auto 5rem; }
.lum-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.lum-field { display: block; margin-bottom: 1.4rem; }
.lum-field > span {
	display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--ink-soft); margin-bottom: .5rem;
}
.lum-field input, .lum-field select, .lum-field textarea {
	width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 0.95rem 1rem; transition: border-color .3s var(--ease);
}
.lum-field input:focus, .lum-field select:focus, .lum-field textarea:focus {
	outline: none; border-color: var(--clay);
}
.lum-hp { position: absolute; left: -9999px; }
.lum-form-success, .lum-form-error {
	padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.6rem; font-size: .95rem;
}
.lum-form-success { background: #e9f0e4; color: #3c5a2e; }
.lum-form-error { background: #f6e2dc; color: #8a3a22; }

/* ==========================================================================
   BLOG / POST LIST
   ========================================================================== */
.post-list { display: grid; gap: 3rem; padding-bottom: 4rem; }
.post-card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: center; }
.post-card__media img { border-radius: var(--radius); }
.post-card__title { font-size: 2rem; }
.post-card__meta { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.pagination { padding: 2rem 0 5rem; text-align: center; }
.pagination .page-numbers { padding: .4rem .8rem; letter-spacing: .1em; }
.pagination .current { color: var(--terracotta); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--ivory); padding: clamp(4rem, 10vh, 6rem) 0 0; }
.site-footer__inner {
	max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
	display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
}
.site-footer__mark { font-family: var(--font-display); font-size: 2rem; font-weight: 600; letter-spacing: .04em; }
.site-footer__tagline { color: color-mix(in srgb, var(--ivory) 70%, transparent); margin: .6rem 0 0; max-width: 30ch; }
.site-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.site-footer__list a { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.site-footer__list a:hover { opacity: 1; color: var(--clay); }
.footer-widget__title { font-family: var(--font-body); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; opacity: .6; }
.site-footer__base {
	margin-top: clamp(3rem, 8vh, 5rem); border-top: 1px solid rgba(247,241,232,.12);
	padding: 1.6rem var(--gutter); text-align: center;
}
.site-footer__base p { margin: 0; font-size: .74rem; letter-spacing: .08em; color: color-mix(in srgb, var(--ivory) 55%, transparent); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
	.masonry { columns: 2; }
	.services__grid { grid-template-columns: 1fr; gap: 2rem; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
	.post-card { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
	.nav-toggle { display: flex; }
	.site-nav {
		position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
		background: var(--ivory); padding: 6rem 2rem 2rem;
		transform: translateX(100%); transition: transform .45s var(--ease);
		box-shadow: -20px 0 50px rgba(42,37,33,.12); z-index: 90;
	}
	.site-nav.is-open { transform: translateX(0); }
	.site-nav__list { flex-direction: column; gap: 1.6rem; }
	.site-nav__list a { font-size: 0.9rem; }
	.lum-field-row { grid-template-columns: 1fr; gap: 0; }
	.site-footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.masonry { columns: 1; }
	.hero__actions { flex-direction: column; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
	.hero__eyebrow, .hero__title, .hero__lede, .hero__actions { opacity: 1; transform: none; }
}

/* ==========================================================================
   INTERACTIVE / REACTIVE ENHANCEMENTS
   ========================================================================== */

/* Scroll reveal — elements start hidden, rise into view */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
/* Stagger items within a grid for a cascading effect */
.masonry__item.reveal:nth-child(2) { transition-delay: .06s; }
.masonry__item.reveal:nth-child(3) { transition-delay: .12s; }
.masonry__item.reveal:nth-child(4) { transition-delay: .18s; }
.masonry__item.reveal:nth-child(5) { transition-delay: .24s; }
.masonry__item.reveal:nth-child(6) { transition-delay: .30s; }
.service.reveal:nth-child(2) { transition-delay: .08s; }
.service.reveal:nth-child(3) { transition-delay: .16s; }

/* Sticky header hide-on-scroll-down */
.site-header[data-header] { transition: transform .4s var(--ease), background-color .4s var(--ease), box-shadow .4s var(--ease); }
.site-header.is-hidden { transform: translateY(-100%); }

/* Animated hamburger (driven by .is-active as well as aria-expanded) */
.nav-toggle.is-active .nav-toggle__bar:first-child { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle__bar:last-child { transform: translateY(-7.5px) rotate(-45deg); }

/* Lock body scroll when nav / lightbox open */
body.nav-open { overflow: hidden; }

/* Active nav link */
.site-nav__list a.is-current { color: var(--terracotta); }
.site-nav__list a.is-current::after { width: 100%; }

/* Image hover affordance in grids */
.masonry__item { overflow: hidden; }
.masonry__item img { transition: transform .8s var(--ease), filter .6s var(--ease); display: block; }
.masonry__item:hover img { transform: scale(1.045); }

/* Lightbox */
.lum-lightbox {
	position: fixed; inset: 0; z-index: 200;
	display: none; align-items: center; justify-content: center;
	background: rgba(28, 24, 20, .92); backdrop-filter: blur(4px);
	padding: clamp(1rem, 4vw, 3rem);
}
.lum-lightbox.is-open { display: flex; animation: lumFade .3s var(--ease); }
@keyframes lumFade { from { opacity: 0; } to { opacity: 1; } }
.lum-lightbox__stage { margin: 0; max-width: 92vw; max-height: 86vh; }
.lum-lightbox__stage img {
	max-width: 92vw; max-height: 86vh; width: auto; height: auto;
	object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.5);
	animation: lumZoom .35s var(--ease);
}
@keyframes lumZoom { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lum-lightbox__close, .lum-lightbox__nav {
	position: absolute; background: transparent; border: 0; color: var(--ivory);
	cursor: pointer; font-family: var(--font-display); line-height: 1;
	transition: opacity .25s var(--ease), transform .25s var(--ease); opacity: .75;
}
.lum-lightbox__close:hover, .lum-lightbox__nav:hover { opacity: 1; }
.lum-lightbox__close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); font-size: 2.6rem; }
.lum-lightbox__nav { top: 50%; transform: translateY(-50%); font-size: clamp(2.5rem, 6vw, 4.5rem); padding: .2em; }
.lum-lightbox__prev { left: clamp(.4rem,2vw,1.5rem); }
.lum-lightbox__next { right: clamp(.4rem,2vw,1.5rem); }
.lum-lightbox__nav:hover { transform: translateY(-50%) scale(1.12); }

/* Buttons get a subtle reactive press + sheen */
.lum-btn { transition: background-color .3s var(--ease), color .3s var(--ease), transform .15s var(--ease), box-shadow .3s var(--ease); }
.lum-btn:active { transform: translateY(1px) scale(.99); }

/* Form fields: reactive focus */
.lum-field input, .lum-field textarea, .lum-field select {
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.lum-field input:focus, .lum-field textarea:focus, .lum-field select:focus {
	outline: none; border-color: var(--terracotta);
	box-shadow: 0 0 0 3px rgba(169,136,82,.16);
}

/* ==========================================================================
   RESPONSIVE REFINEMENTS (desktop + mobile)
   ========================================================================== */
/* Larger screens: let the masonry breathe with a 4th column */
@media (min-width: 1500px) {
	.masonry { columns: 4; }
}
/* Tablet */
@media (max-width: 900px) {
	.lum-lightbox__nav { font-size: 2.6rem; }
}
/* Mobile: tighten type, ensure tap targets ≥44px, single-column flows */
@media (max-width: 680px) {
	.site-nav__list a { font-size: 1.05rem; padding: .35em 0; display: inline-block; }
	.nav-toggle { width: 44px; height: 44px; }
	.lum-btn { width: 100%; text-align: center; }
	.hero__actions .lum-btn { width: 100%; }
	.filter { gap: .5rem; }
	.filter__btn { padding: .5em .9em; }
	.testimonial__quote { font-size: clamp(1.4rem, 4.5vw, 2rem); }
}
/* Very small phones */
@media (max-width: 380px) {
	.site-header__inner { padding-inline: 1rem; }
}
/* Touch devices: disable hover zoom (prevents sticky hover states) */
@media (hover: none) {
	.masonry__item:hover img { transform: none; }
	.masonry__item img { cursor: zoom-in; }
}

/* Reduced motion: neutralise reveals + lightbox animations */
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1 !important; transform: none !important; }
	.lum-lightbox.is-open, .lum-lightbox__stage img { animation: none !important; }
	.site-header.is-hidden { transform: none !important; }
}

/* Gallery image grid on single portfolio pages */
.gallery-grid {
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: clamp(.6rem, 1.5vw, 1.2rem); margin: clamp(2rem, 5vw, 3.5rem) 0;
}
.gallery-grid .wp-block-image { margin: 0; overflow: hidden; border-radius: 2px; }
.gallery-grid .wp-block-image:first-child { grid-column: 1 / -1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: transform .8s var(--ease); }
.gallery-grid .wp-block-image:hover img { transform: scale(1.04); }
@media (max-width: 600px) {
	.gallery-grid { grid-template-columns: 1fr; }
}
