/* ==========================================================================
   Red Bark Studio — main.css
   Palette: cream #FDFBF7 · ink #1A1A1A · bark #8B3A24 · stone #E8E3DC · grey #9A9590
   Type: Cormorant Garamond (serif) / Inter (sans)
   ========================================================================== */

:root {
	--cream: #F3EEE5;
	--ink: #1A1A1A;
	--bark: #8B3A24;
	--stone: #DED6C9;
	--grey: #9A9590;
	--display: 'Gabuters', 'Cormorant Garamond', Georgia, serif;
	--serif: 'Cormorant Garamond', Georgia, serif;
	--sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
	--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--space-section: clamp(64px, 10vw, 120px);
}

@font-face {
	font-family: 'Gabuters';
	src: url('../fonts/Gabuters-core.woff2') format('woff2'),
		url('../fonts/Gabuters.otf') format('opentype');
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--sans);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.02em;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: opacity 0.3s var(--ease); }
a:hover { opacity: 0.6; }

.container { width: min(1240px, 92vw); margin-inline: auto; }
.container--narrow { width: min(760px, 92vw); }
.prose p { margin: 0 0 1.4em; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin: 0; }

.eyebrow {
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--grey);
	margin: 0 0 18px;
}

.section-title { font-size: clamp(32px, 4.5vw, 48px); }
.page-title { font-size: clamp(30px, 4vw, 44px); }
.page-sub { color: var(--grey); max-width: 620px; margin: 18px 0 0; }

.section { padding-block: var(--space-section); }
.page-head { padding-block: clamp(120px, 14vw, 180px) clamp(32px, 5vw, 56px); }

.hairline { border: 0; border-top: 1px solid var(--stone); margin: 24px 0; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
	position: absolute;
	inset-inline: 0;
	top: 0;
	z-index: 100;
	padding-block: 14px;
	transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
body.scrolled .site-header,
.site-header.is-stuck {
	position: fixed;
	background: rgba(243, 238, 229, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 var(--stone);
	padding-block: 14px;
}
.site-header__inner { width: min(1240px, 92vw); margin-inline: auto; text-align: center; }

.site-logo {
	font-family: var(--display);
	font-size: clamp(34px, 6vw, 68px);
	font-weight: 400;
	letter-spacing: 0.06em;
	color: var(--ink);
	white-space: nowrap;
}
a.site-logo:hover { opacity: 0.7; }

.site-nav { margin-top: 0; border-top: 1px solid var(--stone); padding-top: 0; }
.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 36px;
}
.nav-menu a {
	display: block;
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 6px 0;
}
.nav-menu .menu-item { position: relative; }
.nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	background: #F3EEE5;
	border: 1px solid var(--stone);
	box-shadow: 0 8px 30px rgba(26, 26, 26, 0.12);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	min-width: 180px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-menu .menu-item-has-children:hover .sub-menu,
.nav-menu .menu-item-has-children:focus-within .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
/* Roll-over: slightly darker, same tone (no hue shift) */
.nav-menu .sub-menu a {
	transition: color 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu a:focus-visible {
	color: #2e2b28;              /* darker still — same warm tone family */
	background: rgba(222, 214, 201, 0.65);
	opacity: 1;
}
.nav-menu > li > a:hover,
.nav-menu > li > a:focus-visible {
	color: #000;                 /* darker than ink #1A1A1A — same tone */
	opacity: 1;
}
/* White-over-hero variant keeps white but signals hover with bark tint */
body.home:not(.scrolled):not(.nav-open) .site-nav .nav-menu > li > a:hover,
body.home:not(.scrolled):not(.nav-open) .site-nav .nav-menu > li > a:focus-visible {
	color: #fff;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
	border-bottom: 1px solid rgba(255, 255, 255, 0.85);
	padding-bottom: 2px;
}
.nav-menu .sub-menu a { padding: 8px 22px; color: #55504b; }

/* Header (logo + nav): white over the hero so it stands out, ink after scroll */
body.home:not(.scrolled):not(.nav-open) .site-header .site-logo,
body.home:not(.scrolled):not(.nav-open) .site-nav .nav-menu > li > a,
body.home:not(.scrolled):not(.nav-open) .site-nav .nav-menu > li > a:hover {
	color: #fff;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
body.scrolled .site-nav .nav-menu a { color: var(--ink); }
body.scrolled .site-header .site-logo { color: var(--ink); }

/* Burger — white over hero, ink after scroll */
.nav-toggle {
	display: none;
	position: absolute;
	right: max(4vw, 18px);
	top: 60px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 10px;
	z-index: 210;
}
.nav-toggle__bar {
	display: block;
	width: 26px;
	height: 1.5px;
	background: #fff;
	margin: 6px 0;
	transition: background 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
body.scrolled .nav-toggle__bar,
body:not(.has-hero) .nav-toggle__bar { background: var(--ink); }
/* burger white over the home hero, ink after scroll */
body.home:not(.scrolled):not(.nav-open) .nav-toggle__bar {
	background: #fff;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
body.nav-open .nav-toggle__bar { background: var(--ink); }
body.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile fullscreen overlay */
.mobile-nav {
	position: fixed;
	inset: 0;
	background: var(--cream);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; }
/* any list inside the mobile overlay stacks vertically (works for wp menus and the fallback) */
.mobile-nav ul {
	list-style: none; margin: 0; padding: 0; text-align: center;
	display: block !important; width: 100%;
}
.mobile-nav > nav > ul > li { padding: 10px 0; }
.mobile-nav > nav > ul > li > a {
	font-family: var(--serif); font-size: 26px; letter-spacing: 0.12em;
	display: inline-block; padding: 4px 0;
}
.mobile-nav .sub-menu {
	display: block !important; position: static; transform: none; opacity: 1; visibility: visible;
	border: 0; background: none; min-width: 0; padding: 0;
	max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
}
.mobile-nav li.menu-item-has-children.open .sub-menu { max-height: 400px; }
.mobile-nav .sub-menu li { padding: 2px 0; }
.mobile-nav .sub-menu a {
	font-size: 15px; font-family: var(--sans); letter-spacing: 0.2em;
	color: var(--grey); padding: 4px 0; display: inline-block;
}

/* --------------------------------------------------------------------------
   Hero — Ken Burns
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	height: 100vh;
	max-height: 100vh;
	overflow: hidden;
	background: var(--ink);
}
@supports (height: 100svh) {
	.hero { height: 100svh; max-height: 100svh; }
}
.hero__canvas {
	display: block;
	width: 100%;
	height: 100%;
}
.hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1);
	will-change: transform, opacity;
	transition: opacity 1.2s ease;
}
.hero__slide--active { opacity: 1; }
.hero__slide--kb { animation: kenburns 7s var(--ease) forwards; }
@keyframes kenburns {
	from { transform: scale(1) translate(0, 0); }
	to   { transform: scale(1.15) translate(-2%, -1%); }
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(26,26,26,0.28) 0%, rgba(26,26,26,0.12) 45%, rgba(26,26,26,0.38) 100%);
}
.hero__content {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
	text-align: center; color: #fff; padding: 22vh 6vw 0;
}
.hero__title {
	font-family: var(--display);
	font-size: clamp(34px, 6vw, 68px);
	font-weight: 300;
	letter-spacing: 0.06em;
	text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero__sub {
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-top: 22px;
	text-shadow: 0 1px 14px rgba(0,0,0,0.4);
}
.hero__dots {
	position: absolute; bottom: 72px; left: 50%; transform: translateX(-50%);
	display: flex; gap: 10px; z-index: 3;
}
.hero__dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: rgba(255,255,255,0.4);
	border: 0; padding: 0; cursor: pointer;
	transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero__dot.is-active { background: #fff; transform: scale(1.25); }
.hero__counter {
	position: absolute; bottom: 68px; right: max(4vw, 24px);
	color: rgba(255,255,255,0.85);
	font-size: 11px; letter-spacing: 0.25em; z-index: 3;
}

/* --------------------------------------------------------------------------
   Manifesto / featured / CTA
   -------------------------------------------------------------------------- */
.manifesto__grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(40px, 6vw, 90px);
	align-items: start;
}
.pull-quote {
	font-family: var(--serif);
	font-size: clamp(30px, 3.4vw, 48px);
	font-weight: 300;
	line-height: 1.25;
	margin: 0;
	position: sticky;
	top: 120px;
}
.manifesto__body p { color: #3d3a36; }

.featured { border-top: 1px solid var(--stone); }
.featured-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 48px;
}
.featured-card { position: relative; display: block; overflow: hidden; }
.featured-grid__img { aspect-ratio: 4 / 5; overflow: hidden; }
.featured-grid__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.featured-card:hover .featured-grid__img img { transform: scale(1.03); }
.featured-grid__label {
	position: absolute; inset-inline: 0; bottom: 0;
	padding: 48px 20px 18px;
	background: linear-gradient(180deg, transparent, rgba(26,26,26,0.55));
	color: #fff;
	display: flex; flex-direction: column; gap: 2px;
}
.featured-grid__title { font-family: var(--serif); font-size: 22px; letter-spacing: 0.08em; }
.featured-grid__desc { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

.cta-band { background: var(--ink); color: var(--cream); padding-block: 88px; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band__text { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); font-weight: 300; margin: 0; }

.btn {
	display: inline-block;
	font-size: 11.5px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	padding: 16px 38px;
	border: 1px solid;
	cursor: pointer;
	transition: all 0.3s var(--ease);
	background: none;
	font-family: var(--sans);
}
.btn--ghost { color: var(--cream); border-color: rgba(253,251,247,0.6); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; opacity: 1; }
.cta-band .btn--ghost:hover { color: var(--ink); }
.btn--solid { color: var(--ink); border-color: var(--ink); }
.btn--solid:hover { background: var(--ink); color: var(--cream); }
.btn--small { padding: 12px 28px; }
.tier--featured .btn--ghost { color: var(--bark); border-color: var(--bark); }
.tier--featured .btn--ghost:hover { background: var(--bark); color: #fff; }

/* --------------------------------------------------------------------------
   Portfolio grids + masonry
   -------------------------------------------------------------------------- */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.portfolio-grid__item { margin: 0; }
.portfolio-grid__btn {
	display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden;
}
.portfolio-grid__btn img {
	width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover;
	transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.portfolio-grid__btn:hover img { transform: scale(1.03); }

.grid-3x3__btn img { aspect-ratio: 1 / 1; }

.grid-3x3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-3x3__cell { margin: 0; }
.grid-3x3__btn {
	display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden; position: relative;
}
.grid-3x3__btn img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.grid-3x3__btn:hover img { transform: scale(1.03); }

.video-tile { cursor: pointer; }
.play-badge {
	position: absolute; inset: 0; margin: auto;
	width: 56px; height: 56px; border-radius: 50%;
	background: rgba(255,255,255,0.8);
	color: var(--ink);
	display: flex; align-items: center; justify-content: center;
	transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.video-tile:hover .play-badge { transform: scale(1.08); background: #fff; }

.portfolio-section, .grid-section, .grid-3x3-section { padding-top: 0; }

.loop-empty { text-align: center; padding: 60px 0; color: var(--grey); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-section { padding-top: clamp(24px, 4vw, 48px); }
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--stone);
	border: 1px solid var(--stone);
}
.tier {
	background: var(--cream);
	padding: 40px 30px;
	display: flex; flex-direction: column;
	position: relative;
}
.tier--featured { border: 2px solid var(--bark); }
.tier__ribbon {
	position: absolute; top: 0; right: 24px;
	background: var(--bark); color: #fff;
	font-size: 9.5px; letter-spacing: 0.25em; text-transform: uppercase;
	padding: 6px 14px;
}
.tier__name { font-size: 26px; }
.tier__price { font-size: 32px; font-family: var(--serif); margin: 14px 0 0; }
.tier__blurb { color: var(--grey); font-size: 13.5px; margin: 6px 0 0; }
.tier__list { list-style: none; margin: 0; padding: 0; flex: 1; }
.tier__list li { padding: 7px 0 7px 26px; position: relative; font-size: 14px; }
.tier__list li::before {
	content: '✓'; position: absolute; left: 0; top: 7px;
	color: var(--bark); font-size: 12px;
}
.tier .btn { margin-top: 28px; text-align: center; }
.pricing-note { text-align: center; color: var(--grey); font-size: 13px; margin-top: 40px; }

/* FAQ */
.faq-section { border-top: 1px solid var(--stone); }
.faq { margin-top: 40px; }
.faq__item { border-bottom: 1px solid var(--stone); }
.faq__item summary {
	cursor: pointer; list-style: none;
	font-family: var(--serif); font-size: 21px;
	padding: 22px 40px 22px 0;
	position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: absolute; right: 6px; top: 50%; width: 14px; height: 14px; }
.faq__icon::before, .faq__icon::after {
	content: ''; position: absolute; background: var(--ink);
	transition: transform 0.3s var(--ease);
}
.faq__icon::before { left: 0; top: 6.5px; width: 14px; height: 1px; }
.faq__icon::after { left: 6.5px; top: 0; width: 1px; height: 14px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__answer { padding: 0 0 24px; color: var(--grey); max-width: 640px; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-section { padding-top: clamp(24px, 4vw, 48px); }
.about-grid {
	display: grid;
	grid-template-columns: minmax(280px, 420px) 1fr;
	gap: clamp(40px, 6vw, 90px);
	align-items: start;
}
.about__portrait { margin: 0; position: sticky; top: 120px; }
.about__portrait img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.about__portrait figcaption {
	font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
	color: var(--grey); margin-top: 14px;
}
.about__essay { font-size: 16.5px; }
.about__signature {
	font-family: var(--serif);
	font-style: italic;
	font-size: 34px;
	margin-top: 40px;
	color: var(--bark);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-section { padding-top: clamp(24px, 4vw, 48px); }
.contact-split {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: clamp(40px, 6vw, 90px);
	align-items: start;
}
.field { margin-bottom: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
	display: block;
	font-size: 10.5px; letter-spacing: 0.25em; text-transform: uppercase;
	color: var(--grey); margin-bottom: 8px;
}
.field .req { color: var(--bark); }
.field input, .field select, .field textarea {
	width: 100%;
	border: 0; border-bottom: 1px solid var(--stone);
	background: transparent;
	font-family: var(--sans); font-size: 15px; font-weight: 300;
	padding: 10px 2px;
	color: var(--ink);
	transition: border-color 0.3s var(--ease);
	border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
	outline: none; border-color: var(--ink);
}
.field input.invalid, .field textarea.invalid { border-color: var(--bark); }
.contact-form .btn { width: 100%; text-align: center; margin-top: 8px; }
.form-status { font-size: 13.5px; margin: 16px 0 0; color: var(--bark); min-height: 20px; }
.form-status.is-success { color: #4a6b4f; }

.contact-aside__img { margin: 0 0 36px; }
.contact-aside__img img { aspect-ratio: 4 / 5; object-fit: cover; }
.contact-aside__title { font-size: 24px; margin-bottom: 18px; }
.contact-details { list-style: none; margin: 0 0 28px; padding: 0; }
.contact-details li { padding: 6px 0; }
.contact-aside__promise { color: var(--grey); font-size: 14px; }
.contact-insta { margin-top: 44px; }
.contact-insta__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.contact-insta__cell { margin: 0; }
.contact-insta__cell img { aspect-ratio: 1 / 1; object-fit: cover; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section { padding-top: clamp(24px, 4vw, 48px); }
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.testimonial {
	margin: 0;
	background: #EFE8DC;
	border: 1px solid var(--stone);
	padding: 36px 30px;
	display: flex; flex-direction: column; gap: 22px;
}
.testimonial__quote {
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	flex: 1;
}
.testimonial__names {
	display: block;
	font-family: var(--serif);
	font-size: 17px;
}
.testimonial__detail { display: block; margin-top: 4px; }
.testimonial__meta {
	font-size: 10.5px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--grey);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	border-top: 1px solid var(--stone);
	padding-block: 64px 40px;
	margin-top: var(--space-section);
}
.site-footer__inner {
	width: min(1240px, 92vw); margin-inline: auto;
	display: grid; grid-template-columns: 1fr auto; gap: 24px;
}
.site-footer__tag { color: var(--grey); font-size: 13px; margin: 10px 0 0; }
.site-footer__links { display: flex; gap: 32px; align-items: start; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; }
.site-footer__meta {
	grid-column: 1 / -1;
	border-top: 1px solid var(--stone);
	padding-top: 24px;
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
	color: var(--grey); font-size: 12px;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
	position: fixed; inset: 0; z-index: 500;
	background: rgba(0,0,0,0.94);
	display: flex; align-items: center; justify-content: center;
	opacity: 0; visibility: hidden;
	transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage { margin: 0; max-width: 88vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; }
.lightbox__img { max-width: 88vw; max-height: 82vh; object-fit: contain; transition: transform 0.25s var(--ease); cursor: zoom-in; }
.lightbox__img.is-zoomed { transform: scale(1.6); cursor: zoom-out; }
.lightbox__caption { color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 0.15em; margin-top: 14px; }
.lightbox__close {
	position: absolute; top: 22px; right: 28px;
	background: none; border: 0; color: #fff;
	font-size: 34px; cursor: pointer; line-height: 1; z-index: 510;
	transition: opacity 0.3s var(--ease);
}
.lightbox__close:hover { opacity: 0.6; }
.lightbox__arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	background: none; border: 0; color: #fff;
	font-size: 48px; cursor: pointer; padding: 20px; line-height: 1;
	transition: opacity 0.3s var(--ease); z-index: 510;
}
.lightbox__arrow:hover { opacity: 0.6; }
.lightbox__arrow--prev { left: 18px; }
.lightbox__arrow--next { right: 18px; }
.lightbox__counter {
	position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
	color: rgba(255,255,255,0.75); font-size: 11.5px; letter-spacing: 0.25em;
}
.lightbox--video .video-frame { width: min(1000px, 88vw); aspect-ratio: 16 / 9; }
.lightbox--video iframe { width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.hero__slide--kb { animation: none; }
	html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.pricing-grid { grid-template-columns: repeat(2, 1fr); }
	.testimonials-grid { grid-template-columns: repeat(2, 1fr); }
	.about-grid { grid-template-columns: 1fr; }
	.about__portrait { position: static; max-width: 420px; }
	.manifesto__grid { grid-template-columns: 1fr; }
	.pull-quote { position: static; }
}

@media (max-width: 820px) {
	.site-nav { display: none; }
	.nav-toggle { display: block; }
	.site-header { padding-top: 48px; }
	.site-header__inner {
		text-align: center;
		position: relative;
		display: flex;
		align-items: center;      /* logo + burger on the same line */
		justify-content: center;
	}
	/* burger pinned right, vertically level with the centered logo */
	.nav-toggle {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		margin: 0;
		padding: 10px 0;
	}
	/* logo bigger, centered, same visual line as the burger */
	.site-logo {
		font-size: 45px;
		letter-spacing: 0.06em;
		line-height: 1.1;
		display: inline-block;
	}
	.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
	.featured-grid { grid-template-columns: 1fr; }
	.grid-3x3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.pricing-grid { grid-template-columns: 1fr; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.portfolio-grid { grid-template-columns: 1fr; }
	.grid-3x3 { grid-template-columns: 1fr; }
	.field-row { grid-template-columns: 1fr; }
	.contact-split { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.cta-band__inner { flex-direction: column; text-align: center; }
}
