/*
Theme Name: Photography
Theme URI: https://example.com/photography
Author: You
Description: A simple starter theme for a photography site. Minimal and clean — ready to build on.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: photography
*/

/* =========================================================
   Base
   ========================================================= */
:root {
	--header-h: 76px;
	--ink: #111;
	--muted: #666;
	--line: #ececec;
	--accent: #b08d4f;
	--warm: #f6f4f1;
	--font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	line-height: 1.6;
	color: var(--ink);
	background: #fff;
}

img { max-width: 100%; height: auto; }
a { color: var(--ink); }

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link:focus {
	position: fixed; left: 1rem; top: 1rem; z-index: 1000;
	width: auto; height: auto; clip: auto;
	background: #fff; color: #111; padding: 0.6em 1em; box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 0 clamp(1.25rem, 4vw, 3rem);
	min-height: var(--header-h);
}
.site-logo { display: inline-flex; flex: 0 0 auto; }
.site-logo img { height: 52px; width: auto; display: block; }

/* --- Horizontal nav --- */
.main-nav { display: flex; }
.nav-menu {
	display: flex;
	align-items: center;
	gap: 1.7rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-menu li { position: relative; }
.nav-menu a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--muted);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	padding: 0.5rem 0;
	transition: color 0.25s ease;
}
.nav-menu > li > a { white-space: nowrap; }
.nav-menu a:hover,
.nav-menu .current-menu-item > a { color: var(--ink); }

/* Caret indicator for parent items (desktop) */
.nav-menu .menu-item-has-children > a::after {
	content: "";
	width: 6px; height: 6px;
	margin-left: 0.55rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translate(-1px, -1px);
}

/* --- Dropdown sub-menu (desktop) --- */
.sub-menu {
	position: absolute;
	top: 100%;
	left: -1rem;
	min-width: 230px;
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 60;
}
.nav-menu > li:hover > .sub-menu,
.nav-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.sub-menu a {
	display: block;
	white-space: nowrap;
	padding: 0.6rem 1.3rem;
	letter-spacing: 0.08em;
}

/* Caret button (mobile only — injected by nav.js) */
.submenu-toggle { display: none; }

/* --- Hamburger --- */
.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	padding: 0; border: 0; background: none;
}
.nav-toggle__box { position: relative; display: block; width: 26px; height: 16px; margin: 0 auto; }
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	content: "";
	position: absolute;
	left: 0;
	width: 26px; height: 2px;
	background: var(--ink);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle__bar { top: 50%; transform: translateY(-50%); }
.nav-toggle__bar::before { top: -8px; }
.nav-toggle__bar::after  { top: 8px; }
.nav-open .nav-toggle__bar { background: transparent; }
.nav-open .nav-toggle__bar::before { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle__bar::after  { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   Content
   ========================================================= */
.site-main { padding: 3rem 0; }
.entry { margin-bottom: 3rem; }
.entry-title { margin: 0 0 0.5rem; }
.entry-title a { text-decoration: none; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
	background: #111;
	color: #a9a9a9;
	padding: 4rem 0 2rem;
}
/* Full-width band, content capped at 1366px */
.footer-container {
	max-width: 1366px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* 4-column row: brand + 3 nav columns */
.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
	padding-bottom: 2.5rem;
}

/* Column 1: bigger logo + social icons below */
.footer-brand { text-align: left; }
.footer-logo { display: inline-block; }
.footer-logo img { height: 104px; width: auto; filter: invert(1); }
.social-links {
	display: flex;
	gap: 0.8rem;
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}
.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	border: 1px solid #333;
	border-radius: 50%;
	color: #bbb;
	transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.social-links a:hover {
	color: #111;
	background: #fff;
	border-color: #fff;
	transform: translateY(-2px);
}

/* Footer nav columns: vertical list */
.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-menu a {
	color: #bbb;
	text-decoration: none;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.25s ease;
}
.footer-menu a:hover { color: #fff; }

/* Bottom copyright row */
.footer-bottom {
	border-top: 1px solid #2a2a2a;
	padding-top: 1.6rem;
}
.footer-copy { margin: 0; font-size: 0.78rem; color: #777; }

@media (max-width: 900px) {
	.footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
	.footer-top { grid-template-columns: 1fr; text-align: center; }
	.footer-brand { text-align: center; }
	.social-links { justify-content: center; }
	.footer-menu { align-items: center; }
}

/* =========================================================
   Responsive — mobile nav
   ========================================================= */
@media (max-width: 980px) {
	:root { --header-h: 64px; }

	.site-logo img { height: 44px; }
	.nav-toggle { display: block; z-index: 110; }

	.main-nav {
		position: fixed;
		top: var(--header-h);
		left: 0; right: 0; bottom: 0;
		background: #fff;
		overflow-y: auto;
		padding-bottom: 2rem;
		transform: translateX(100%);
		transition: transform 0.35s ease;
		z-index: 105;
	}
	body.nav-open { overflow: hidden; }
	body.nav-open .main-nav { transform: translateX(0); }

	.nav-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.nav-menu li { border-bottom: 1px solid #f1f1f1; }
	.nav-menu a { padding: 1rem 1.5rem; font-size: 0.85rem; color: var(--ink); }

	/* parent row: link + caret button side by side */
	.nav-menu .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.nav-menu .menu-item-has-children > a { flex: 1 1 auto; }
	.nav-menu .menu-item-has-children > a::after { display: none; }

	.submenu-toggle {
		display: block;
		position: relative;
		flex: 0 0 56px;
		width: 56px; height: 54px;
		background: none; border: 0;
		border-left: 1px solid #f1f1f1;
	}
	.submenu-toggle::before,
	.submenu-toggle::after {
		content: "";
		position: absolute; top: 50%; left: 50%;
		width: 12px; height: 2px;
		background: var(--ink);
		transition: transform 0.3s ease;
	}
	.submenu-toggle::before { transform: translate(-50%, -50%); }
	.submenu-toggle::after  { transform: translate(-50%, -50%) rotate(90deg); }
	.is-open > .submenu-toggle::after { transform: translate(-50%, -50%) rotate(0); }

	/* sub-menu becomes an inline accordion */
	.sub-menu {
		position: static;
		flex-basis: 100%;
		width: 100%;
		min-width: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding: 0;
		background: #fafafa;
		display: none;
	}
	.is-open > .sub-menu { display: block; }
	.sub-menu a { padding: 0.9rem 2.5rem; color: var(--muted); }
}

/* =========================================================
   Home page — shared
   ========================================================= */
/* Let home sections run full-bleed: neutralise the global
   .site-main > .container wrapper that header.php opens.
   Inner .container / .container-wide still center the content. */
.home .site-main { padding: 0; }
.home .site-main > .container { max-width: none; padding: 0; }

/* Front-page Neo Gallery band — full width, flush under the header */
.home-gallery { margin: 0; }
.home-gallery .neo-mason { margin: 0; }

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.container-wide {
	max-width: 1366px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.eyebrow {
	font-size: 0.74rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--accent);
	margin: 0 0 1.1rem;
}
.eyebrow--light { color: #d9c39a; }
.section-title {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.05;
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	margin: 0;
	color: var(--ink);
}
.section-title--light { color: #fff; }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { text-align: center; max-width: 42rem; margin-inline: auto; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 1.05em 2.4em;
	border: 1px solid transparent;
	border-radius: 2px;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn--solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--solid:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* =========================================================
   Hero
   ========================================================= */
.home-hero {
	position: relative;
	min-height: calc(100svh - var(--header-h));
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.home-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.32) 42%, rgba(0,0,0,0.62));
}
.home-hero__inner { position: relative; z-index: 1; max-width: 60rem; padding: 4rem 1.5rem; }
.home-hero__title {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(3rem, 9vw, 7rem);
	line-height: 1;
	margin: 0 0 1.2rem;
}
.home-hero__sub {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: rgba(255, 255, 255, 0.85);
	max-width: 38rem;
	margin: 0 auto 2.4rem;
}
.home-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.home-hero__scroll {
	position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%);
	width: 1px; height: 54px; overflow: hidden; z-index: 1;
}
.home-hero__scroll span {
	position: absolute; inset: 0; background: rgba(255, 255, 255, 0.7);
	animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue {
	0% { transform: translateY(-100%); }
	60% { transform: translateY(0); }
	100% { transform: translateY(100%); }
}
/* Hero load-in */
.home-hero__inner > * { opacity: 0; animation: hero-in 1s ease forwards; }
.home-hero .eyebrow--light { animation-delay: 0.15s; }
.home-hero__title { animation-delay: 0.3s; }
.home-hero__sub { animation-delay: 0.45s; }
.home-hero__cta { animation-delay: 0.6s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* =========================================================
   About / intro
   ========================================================= */
.intro { background: #fff; }
.intro__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: stretch;
}
.intro__media { position: relative; min-height: 360px; }
.intro__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.intro__lead { font-size: 1.2rem; line-height: 1.7; color: var(--ink); }
.intro__body p { color: #4a4a4a; }
.intro__body p + p { margin-top: 1.25em; }

/* =========================================================
   Credentials strip
   ========================================================= */
.stats-band {
	background: var(--warm);
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 0.5rem; }
.stat__big { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2rem); color: var(--ink); line-height: 1; }
.stat__small { font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* =========================================================
   Featured work
   ========================================================= */
.work { background: #111; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.work-tile {
	position: relative; display: block; overflow: hidden;
	aspect-ratio: 4 / 3; border-radius: 2px; background: #1a1a1a;
}
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.work-tile:hover img { transform: scale(1.06); }
.work-tile__overlay {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; justify-content: flex-end;
	padding: 1.4rem;
	background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0) 62%);
	opacity: 1; /* labels always visible */
}
.work-tile__cat { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: #d9c39a; font-weight: 600; margin-bottom: 0.3rem; }
.work-tile__title { font-family: var(--font-display); font-size: 1.5rem; color: #fff; line-height: 1.1; }

/* =========================================================
   Section / sub-pages hub template
   ========================================================= */
.subpages--tight { padding-top: 0; }
.subpage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 2.5vw, 1.6rem);
}
.subpage-card {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 2px;
	background: #1a1a1a;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}
.subpage-card__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.7s ease;
}
.subpage-card:hover .subpage-card__media { transform: scale(1.07); }
.subpage-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.3rem 1.4rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0) 100%);
}
.subpage-card--plain .subpage-card__overlay {
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, #262626, #111);
}
.subpage-card__title {
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	line-height: 1.15;
	color: #fff;
}
.subpage-card__arrow {
	flex: 0 0 auto;
	color: var(--accent);
	font-size: 1.3rem;
	transform: translateX(-6px);
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.subpage-card:hover .subpage-card__arrow { opacity: 1; transform: translateX(0); }
.subpage-card--plain .subpage-card__arrow { display: none; }
@media (max-width: 860px) { .subpage-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .subpage-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials { background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.quote-card {
	position: relative;
	margin: 0;
	display: flex; flex-direction: column;
	background: var(--warm);
	border: 1px solid #ececec;
	border-radius: 2px;
	padding: clamp(1.8rem, 3vw, 2.6rem);
}
.quote-card::before {
	content: "\201C";
	position: absolute; top: 0.4rem; left: 1.2rem;
	font-family: var(--font-display); font-size: 4.5rem; line-height: 1;
	color: var(--accent); opacity: 0.45;
}
.quote-card__text {
	font-family: var(--font-display);
	font-size: 1.35rem; line-height: 1.5; font-style: italic;
	color: #2a2a2a; margin: 1.8rem 0;
}
.quote-card__by { display: flex; flex-direction: column; gap: 0.2rem; margin-top: auto; }
.quote-card__name { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); }
.quote-card__role { font-size: 0.82rem; color: var(--muted); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover; background-position: center;
	color: #fff; text-align: center;
	padding-block: clamp(5rem, 10vw, 8rem);
}
.cta-band__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.62); }
.cta-band__inner { position: relative; z-index: 1; max-width: 42rem; margin: 0 auto; }
.cta-band__title {
	font-family: var(--font-display); font-weight: 500;
	font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; margin: 0 0 1rem;
}
.cta-band__text { color: rgba(255, 255, 255, 0.85); margin: 0 0 2rem; }

/* Desktop parallax */
@media (min-width: 1025px) {
	.home-hero, .cta-band { background-attachment: fixed; }
}

/* =========================================================
   Reveal on scroll (classes added by nav.js)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.work-tile:nth-child(3n+2).reveal { transition-delay: 0.1s; }
.work-tile:nth-child(3n+3).reveal { transition-delay: 0.2s; }
.stat:nth-child(2).reveal { transition-delay: 0.1s; }
.stat:nth-child(3).reveal { transition-delay: 0.2s; }
.stat:nth-child(4).reveal { transition-delay: 0.3s; }
.quote-card:nth-child(even).reveal { transition-delay: 0.1s; }

/* =========================================================
   Home responsive
   ========================================================= */
@media (max-width: 860px) {
	.intro__grid { grid-template-columns: 1fr; }
	.intro__media { min-height: 300px; order: -1; }
	.work-grid { grid-template-columns: repeat(2, 1fr); }
	.testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
	.stats-band__grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
	.work-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Inner templates (blog, single, about, contact)
   ========================================================= */
/* Let these run full-bleed (see .flush-main body class) */
.flush-main .site-main { padding: 0; }
.flush-main .site-main > .container { max-width: none; padding: 0; }
.container.narrow { max-width: 760px; }

/* --- Gallery page template (gallery → title → content) --- */
/* Full-width gallery, flush like the home page */
.page-gallery .neo-mason { margin: 0; }

.gallery-intro { padding: clamp(1.3rem, 2.5vw, 2.1rem) 0 clamp(2.4rem, 5vw, 3.6rem); }
.gallery-intro__head { text-align: center; max-width: 52rem; margin: 0 auto; }
.gallery-intro__title {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.12;
	font-size: clamp(1.65rem, 3vw, 2.3rem);
	margin: 0;
	color: var(--ink);
}
.gallery-intro__content { max-width: 1000px; margin: clamp(0.8rem, 1.4vw, 1.2rem) auto 0; }
.gallery-intro__content.prose { padding-block: 0; }
.gallery-intro__content.prose > p { margin: 0 0 1em; }
.gallery-intro__content.prose h2 { margin: 1.25em 0 0.35em; }

/* --- City / service pages: slider → title → content --- */
.city-slider { position: relative; overflow: hidden; background: #141414; transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.city-slider__track { display: flex; align-items: flex-start; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.city-slider__slide { flex: 0 0 100%; min-width: 0; }
/* Show each image in full at its natural height (no cropping). */
.city-slider__img { display: block; width: 100%; height: auto; }
.city-slider__arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 52px; height: 52px; border: 0; border-radius: 50%;
	background: rgba(0, 0, 0, 0.35); color: #fff; font-size: 1.9rem; line-height: 1;
	cursor: pointer; display: grid; place-items: center; z-index: 2;
	transition: background 0.2s ease;
}
.city-slider__arrow:hover { background: rgba(0, 0, 0, 0.6); }
.city-slider__prev { left: clamp(0.6rem, 2vw, 1.6rem); }
.city-slider__next { right: clamp(0.6rem, 2vw, 1.6rem); }
.city-slider__dots { position: absolute; bottom: 1.1rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.5rem; z-index: 2; }
.city-slider__dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.5); cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.city-slider__dot[aria-current="true"] { background: #fff; transform: scale(1.25); }

/* City + sub pages: two-column body with sidebar (links + contact form) */
.city-body { padding: clamp(2.2rem, 4vw, 3.4rem) 0 clamp(3rem, 6vw, 5rem); }
.city-body__grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.city-body__main { min-width: 0; }
.city-body__crumb { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin: 0 0 0.5rem; }
.city-body__crumb a { color: var(--accent); text-decoration: none; }
.city-body__title { font-family: var(--font-display); font-weight: 500; line-height: 1.1; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 0 0 0.6em; color: var(--ink); }
.city-body__heading { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.15; margin: 0 0 0.7em; color: var(--ink); }
.city-body__content.prose { padding-block: 0; }
.city-body__side { display: flex; flex-direction: column; gap: 1.4rem; }
.city-side__block { background: #faf8f4; border: 1px solid #ece7df; border-radius: 4px; padding: 1.4rem 1.5rem; }
.city-side__title { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin: 0 0 0.9rem; color: var(--ink); }
.city-side__links { list-style: none; margin: 0; padding: 0; }
.city-side__links a { display: block; padding: 0.55rem 0; border-bottom: 1px solid #ece7df; color: var(--ink); text-decoration: none; font-size: 0.96rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.city-side__links li:last-child a { border-bottom: 0; }
.city-side__links a:hover { color: var(--accent); padding-left: 0.3rem; }
.city-side__links a[aria-current="page"] { color: var(--accent); font-weight: 600; }

/* --- Unified contact form (.cform) — light by default, dark variant --- */
.cform__title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin: 0 0 0.3rem; color: var(--ink); }
.cform__intro { font-size: 0.95rem; line-height: 1.55; color: var(--muted); margin: 0 0 1.3rem; }
.cform__form { position: relative; display: flex; flex-direction: column; gap: 1rem; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cform__field { display: block; }
.cform__field > span { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; }
.cform input, .cform textarea { width: 100%; background: #fff; border: 1px solid #ddd; border-radius: 2px; padding: 0.8em 1em; font: inherit; color: var(--ink); transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176, 141, 79, 0.15); }
.cform textarea { resize: vertical; min-height: 110px; }
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cform .btn { width: 100%; border: 0; cursor: pointer; margin-top: 0.2rem; }
.cform__status { font-size: 0.92rem; line-height: 1.5; margin: 0.3rem 0 0; min-height: 1px; }
.cform__status--ok { color: #1a7f37; }
.cform__status--err { color: #d63638; }
.cform.is-sent .cform__form > *:not(.cform__status) { display: none; }

.cform--dark { background: var(--ink); border-radius: 4px; padding: 1.6rem 1.5rem; color: #fff; }
.cform--dark .cform__title { color: #fff; }
.cform--dark .cform__intro { color: rgba(255, 255, 255, 0.72); }
.cform--dark .cform__field > span { color: rgba(255, 255, 255, 0.6); }
.cform--dark input, .cform--dark textarea { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); color: #fff; }
.cform--dark input::placeholder, .cform--dark textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.cform--dark input:focus, .cform--dark textarea:focus { border-color: var(--accent); box-shadow: none; background: rgba(255, 255, 255, 0.16); }
.cform--dark .cform__status--ok { color: #8fd19e; }
.cform--dark .cform__status--err { color: #f1a9a0; }

/* --- Contact page: full-screen image hero with form --- */
.contact-hero { position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; background: #1a1a1a center / cover no-repeat; background-attachment: scroll; color: #fff; padding-block: clamp(3rem, 8vw, 6rem); }
.contact-hero__overlay { position: absolute; inset: 0; background: rgba(20, 18, 16, 0.6); }
.contact-hero__grid { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.contact-hero__text { max-width: 30rem; justify-self: end; }
.contact-hero__title,
.contact-hero__copy h1,
.contact-hero__copy h2 { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; font-size: clamp(2.1rem, 4.6vw, 3.9rem); line-height: 1.04; margin: 0 0 1.2rem; color: #fff; }
.contact-hero__intro,
.contact-hero__copy p { color: rgba(255, 255, 255, 0.82); font-size: 1.02rem; line-height: 1.7; margin: 0 0 1em; }
.contact-hero__copy > :last-child { margin-bottom: 0; }
.contact-hero__form { width: 100%; max-width: 30rem; }

.cform--overlay .cform__form { gap: 0.9rem; }
.cform--overlay .cform__row { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.cform--overlay input, .cform--overlay textarea { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25); color: #fff; border-radius: 2px; padding: 0.95em 1.1em; }
.cform--overlay input::placeholder, .cform--overlay textarea::placeholder { color: rgba(255, 255, 255, 0.72); }
.cform--overlay input:focus, .cform--overlay textarea:focus { outline: none; border-color: var(--accent); background: rgba(255, 255, 255, 0.18); box-shadow: none; }
.cform--overlay textarea { min-height: 120px; }
.cform--overlay .btn { width: auto; align-self: flex-end; padding: 0.7em 2.2em; letter-spacing: 0.12em; }
.cform--overlay .cform__status { color: #fff; align-self: flex-end; text-align: right; }
.cform--overlay .cform__status--ok { color: #8fd19e; }
.cform--overlay .cform__status--err { color: #f1a9a0; }

@media ( max-width: 820px ) {
	.contact-hero__grid { grid-template-columns: 1fr; gap: clamp(1.8rem, 6vw, 2.6rem); }
	.contact-hero__text { max-width: none; justify-self: stretch; }
	.contact-hero__form { max-width: none; }
}

@media ( max-width: 860px ) {
	.city-body__grid { grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3rem); }
	.city-body__side { position: static; }
}

/* --- Page / post banner (editorial, bottom-left, framed) --- */
.page-banner,
.post-banner {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 62vh;
	padding-block: clamp(3rem, 7vw, 5.5rem);
	background: #141414;
	background-size: cover;
	background-position: center;
	color: #fff;
	overflow: hidden;
}
.post-banner { min-height: 66vh; }
.page-banner__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(to top, rgba(10,9,8,0.82) 0%, rgba(10,9,8,0.12) 55%, rgba(10,9,8,0.42) 100%),
		linear-gradient(to right, rgba(10,9,8,0.55), rgba(10,9,8,0) 58%);
}
.page-banner:not(.page-banner--image) .page-banner__overlay { background: rgba(20, 20, 20, 0.35); }
/* decorative inset frame */
.page-banner::after,
.post-banner::after {
	content: "";
	position: absolute;
	inset: clamp(0.9rem, 1.8vw, 1.6rem);
	border: 1px solid rgba(255, 255, 255, 0.22);
	pointer-events: none;
	z-index: 1;
}
.page-banner__inner,
.post-banner__inner { position: relative; z-index: 2; width: 100%; }
/* eyebrow gets a leading gold rule */
.page-banner .eyebrow,
.post-banner .eyebrow { display: inline-flex; align-items: center; gap: 0.8rem; }
.page-banner .eyebrow::before,
.post-banner .eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.page-banner__title,
.post-banner__title {
	font-family: var(--font-display); font-weight: 500;
	font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.02; margin: 0; max-width: 18ch;
}
.page-banner__intro { max-width: 42rem; margin: 1.1rem 0 0; color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; }
/* Single post banner: full-width title, a touch smaller. */
.post-banner__title { max-width: none; font-size: clamp(2rem, 4.2vw, 3.4rem); }
.post-banner__meta { margin: 1.1rem 0 0; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.82); }
.post-banner .eyebrow--light a { color: inherit; text-decoration: none; }

/* --- Prose (article / page content) --- */
.prose { font-size: 1.12rem; line-height: 1.8; color: #333; padding-block: clamp(2.5rem, 5vw, 4rem); }
.prose.prose--tight { padding-block: 0; }
.prose > p { margin: 0 0 1.3em; }
.prose h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.9rem; margin: 1.6em 0 0.5em; color: var(--ink); }
.prose h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.45rem; margin: 1.4em 0 0.4em; color: var(--ink); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--ink); }
.prose img { border-radius: 2px; margin: 1.5em 0; }
.prose blockquote { margin: 1.6em 0; padding-left: 1.4rem; border-left: 3px solid var(--accent); font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.4; color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.3em; }
.prose li { margin-bottom: 0.5em; }

/* --- Legal / long-form pages (Privacy Policy, Terms & Conditions) --- */
.page-banner--compact { min-height: 38vh; }
.legal { max-width: 760px; margin-inline: auto; }
.legal__updated { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.25rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; margin: 0.6rem 0 0; padding: 0; list-style: none; }
.footer-legal a { color: inherit; text-decoration: none; opacity: 0.75; }
.footer-legal a:hover { opacity: 1; text-decoration: underline; }

/* --- Blog grid --- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 2.6rem); }
.post-card { display: flex; flex-direction: column; }
.post-card__media { display: block; overflow: hidden; border-radius: 2px; aspect-ratio: 3 / 2; background: #ece9e3; margin-bottom: 1.3rem; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #e9e5df, #d6cfc4); }
.post-card__meta { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.6rem; }
.post-card__title { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; line-height: 1.15; margin: 0 0 0.6rem; }
.post-card__title a { color: var(--ink); text-decoration: none; transition: color 0.25s ease; }
.post-card__title a:hover { color: var(--accent); }
.post-card__excerpt { color: var(--muted); font-size: 0.98rem; margin: 0 0 1rem; }
.post-card__link { margin-top: auto; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--accent); text-decoration: none; }
.post-card__link:hover { color: var(--ink); }

/* --- Pagination --- */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem; margin-top: clamp(3rem, 6vw, 4.5rem); }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 0.6rem; border: 1px solid var(--line); border-radius: 2px; color: var(--muted); text-decoration: none; font-size: 0.85rem; }
.pagination .page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination a.page-numbers:hover { border-color: var(--ink); color: var(--ink); }

/* --- Single post extras --- */
.single-post__footer { padding-bottom: clamp(2rem, 4vw, 3rem); }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags a { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 0.4em 0.9em; border-radius: 99px; text-decoration: none; }
.tags a:hover { color: var(--accent); border-color: var(--accent); }
.post-nav { display: flex; gap: 1.5rem; justify-content: space-between; padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); margin-top: 1rem; }
.post-nav__item { display: flex; flex-direction: column; gap: 0.35rem; max-width: 46%; text-decoration: none; color: var(--ink); }
.post-nav__next { text-align: right; margin-left: auto; }
.post-nav__dir { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.post-nav__title { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.2; transition: color 0.25s ease; }
.post-nav__item:hover .post-nav__title { color: var(--accent); }

/* =========================================================
   Single post — two-column layout + sidebar widgets
   ========================================================= */
.post-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
	padding-block: clamp(2.5rem, 5vw, 4rem);
}
.post-main { min-width: 0; }
.single-post__footer { margin-top: 2rem; }

.post-sidebar {
	position: sticky;
	top: calc(var(--header-h) + 1.5rem);
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

/* Widget shell */
.widget {
	background: var(--warm);
	border: 1px solid var(--line);
	border-radius: 3px;
	padding: 1.6rem 1.5rem;
}
.widget__title {
	margin: 0 0 1.1rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
}
.widget__title--light { color: #d9c39a; }

/* Contact widget */
.widget--contact {
	background: #111;
	border: 0;
	color: #cfcfcf;
}
.widget--contact__text { margin: 0 0 1.2rem; font-size: 0.92rem; line-height: 1.6; }
.widget--contact .btn { width: 100%; }
.widget--contact__email {
	display: block;
	margin-top: 1rem;
	font-size: 0.82rem;
	color: #9b9b9b;
	text-decoration: none;
	word-break: break-all;
	transition: color 0.25s ease;
}
.widget--contact__email:hover { color: #fff; }

/* Recent posts widget */
.widget-posts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.widget-post { display: flex; gap: 0.9rem; align-items: flex-start; }
.widget-post__thumb { flex: 0 0 64px; width: 64px; height: 64px; overflow: hidden; border-radius: 2px; background: #e9e9e9; display: block; }
.widget-post__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.widget-post:hover .widget-post__thumb img { transform: scale(1.07); }
.widget-post__body { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.widget-post__title { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.2; color: var(--ink); text-decoration: none; }
.widget-post__title:hover { color: var(--accent); }
.widget-post__date { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* Categories widget */
.widget-cats { list-style: none; margin: 0; padding: 0; }
.widget-cats li {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.55rem 0;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--muted);
}
.widget-cats li + li { border-top: 1px solid var(--line); }
.widget-cats a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
.widget-cats a:hover { color: var(--accent); }

@media (max-width: 880px) {
	.post-layout { grid-template-columns: 1fr; }
	.post-sidebar { position: static; }
}

/* --- Single post: editorial polish --- */
.post-main .prose { padding-block: 0; }
.post-main .prose > p:first-of-type { font-size: 1.24rem; line-height: 1.7; color: #2a2a2a; }
.post-main .prose > p:first-of-type::first-letter {
	float: left;
	font-family: var(--font-display);
	font-size: 3.6rem;
	line-height: 0.78;
	font-weight: 600;
	color: var(--accent);
	margin: 0.06em 0.14em 0 0;
}
.prose figure { margin: 1.8em 0; }
.prose figcaption,
.prose .wp-caption-text {
	margin-top: 0.6rem;
	font-size: 0.82rem;
	font-style: italic;
	text-align: center;
	color: var(--muted);
}

/* Prev / next as cards */
.post-nav__item {
	padding: 1.1rem 1.3rem;
	border: 1px solid var(--line);
	border-radius: 3px;
	transition: border-color 0.25s ease, background 0.25s ease;
}
.post-nav__item:hover { border-color: var(--accent); background: var(--warm); }

/* Widget title accent rule + contact widget top edge */
.widget__title { position: relative; padding-bottom: 0.8rem; }
.widget__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background: currentColor;
	opacity: 0.5;
}
.widget--contact { border-top: 3px solid var(--accent); }

/* --- About: bio with wrapped portrait --- */
.about-bio__inner { max-width: 1000px; margin: 0 auto; }
.about-bio__heading { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.05; margin: 0 0 1.4rem; color: var(--ink); }
.about-bio__content.prose { padding-block: 0; }
.about-bio__content::after { content: ""; display: block; clear: both; }
.about-bio__portrait { float: right; width: min(40%, 360px); margin: 0.4rem 0 1.4rem 2.5rem; }
.about-bio__portrait img { width: 100%; display: block; border-radius: 2px; filter: grayscale(1) contrast(1.02); }

/* --- Press / interviews (magazine covers) --- */
.press-covers { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.press-covers li { margin: 0; }
.press-covers a { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 2px; background: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.press-covers img { width: 100%; height: auto; display: block; aspect-ratio: 300 / 424; object-fit: cover; }
.press-covers a:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13); }

/* --- Behind-the-scenes video --- */
.video-embed { position: relative; aspect-ratio: 16 / 9; max-width: 980px; margin: 0 auto; border-radius: 2px; overflow: hidden; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Single interview — PDF flip-book viewer */
.interview-single__head { text-align: center; padding: clamp(1.3rem, 2.5vw, 2rem) 0 clamp(0.9rem, 2vw, 1.4rem); }
.interview-single__head--inline { padding: 0; margin: 0 auto clamp(1.6rem, 3vw, 2.4rem); max-width: 52rem; }
.interview-single__title { font-family: var(--font-display); font-weight: 500; line-height: 1.1; font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 0.3rem 0 0; color: var(--ink); }
.interview-single__body { padding: clamp(0.5rem, 2vw, 1.4rem) 0 clamp(3rem, 6vw, 5rem); }
.interview-single__body .prose { padding-block: 0; }

/* Full-width, ~full-height flip-book; PDF centred */
.pdf-flip { position: relative; width: 100%; height: calc(100vh - var(--header-h)); display: flex; flex-direction: column; background: #ece9e3; }
.pdf-flip__stage { flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; overflow: auto; padding: clamp(0.8rem, 2vw, 1.6rem); }
.pdf-flip.is-zoomed .pdf-flip__stage { align-items: flex-start; justify-content: flex-start; }
.pdf-flip__spread { display: none; flex: none; gap: 6px; align-items: flex-start; transform-origin: top left; }
.pdf-flip__spread.is-active { display: flex; }
.pdf-flip__spread--anim { animation: pdf-fade 0.35s ease; }
@keyframes pdf-fade { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
.pdf-flip__page { background: #fff; box-shadow: 0 3px 16px rgba(0, 0, 0, 0.18); }
.pdf-flip__canvas { display: block; }
.pdf-flip__loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.9rem; color: var(--muted); font-size: 0.95rem; z-index: 1; }
.pdf-flip__spinner { width: 30px; height: 30px; border: 3px solid #ccc; border-top-color: var(--accent); border-radius: 50%; animation: pdf-spin 0.8s linear infinite; }
@keyframes pdf-spin { to { transform: rotate(360deg); } }
.pdf-flip__frame { width: 100%; height: 100%; border: 0; }

.pdf-flip__toolbar { position: absolute; bottom: clamp(1rem, 2vw, 1.6rem); left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 0.35rem; padding: 0.5rem; background: var(--ink); border-radius: 999px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28); z-index: 2; }
.pdf-flip__btn { display: inline-grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #fff; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.pdf-flip__btn:hover { background: rgba(255, 255, 255, 0.14); color: var(--accent); }
.pdf-flip__sep { width: 1px; height: 22px; background: rgba(255, 255, 255, 0.2); margin: 0 0.25rem; }
.pdf-flip.is-fs, .pdf-flip:fullscreen { height: 100vh; background: #141414; }

.interview-single__external { text-align: center; }
.interview-single__cover { display: block; max-width: 520px; height: auto; margin: 0 auto 1.6rem; border-radius: 2px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12); }

/* Behind-the-scenes single video banner (poster + play → opens modal) */
.video-banner { position: relative; display: block; aspect-ratio: 16 / 9; max-width: 980px; margin: 0 auto; border-radius: 2px; overflow: hidden; background: #111 center / cover no-repeat; cursor: pointer; }
.video-banner__overlay { position: absolute; inset: 0; background: rgba(10, 9, 8, 0.34); transition: background 0.3s ease; }
.video-banner:hover .video-banner__overlay { background: rgba(10, 9, 8, 0.2); }
.video-banner__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 86px; height: 86px; border-radius: 50%; background: rgba(255, 255, 255, 0.92); transition: background 0.3s ease, transform 0.3s ease; }
.video-banner__play::after { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #141414; }
.video-banner:hover .video-banner__play { background: #fff; transform: translate(-50%, -50%) scale(1.08); }
.video-banner:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Play button (videos + clips) */
.video-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(0, 0, 0, 0.45); border: 1px solid rgba(255, 255, 255, 0.85); transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease; }
.video-card__play::after { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff; }
.video-card:hover .video-card__play,
.clip-card:hover .video-card__play { background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.08); }

/* Additional videos grid */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.4rem; }
.video-card { display: block; text-decoration: none; color: var(--ink); }
.video-card__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 2px; background: #111; }
.video-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.video-card:hover .video-card__media img { transform: scale(1.05); }
.video-card__title { display: block; margin-top: 0.7rem; font-family: var(--font-display); font-size: 1.2rem; line-height: 1.2; }

/* Video lightbox modal */
.video-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.video-modal.is-open { display: flex; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.86); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.video-modal__dialog { position: relative; z-index: 1; width: min(1140px, 94vw); max-height: 86vh; }
/* Frame keeps the video's natural 16:9 ratio but never taller than the viewport */
.video-modal__frame { position: relative; aspect-ratio: 16 / 9; width: 100%; max-height: 86vh; margin: 0 auto; background: #000; border-radius: 4px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Short-clip popup keeps the clips' 1140 × 756.433 ratio. */
.video-modal__dialog.is-clip .video-modal__frame { aspect-ratio: 1140 / 756.433; }
.video-modal__close { position: absolute; top: -2.8rem; right: 0; background: none; border: 0; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; opacity: 0.85; transition: opacity 0.2s ease; }
.video-modal__close:hover { opacity: 1; }
body.modal-open { overflow: hidden; }

/* Short clips reel (vertical, horizontally scrollable) */
.clips-reel { display: flex; gap: 1.2rem; overflow-x: auto; padding-bottom: 0.6rem; scroll-snap-type: x mandatory; }
.clip-card { flex: 0 0 200px; scroll-snap-align: start; text-decoration: none; color: var(--ink); }
.clip-card__media { position: relative; display: block; aspect-ratio: 9 / 16; overflow: hidden; border-radius: 6px; background: #111; }
.clip-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.clip-card:hover .clip-card__media img { transform: scale(1.05); }
.clip-card__title { display: block; margin-top: 0.6rem; font-size: 0.9rem; color: var(--muted); }

/* --- Short Videos page (clips/videos as thumbnail grids → modal) --- */
.clips-block--alt { background: #faf8f4; }
.clips-grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.clips-grid--wide { grid-template-columns: repeat(3, 1fr); }
button.video-card { border: 0; background: none; padding: 0; margin: 0; font: inherit; width: 100%; text-align: left; cursor: pointer; }
@media ( max-width: 820px ) { .clips-grid--wide { grid-template-columns: repeat(2, 1fr); } }
@media ( max-width: 560px ) { .clips-grid--wide { grid-template-columns: 1fr; } }

/* --- Motion page: full-screen background-video hero --- */
.motion-hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; background: #111; color: #fff; }
.motion-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.motion-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10, 9, 8, 0.82) 0%, rgba(10, 9, 8, 0.15) 55%, rgba(10, 9, 8, 0.5) 100%); }
.motion-hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(3rem, 8vw, 6rem); }
.motion-hero .eyebrow--light { display: inline-flex; align-items: center; gap: 0.8rem; }
.motion-hero .eyebrow--light::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.motion-hero__title { font-family: var(--font-display); font-weight: 500; line-height: 0.98; font-size: clamp(3rem, 9vw, 7rem); margin: 0.4rem 0 0; }
.motion-hero__sub { max-width: 42rem; margin: 1.1rem 0 1.7rem; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255, 255, 255, 0.85); }
.motion-hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.motion-hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; z-index: 2; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 14px; }
.motion-hero__scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: #fff; animation: motion-scroll 1.6s ease-in-out infinite; }
@keyframes motion-scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
.motion-body { padding-block: clamp(2.6rem, 6vw, 4.5rem); }
@media ( prefers-reduced-motion: reduce ) { .motion-hero__scroll span { animation: none; } }

/* Page/post gallery — simple uniform grid */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.gallery-grid__item { display: block; overflow: hidden; border-radius: 2px; aspect-ratio: 4 / 3; background: #ece9e3; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-grid__item:hover img { transform: scale(1.05); }
@media (max-width: 780px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Recent posts "view all" + dark outline button */
.recent__more { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.btn--dark { background: transparent; color: var(--ink); border-color: rgba(17, 17, 17, 0.3); }
.btn--dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Instagram feed */
.ig-feed .ig-handle { margin: 0.6rem 0 0; }
.ig-handle a { font-size: 1rem; letter-spacing: 0.08em; color: var(--accent); text-decoration: none; }
.ig-handle a:hover { color: var(--ink); }
.ig-grid { list-style: none; margin: clamp(2rem, 4vw, 3rem) 0; padding: 0; display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; }
.ig-grid li { margin: 0; }
.ig-grid a { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ig-grid a:hover img { transform: scale(1.06); }
.ig-grid__icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: rgba(17, 17, 17, 0.45); opacity: 0; transition: opacity 0.3s ease; }
.ig-grid a:hover .ig-grid__icon { opacity: 1; }
.ig-feed__follow { text-align: center; }
@media (max-width: 980px) { .ig-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Partial client list --- */
.clients { background: var(--warm); }
.clients-list { list-style: none; margin: 0; padding: 0; columns: 4; column-gap: 3rem; }
.clients-list li { break-inside: avoid; padding: 0.85rem 0; border-bottom: 1px solid #e4ded3; font-size: 0.98rem; color: #3a3a3a; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact-details { list-style: none; margin: 2rem 0 0; padding: 1.6rem 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 1.1rem; }
.contact-details li { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-details__label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-details a { color: var(--accent); text-decoration: none; }
.contact-details a:hover { color: var(--ink); }

.contact-form-wrap { background: var(--warm); border: 1px solid var(--line); border-radius: 2px; padding: clamp(1.6rem, 3vw, 2.4rem); }
.contact-form .field { display: flex; flex-direction: column; margin: 0 0 1.2rem; }
.contact-form label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.contact-form input, .contact-form textarea { width: 100%; background: #fff; border: 1px solid #ddd; border-radius: 2px; padding: 0.85em 1em; font: inherit; color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176, 141, 79, 0.15); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: 100%; border: 0; cursor: pointer; }
.contact-form .btn--solid:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-notice { padding: 0.9rem 1.2rem; border-radius: 2px; margin: 0 0 1.4rem; font-size: 0.95rem; }
.form-notice--ok { background: #edf7ed; border: 1px solid #cfe8cf; color: #256b29; }
.form-notice--err { background: #fdecec; border: 1px solid #f5c6c6; color: #a12626; }

/* Short CTA variant (overrides full-screen home CTA) */
.cta-band--short { min-height: auto; padding-block: clamp(4rem, 8vw, 6rem); }

/* Empty state */
.empty { text-align: center; padding-block: clamp(3rem, 7vw, 5rem); color: var(--muted); }
.empty h2 { font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: 1.8rem; }

@media (max-width: 980px) {
	.press-covers { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-grid { grid-template-columns: 1fr; }
	.about-bio__portrait { float: none; width: 100%; max-width: 420px; margin: 0 0 1.5rem; }
	.post-nav { flex-direction: column; gap: 1.5rem; }
	.post-nav__item { max-width: none; }
	.post-nav__next { text-align: left; margin-left: 0; }
	.clients-list { columns: 2; }
	.video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.post-grid { grid-template-columns: 1fr; }
	.press-covers { grid-template-columns: repeat(2, 1fr); }
	.clients-list { columns: 1; }
	.video-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
	.reveal { opacity: 1 !important; transform: none !important; }
	.home-hero__inner > * { opacity: 1 !important; }
}
