/* ==========================================================================
   WALLING PHOTOGRAPHY — MAIN STYLESHEET
   Design tokens: deep navy + royal blue + warm gold (kente/print accent)
   Display face: Playfair Display · Body/UI face: Inter
   Signature motif: "contact sheet" sprocket-edge frame, used around
   feature imagery and as a section divider — a nod to film & print,
   the two trades this business is actually built on.
   ========================================================================== */

:root {
	/* Color tokens */
	--navy-950: #07142B;
	--navy-900: #0B1F3A;
	--navy-800: #122B4D;
	--blue-600: #1E4D8C;
	--blue-500: #2C66B0;
	--blue-100: #E7EEF7;
	--gold-500: #C9A24B;
	--gold-400: #D9B86B;
	--gold-100: #F6EDD9;
	--ink-900: #1A1D24;
	--ink-700: #3A3F4B;
	--ink-500: #6B7280;
	--paper-0: #FFFFFF;
	--paper-50: #F7F8FA;
	--paper-100: #EEF1F5;
	--line: #E1E6ED;

	/* Type */
	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Spacing scale */
	--space-1: 0.5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2rem;
	--space-5: 3rem;
	--space-6: 4.5rem;
	--space-7: 7rem;

	/* Layout */
	--container-max: 1240px;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--header-h: 88px;

	/* Motion */
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink-900);
	background: var(--paper-0);
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--navy-900);
	margin: 0 0 0.5em;
	line-height: 1.15;
	font-weight: 700;
}
p { margin: 0 0 1em; color: var(--ink-700); }

@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;
	}
}

:focus-visible {
	outline: 3px solid var(--gold-500);
	outline-offset: 2px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute;
	left: -9999px;
}
.skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 9999;
	position: fixed;
	background: var(--navy-900);
	color: #fff;
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius-sm);
}

.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-4);
}
.container.narrow {
	max-width: 800px;
}

.eyebrow {
	font-family: var(--font-body);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.78rem;
	color: var(--gold-500);
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
}
.eyebrow::before {
	content: '';
	width: 22px;
	height: 2px;
	background: var(--gold-500);
	display: inline-block;
}

.section {
	padding: var(--space-6) 0;
}
@media (max-width: 768px) {
	.section { padding: var(--space-5) 0; }
}
.section-head {
	max-width: 640px;
	margin-bottom: var(--space-5);
}
.section-head.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.section-head h2 {
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
	margin-top: 0.4em;
}
.section-head .lede {
	font-size: 1.05rem;
	color: var(--ink-500);
}

.bg-navy { background: var(--navy-900); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.75); }
.bg-paper { background: var(--paper-50); }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.85em 1.6em;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
	white-space: nowrap;
}
.btn-primary {
	background: var(--gold-500);
	color: var(--navy-950);
}
.btn-primary:hover {
	background: var(--gold-400);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px -8px rgba(201,162,75,0.55);
}
.btn-outline {
	border-color: rgba(255,255,255,0.5);
	color: inherit;
}
.btn-outline:hover {
	border-color: var(--gold-500);
	background: rgba(201,162,75,0.1);
}
.btn-navy {
	background: var(--navy-900);
	color: #fff;
}
.btn-navy:hover {
	background: var(--blue-600);
	transform: translateY(-2px);
}
.btn-block { width: 100%; }
.btn-lg { padding: 1em 2em; font-size: 1rem; }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(11,31,58,0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
	box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.site-header.is-scrolled {
	box-shadow: 0 12px 30px -16px rgba(0,0,0,0.45);
}
.header-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-4);
	height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .header-inner {
	height: 68px;
}
.site-logo {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: #fff;
	flex-shrink: 0;
}
.site-logo img { max-height: 56px; width: auto; }
.logo-mark { color: var(--gold-500); display: inline-flex; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text-main {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.01em;
}
.logo-text-sub {
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold-400);
}
.primary-nav .nav-menu {
	display: flex;
	gap: var(--space-4);
}
.primary-nav .nav-menu a {
	color: rgba(255,255,255,0.85);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.5rem 0;
	position: relative;
}
.primary-nav .nav-menu a::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -2px;
	height: 2px;
	background: var(--gold-500);
	transform: scaleX(0);
	transition: transform 0.25s var(--ease);
}
.primary-nav .nav-menu a:hover::after,
.primary-nav .nav-menu .current-menu-item a::after {
	transform: scaleX(1);
}
.header-actions {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}
.header-cta { padding: 0.65em 1.4em; font-size: 0.88rem; }
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	padding: 0;
}
.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	margin: 0 auto;
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
	display: none;
	max-height: 0;
	overflow: hidden;
	background: var(--navy-950);
	transition: max-height 0.35s var(--ease);
}
.mobile-nav.is-open { max-height: 80vh; overflow-y: auto; }
.mobile-nav nav { padding: var(--space-3) var(--space-4) 0; }
.mobile-nav-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-menu a {
	display: block;
	padding: 0.9rem 0;
	color: #fff;
	font-weight: 500;
}
.mobile-cta { margin: var(--space-3) var(--space-4); }
.mobile-nav-contact {
	text-align: center;
	padding-bottom: var(--space-3);
	color: var(--gold-400);
	font-weight: 600;
}

@media (max-width: 900px) {
	.primary-nav { display: none; }
	.hamburger { display: flex; }
	.mobile-nav { display: block; }
	.header-cta { display: none; }
}

/* ==========================================================================
   SPROCKET / CONTACT-SHEET SIGNATURE MOTIF
   A film-strip edge used to frame feature photography and as a divider —
   grounded in the business's own trade (photography + print).
   ========================================================================== */
.sprocket-frame {
	position: relative;
	padding: 14px;
	background: var(--navy-950);
	border-radius: var(--radius-md);
}
.sprocket-frame::before,
.sprocket-frame::after {
	content: '';
	position: absolute;
	left: 6px; right: 6px;
	height: 14px;
	background-image: radial-gradient(circle, var(--navy-950) 3px, transparent 3.2px),
		repeating-linear-gradient(to right, var(--gold-500) 0 8px, transparent 8px 18px);
	background-size: 18px 100%, auto;
	background-repeat: repeat-x;
	background-position: center;
	opacity: 0.9;
}
.sprocket-frame::before { top: -1px; }
.sprocket-frame::after { bottom: -1px; }
.sprocket-frame .frame-inner {
	border-radius: var(--radius-sm);
	overflow: hidden;
	line-height: 0;
}

.divider-strip {
	height: 28px;
	background: var(--navy-900);
	background-image: repeating-linear-gradient(to right, var(--gold-500) 0 10px, transparent 10px 26px);
	background-size: 26px 10px;
	background-repeat: repeat-x;
	background-position: center;
	opacity: 0.85;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
	background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
	color: #fff;
	padding: var(--space-7) 0 var(--space-6);
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 85% 20%, rgba(201,162,75,0.18), transparent 45%);
	pointer-events: none;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: var(--space-6);
	align-items: center;
	position: relative;
}
.hero-copy h1 {
	color: #fff;
	font-size: clamp(2.3rem, 4.2vw, 3.4rem);
	margin-top: 0.5em;
}
.hero-sub {
	color: rgba(255,255,255,0.78);
	font-size: 1.1rem;
	max-width: 480px;
}
.hero-ctas {
	display: flex;
	gap: var(--space-2);
	flex-wrap: wrap;
	margin-top: var(--space-3);
}
.hero-ctas.center { justify-content: center; }
.hero-media {
	position: relative;
	justify-self: center;
	max-width: 380px;
	width: 100%;
}
.hero-media img { width: 100%; }
.hero-badge {
	position: absolute;
	bottom: -22px;
	left: -22px;
	background: var(--gold-500);
	color: var(--navy-950);
	padding: var(--space-2) var(--space-3);
	border-radius: var(--radius-md);
	box-shadow: 0 14px 34px -10px rgba(0,0,0,0.45);
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.hero-badge-num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.7rem;
}
.hero-badge-label {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	max-width: 110px;
}

@media (max-width: 900px) {
	.hero-grid { grid-template-columns: 1fr; text-align: center; }
	.hero-sub { margin-left: auto; margin-right: auto; }
	.hero-ctas { justify-content: center; }
	.hero-media { margin-top: var(--space-4); max-width: 300px; }
	.hero-badge { left: 50%; transform: translateX(-50%); bottom: -18px; }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
	background: var(--paper-50);
	border-bottom: 1px solid var(--line);
}
.trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: var(--space-4) 0;
	text-align: center;
}
.trust-item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: var(--space-2) var(--space-3);
	border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	color: var(--navy-900);
}
.trust-label {
	font-size: 0.85rem;
	color: var(--ink-500);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
@media (max-width: 700px) {
	.trust-grid { grid-template-columns: 1fr; gap: var(--space-2); }
	.trust-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: var(--space-2); }
	.trust-item:last-child { border-bottom: none; }
}

/* ==========================================================================
   SERVICE CARDS (homepage preview + services page grid)
   ========================================================================== */
.service-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}
.service-card {
	background: var(--paper-0);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
	display: flex;
	flex-direction: column;
}
.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px -24px rgba(11,31,58,0.25);
}
.service-card-media {
	aspect-ratio: 4/3;
	overflow: hidden;
}
.service-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card h3, .service-card p, .service-card .card-link {
	padding: 0 var(--space-3);
}
.service-card h3 { margin-top: var(--space-3); font-size: 1.25rem; }
.service-card p { font-size: 0.94rem; flex-grow: 1; }
.service-card .card-link {
	display: block;
	font-weight: 700;
	color: var(--blue-600);
	margin-bottom: var(--space-3);
}
@media (max-width: 900px) {
	.service-cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   TESTIMONIAL STRIP
   ========================================================================== */
.testimonial-strip { padding: var(--space-6) 0; }
.testimonial-inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
.quote-mark { margin-bottom: var(--space-2); }
.testimonial-quote {
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 2.4vw, 1.7rem);
	color: #fff;
	font-style: italic;
	font-weight: 500;
	line-height: 1.45;
}
.testimonial-author {
	color: var(--gold-400);
	font-weight: 600;
	margin-top: var(--space-2);
}

/* ==========================================================================
   ABOUT PREVIEW
   ========================================================================== */
.about-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: var(--space-6);
	align-items: center;
}
.about-media img {
	border-radius: var(--radius-lg);
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
}
.about-copy p { font-size: 1.05rem; }
@media (max-width: 900px) {
	.about-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta { padding: var(--space-6) 0; text-align: center; }
.final-cta-inner { max-width: 620px; margin: 0 auto; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ==========================================================================
   GENERIC PAGE INTRO BAND
   ========================================================================== */
.page-intro {
	padding: var(--space-6) 0 var(--space-5);
	text-align: left;
}
.page-intro h1 { color: #fff; margin-top: 0.4em; font-size: clamp(2.1rem, 3.6vw, 2.9rem); }
.page-intro-sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 600px; }

.about-grid.reverse { grid-template-columns: 0.9fr 1.1fr; }

/* ==========================================================================
   MISSION / VISION CARDS
   ========================================================================== */
.mv-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-4);
}
.mv-card {
	background: var(--paper-0);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: var(--space-4);
}
.mv-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	border-radius: 50%;
	background: var(--gold-100);
	color: var(--gold-500);
	margin-bottom: var(--space-2);
}
@media (max-width: 700px) {
	.mv-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   VALUE PILLARS
   ========================================================================== */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-3);
}
.pillar {
	padding: var(--space-3);
	border-top: 3px solid var(--gold-500);
	background: var(--paper-0);
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	box-shadow: 0 1px 0 var(--line), 0 18px 36px -28px rgba(11,31,58,0.25);
}
.pillar-num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--blue-500);
	display: block;
	margin-bottom: 0.4rem;
}
.pillar h3 { font-size: 1.1rem; }
.pillar p { font-size: 0.92rem; }
@media (max-width: 900px) {
	.pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.pillar-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   TEAM GRID
   ========================================================================== */
.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}
.team-card {
	background: var(--paper-0);
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--line);
}
.team-photo { aspect-ratio: 4/3; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { padding: var(--space-3) var(--space-3) 0; font-size: 1.1rem; }
.team-card p { padding: 0 var(--space-3) var(--space-3); font-size: 0.92rem; }
@media (max-width: 900px) {
	.team-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SERVICE DETAIL SECTIONS (Services page)
   ========================================================================== */
.service-detail-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: var(--space-6);
	align-items: start;
}
.service-detail-grid.reverse { grid-template-columns: 1.15fr 0.85fr; }
.service-detail-grid.reverse .service-detail-copy { order: 1; }
.service-detail-grid.reverse .service-detail-media { order: 2; }
.service-detail-media img {
	border-radius: var(--radius-lg);
	width: 100%;
	position: sticky;
	top: calc(var(--header-h) + 24px);
}
.service-detail-copy h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin-top: 0.3em; }
.service-detail-copy > p { font-size: 1.02rem; max-width: 560px; }

.pricing-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-3);
	margin-top: var(--space-4);
}
.tier {
	background: var(--paper-0);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: var(--space-3);
	display: flex;
	flex-direction: column;
	position: relative;
}
.tier-featured {
	border-color: var(--gold-500);
	box-shadow: 0 20px 44px -22px rgba(201,162,75,0.45);
}
.tier-badge {
	position: absolute;
	top: -12px;
	left: var(--space-3);
	background: var(--gold-500);
	color: var(--navy-950);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.3em 0.7em;
	border-radius: 999px;
}
.tier h3 { font-size: 1.05rem; margin-bottom: 0.2em; }
.tier-price {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--blue-600);
	margin-bottom: 0.6em;
}
.tier-features {
	flex-grow: 1;
	margin-bottom: var(--space-3);
}
.tier-features li {
	font-size: 0.88rem;
	color: var(--ink-700);
	padding-left: 1.4em;
	position: relative;
	margin-bottom: 0.5em;
}
.tier-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--gold-500);
	font-weight: 700;
}
.price-note {
	font-size: 0.82rem;
	color: var(--ink-500);
	margin-top: var(--space-3);
}

@media (max-width: 1000px) {
	.service-detail-grid, .service-detail-grid.reverse {
		grid-template-columns: 1fr;
	}
	.service-detail-grid.reverse .service-detail-copy,
	.service-detail-grid.reverse .service-detail-media {
		order: initial;
	}
	.service-detail-media img { position: static; max-width: 360px; margin: 0 auto; }
	.pricing-tiers { grid-template-columns: 1fr; }
}
@media (min-width: 1001px) and (max-width: 1200px) {
	.pricing-tiers { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GALLERY: FILTER BAR
   ========================================================================== */
.filter-bar {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	margin-bottom: var(--space-4);
}
.filter-btn {
	background: var(--paper-0);
	border: 1px solid var(--line);
	color: var(--ink-700);
	padding: 0.55em 1.3em;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--blue-500); color: var(--blue-600); }
.filter-btn.is-active {
	background: var(--navy-900);
	border-color: var(--navy-900);
	color: #fff;
}

/* ==========================================================================
   GALLERY: MASONRY GRID
   ========================================================================== */
.masonry-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-3);
	grid-auto-flow: dense;
}
.masonry-item {
	margin: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--paper-100);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.masonry-item.is-hidden {
	display: none;
}
/* Vary heights for a masonry feel using nth-child spans */
.masonry-item:nth-child(3n+1) { grid-row: span 2; }
.masonry-link {
	display: block;
	position: relative;
	height: 100%;
}
.masonry-item:nth-child(3n+1) .masonry-link { aspect-ratio: 3/4; }
.masonry-item:not(:nth-child(3n+1)) .masonry-link { aspect-ratio: 1/1; }
.masonry-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}
.masonry-link:hover img { transform: scale(1.08); }
.masonry-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(7,20,43,0.85) 100%);
	opacity: 0;
	transition: opacity 0.3s var(--ease);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: var(--space-2);
}
.masonry-link:hover .masonry-overlay { opacity: 1; }
.masonry-cat {
	color: #fff;
	font-weight: 600;
	font-size: 0.85rem;
}
.masonry-zoom {
	color: var(--gold-400);
	font-size: 1.4rem;
	line-height: 1;
	border: 1px solid var(--gold-400);
	border-radius: 50%;
	width: 28px; height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-admin-note {
	margin-top: var(--space-3);
	font-size: 0.85rem;
	color: var(--ink-500);
	background: var(--gold-100);
	border: 1px dashed var(--gold-500);
	border-radius: var(--radius-sm);
	padding: var(--space-2) var(--space-3);
}

@media (max-width: 1000px) {
	.masonry-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
	.masonry-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
	.masonry-item:nth-child(3n+1) { grid-row: span 1; }
	.masonry-item:nth-child(3n+1) .masonry-link { aspect-ratio: 1/1; }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(7,20,43,0.94);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-4);
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
	max-width: min(90vw, 900px);
	max-height: 86vh;
	margin: 0;
	text-align: center;
}
.lightbox-figure img {
	max-height: 78vh;
	width: auto;
	margin: 0 auto;
	border-radius: var(--radius-sm);
	box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.lightbox-figure figcaption {
	color: #fff;
	margin-top: var(--space-2);
	font-family: var(--font-display);
	font-size: 1.05rem;
}
.lightbox-close, .lightbox-nav {
	position: absolute;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.25);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.lightbox-close {
	top: var(--space-3);
	right: var(--space-3);
	width: 44px; height: 44px;
	font-size: 1.6rem;
	line-height: 1;
}
.lightbox-nav {
	top: 50%;
	transform: translateY(-50%);
	width: 52px; height: 52px;
	font-size: 1.8rem;
}
.lightbox-prev { left: var(--space-3); }
.lightbox-next { right: var(--space-3); }
@media (max-width: 700px) {
	.lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }
	.lightbox-close { width: 38px; height: 38px; font-size: 1.3rem; }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr;
	gap: var(--space-5);
	align-items: start;
}

.enquiry-toggle {
	display: flex;
	background: var(--paper-100);
	border-radius: var(--radius-md);
	padding: 5px;
	margin-bottom: var(--space-4);
}
.toggle-btn {
	flex: 1;
	background: transparent;
	border: none;
	padding: 0.9em 1em;
	border-radius: calc(var(--radius-md) - 4px);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--ink-500);
	transition: all 0.25s var(--ease);
}
.toggle-btn.is-active {
	background: var(--navy-900);
	color: #fff;
	box-shadow: 0 10px 22px -10px rgba(11,31,58,0.45);
}

.contact-form {
	background: var(--paper-0);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: var(--space-4);
}
.form-row { margin-bottom: var(--space-3); }
.form-row-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3);
}
.form-row label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.4em;
	color: var(--navy-900);
}
.req { color: #C0392B; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row input[type="file"],
.form-row select,
.form-row textarea {
	width: 100%;
	padding: 0.75em 0.9em;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.95rem;
	background: var(--paper-50);
	color: var(--ink-900);
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
	border-color: var(--blue-500);
	background: #fff;
	outline: none;
}
.form-row textarea { resize: vertical; }
.field-hint { font-size: 0.78rem; color: var(--ink-500); margin-top: 0.4em; margin-bottom: 0; }
.form-panel { animation: fadein 0.3s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

.form-feedback {
	margin-top: var(--space-3);
	padding: 0.8em 1em;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	font-weight: 600;
	display: none;
}
.form-feedback.is-success {
	display: block;
	background: #E6F4EA;
	color: #1E7B34;
	border: 1px solid #BFE6CB;
}
.form-feedback.is-error {
	display: block;
	background: #FBEAEA;
	color: #B3261E;
	border: 1px solid #F3C8C6;
}
.form-feedback.is-loading {
	display: block;
	background: var(--paper-100);
	color: var(--ink-500);
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-3); }
.info-card {
	background: var(--paper-50);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: var(--space-3);
}
.info-card h3 { font-size: 1rem; margin-bottom: 0.5em; }
.info-card p { margin-bottom: var(--space-2); font-size: 0.94rem; }
.info-card p:last-child { margin-bottom: 0; }

.map-section iframe { display: block; }

@media (max-width: 900px) {
	.contact-grid { grid-template-columns: 1fr; }
	.form-row-split { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GENERIC ARTICLE (index.php fallback)
   ========================================================================== */
.generic-page { padding: var(--space-6) 0; }
.generic-article .entry-title { font-size: 2rem; }
.entry-content > * + * { margin-top: 1em; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
	background: var(--navy-950);
	color: rgba(255,255,255,0.78);
	padding-top: var(--space-6);
}
.footer-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-4) var(--space-5);
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
	gap: var(--space-4);
}
.footer-logo { display: inline-flex; flex-direction: column; color: #fff; margin-bottom: var(--space-2); }
.footer-logo img { max-height: 48px; }
.footer-tagline { font-style: italic; font-family: var(--font-display); color: var(--gold-400); max-width: 280px; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: var(--space-2); }
.footer-socials a {
	width: 36px; height: 36px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	transition: all 0.25s var(--ease);
}
.footer-socials a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }
.footer-heading {
	color: #fff;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: var(--space-2);
}
.footer-list li, .footer-menu li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer-list a, .footer-menu a { color: rgba(255,255,255,0.78); transition: color 0.2s var(--ease); }
.footer-list a:hover, .footer-menu a:hover { color: var(--gold-400); }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: var(--space-3) var(--space-4);
	text-align: center;
	font-size: 0.82rem;
}
@media (max-width: 900px) {
	.footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.footer-inner { grid-template-columns: 1fr; text-align: center; }
	.footer-socials { justify-content: center; }
	.footer-tagline { margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 58px; height: 58px;
	background: #25D366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
	z-index: 400;
	transition: transform 0.25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
