/*
Theme Name: Leo Griesemer Photography
Theme URI:
Description: Custom photography theme for Leo Griesemer Photography — action sports & athlete photography.
Author: Leo Griesemer
Template: twentytwentyfive
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.7
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: leo-griesemer-photography
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
	--lgp-black:      #080808;
	--lgp-dark:       #111111;
	--lgp-dark-mid:   #1a1a1a;
	--lgp-mid:        #242424;
	--lgp-border:     #2e2e2e;
	--lgp-text:       #e8e8e8;
	--lgp-muted:      #888888;
	--lgp-orange:     #ff5c00;
	--lgp-orange-hot: #ff7a2a;
	--lgp-white:      #ffffff;
	--lgp-font-head:  'Oswald', 'Arial Narrow', Arial, sans-serif;
	--lgp-font-body:  'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--lgp-radius:     4px;
	--lgp-transition: 0.25s ease;
}

/* ============================================================
   BASE
   ============================================================ */
html, body {
	background-color: var(--lgp-black) !important;
	color: var(--lgp-text) !important;
}

body {
	font-family: var(--lgp-font-body) !important;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

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

a {
	color: var(--lgp-orange);
	text-decoration: none;
	transition: color var(--lgp-transition);
}

a:hover {
	color: var(--lgp-orange-hot);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
	font-family: var(--lgp-font-head) !important;
	font-weight: 700 !important;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--lgp-white) !important;
	line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
	color: var(--lgp-text);
	margin-bottom: 1.25em;
}

/* ============================================================
   LAYOUT WRAPPERS
   ============================================================ */
.lgp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.lgp-section {
	padding: 80px 0;
}

.lgp-section--dark {
	background-color: var(--lgp-black);
}

.lgp-section--mid {
	background-color: var(--lgp-dark);
}

.lgp-section--accent {
	background-color: var(--lgp-orange);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.lgp-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(8, 8, 8, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--lgp-border);
	padding: 0 24px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.lgp-header__logo {
	font-family: var(--lgp-font-head);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--lgp-white) !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
}

.lgp-header__logo span {
	color: var(--lgp-orange);
}

.lgp-header__logo .logo-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lgp-orange);
	display: inline-block;
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.4); opacity: 0.7; }
}

.lgp-nav {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lgp-nav a {
	font-family: var(--lgp-font-head);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lgp-muted);
	text-decoration: none;
	transition: color var(--lgp-transition);
	padding: 4px 0;
	position: relative;
}

.lgp-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--lgp-orange);
	transition: width var(--lgp-transition);
}

.lgp-nav a:hover,
.lgp-nav a.current {
	color: var(--lgp-white);
}

.lgp-nav a:hover::after,
.lgp-nav a.current::after {
	width: 100%;
}

.lgp-nav-cta {
	background: var(--lgp-orange) !important;
	color: var(--lgp-white) !important;
	padding: 10px 22px !important;
	border-radius: var(--lgp-radius) !important;
	font-size: 0.8rem !important;
}

.lgp-nav-cta::after {
	display: none !important;
}

.lgp-nav-cta:hover {
	background: var(--lgp-orange-hot) !important;
	color: var(--lgp-white) !important;
}

/* Mobile nav toggle */
.lgp-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 5px;
}

.lgp-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--lgp-white);
	transition: all var(--lgp-transition);
}

/* ============================================================
   HERO
   ============================================================ */
.lgp-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background-color: var(--lgp-black);
	padding-top: 70px;
}

.lgp-hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #080808 0%, #1a0a00 50%, #080808 100%);
}

.lgp-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255, 92, 0, 0.12) 0%, transparent 70%),
		radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255, 92, 0, 0.06) 0%, transparent 60%);
}

.lgp-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 40px 24px;
	max-width: 900px;
}

.lgp-hero__eyebrow {
	font-family: var(--lgp-font-head);
	font-size: 0.8rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--lgp-orange);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.lgp-hero__eyebrow::before,
.lgp-hero__eyebrow::after {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background: var(--lgp-orange);
	opacity: 0.6;
}

.lgp-hero__title {
	font-family: var(--lgp-font-head) !important;
	font-size: clamp(3rem, 8vw, 7rem) !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	line-height: 0.95 !important;
	color: var(--lgp-white) !important;
	margin: 0 0 24px !important;
	letter-spacing: -0.01em !important;
}

.lgp-hero__title em {
	color: var(--lgp-orange);
	font-style: normal;
}

.lgp-hero__sub {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--lgp-muted);
	max-width: 540px;
	margin: 0 auto 40px;
	line-height: 1.6;
	font-weight: 400;
}

.lgp-hero__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lgp-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--lgp-font-head);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: var(--lgp-radius);
	border: none;
	cursor: pointer;
	transition: all var(--lgp-transition);
}

.lgp-btn--primary {
	background: var(--lgp-orange);
	color: var(--lgp-white);
}

.lgp-btn--primary:hover {
	background: var(--lgp-orange-hot);
	color: var(--lgp-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 92, 0, 0.35);
}

.lgp-btn--outline {
	background: transparent;
	color: var(--lgp-white);
	border: 1.5px solid var(--lgp-border);
}

.lgp-btn--outline:hover {
	border-color: var(--lgp-white);
	color: var(--lgp-white);
	transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.lgp-section-header {
	text-align: center;
	margin-bottom: 56px;
}

.lgp-section-header__eyebrow {
	font-family: var(--lgp-font-head);
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--lgp-orange);
	margin-bottom: 12px;
	display: block;
}

.lgp-section-header__title {
	font-size: clamp(1.8rem, 4vw, 3rem) !important;
	margin: 0 0 16px !important;
}

.lgp-section-header__desc {
	color: var(--lgp-muted);
	max-width: 560px;
	margin: 0 auto;
	font-size: 1rem;
}

/* ============================================================
   SPORTS SPECIALTIES GRID
   ============================================================ */
.lgp-sports-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2px;
	margin-top: 48px;
}

.lgp-sport-card {
	background: var(--lgp-dark);
	padding: 40px 32px;
	position: relative;
	overflow: hidden;
	transition: background var(--lgp-transition);
	border: 1px solid var(--lgp-border);
}

.lgp-sport-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 0;
	background: var(--lgp-orange);
	transition: height 0.4s ease;
}

.lgp-sport-card:hover {
	background: var(--lgp-dark-mid);
}

.lgp-sport-card:hover::before {
	height: 100%;
}

.lgp-sport-card__icon {
	font-size: 2.5rem;
	margin-bottom: 20px;
	display: block;
}

.lgp-sport-card__title {
	font-family: var(--lgp-font-head);
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lgp-white);
	margin: 0 0 10px;
}

.lgp-sport-card__desc {
	color: var(--lgp-muted);
	font-size: 0.9rem;
	margin: 0;
	line-height: 1.6;
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.lgp-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 4px;
}

.lgp-portfolio-item {
	position: relative;
	overflow: hidden;
	background: var(--lgp-mid);
	cursor: pointer;
}

.lgp-portfolio-item:nth-child(1) { grid-column: span 8; grid-row: span 2; }
.lgp-portfolio-item:nth-child(2) { grid-column: span 4; }
.lgp-portfolio-item:nth-child(3) { grid-column: span 4; }
.lgp-portfolio-item:nth-child(4) { grid-column: span 4; }
.lgp-portfolio-item:nth-child(5) { grid-column: span 4; }
.lgp-portfolio-item:nth-child(6) { grid-column: span 8; }

.lgp-portfolio-item__img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	transition: transform 0.6s ease;
	display: block;
}

.lgp-portfolio-item:hover .lgp-portfolio-item__img {
	transform: scale(1.05);
}

.lgp-portfolio-item__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
	opacity: 0;
	transition: opacity var(--lgp-transition);
	display: flex;
	align-items: flex-end;
	padding: 24px;
}

.lgp-portfolio-item:hover .lgp-portfolio-item__overlay {
	opacity: 1;
}

.lgp-portfolio-item__label {
	font-family: var(--lgp-font-head);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lgp-white);
}

/* ============================================================
   ABOUT / STATS STRIP
   ============================================================ */
.lgp-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	border-top: 1px solid var(--lgp-border);
	border-left: 1px solid var(--lgp-border);
}

.lgp-stat {
	text-align: center;
	padding: 40px 24px;
	border-right: 1px solid var(--lgp-border);
	border-bottom: 1px solid var(--lgp-border);
}

.lgp-stat__number {
	font-family: var(--lgp-font-head);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--lgp-orange);
	line-height: 1;
	display: block;
}

.lgp-stat__label {
	font-family: var(--lgp-font-head);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lgp-muted);
	margin-top: 8px;
	display: block;
}

/* ============================================================
   SERVICES / PRICING
   ============================================================ */
.lgp-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2px;
}

.lgp-service-card {
	background: var(--lgp-dark);
	padding: 48px 36px;
	border: 1px solid var(--lgp-border);
	position: relative;
	transition: border-color var(--lgp-transition);
}

.lgp-service-card--featured {
	border-color: var(--lgp-orange);
}

.lgp-service-card--featured::before {
	content: 'MOST POPULAR';
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--lgp-orange);
	color: var(--lgp-white);
	font-family: var(--lgp-font-head);
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	padding: 5px 16px;
}

.lgp-service-card:hover {
	border-color: var(--lgp-orange);
}

.lgp-service-card__name {
	font-family: var(--lgp-font-head);
	font-size: 1.4rem;
	color: var(--lgp-white);
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.lgp-service-card__price {
	font-family: var(--lgp-font-head);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--lgp-orange);
	font-weight: 700;
	line-height: 1;
	margin: 16px 0;
}

.lgp-service-card__price sup {
	font-size: 0.5em;
	vertical-align: top;
	margin-top: 0.4em;
}

.lgp-service-card__desc {
	color: var(--lgp-muted);
	font-size: 0.9rem;
	margin: 0 0 28px;
	line-height: 1.6;
}

.lgp-service-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
	border-top: 1px solid var(--lgp-border);
	padding-top: 24px;
}

.lgp-service-card__features li {
	font-size: 0.9rem;
	color: var(--lgp-text);
	padding: 8px 0;
	border-bottom: 1px solid rgba(255,255,255,0.04);
	display: flex;
	align-items: center;
	gap: 10px;
}

.lgp-service-card__features li::before {
	content: '▸';
	color: var(--lgp-orange);
	font-size: 0.7rem;
	flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.lgp-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.lgp-about-img-wrap {
	position: relative;
}

.lgp-about-img-wrap img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
}

.lgp-about-img-wrap::after {
	content: '';
	position: absolute;
	bottom: -16px;
	right: -16px;
	width: 100%;
	height: 100%;
	border: 2px solid var(--lgp-orange);
	z-index: -1;
}

.lgp-about-text .lgp-eyebrow {
	font-family: var(--lgp-font-head);
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--lgp-orange);
	display: block;
	margin-bottom: 16px;
}

.lgp-gear-list {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.lgp-gear-list li {
	font-family: var(--lgp-font-head);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lgp-muted);
	border: 1px solid var(--lgp-border);
	padding: 6px 14px;
	border-radius: 2px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.lgp-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: start;
}

.lgp-contact-info__item {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
	align-items: flex-start;
}

.lgp-contact-info__icon {
	width: 44px;
	height: 44px;
	border: 1px solid var(--lgp-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.lgp-contact-info__label {
	font-family: var(--lgp-font-head);
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lgp-muted);
	display: block;
	margin-bottom: 4px;
}

.lgp-contact-info__value {
	color: var(--lgp-white);
	font-size: 1rem;
}

/* Contact Form */
.lgp-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lgp-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.lgp-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.lgp-form__label {
	font-family: var(--lgp-font-head);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--lgp-muted);
}

.lgp-form__input,
.lgp-form__select,
.lgp-form__textarea {
	background: var(--lgp-dark);
	border: 1px solid var(--lgp-border);
	color: var(--lgp-white);
	padding: 14px 16px;
	font-family: var(--lgp-font-body);
	font-size: 0.95rem;
	border-radius: var(--lgp-radius);
	transition: border-color var(--lgp-transition);
	outline: none;
	width: 100%;
}

.lgp-form__input:focus,
.lgp-form__select:focus,
.lgp-form__textarea:focus {
	border-color: var(--lgp-orange);
}

.lgp-form__input::placeholder,
.lgp-form__textarea::placeholder {
	color: var(--lgp-border);
}

.lgp-form__select {
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}

.lgp-form__select option {
	background: var(--lgp-dark-mid);
}

.lgp-form__textarea {
	resize: vertical;
	min-height: 140px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lgp-footer {
	background: var(--lgp-black);
	border-top: 1px solid var(--lgp-border);
	padding: 56px 24px 32px;
}

.lgp-footer__top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--lgp-border);
	margin-bottom: 32px;
}

.lgp-footer__brand {
	font-family: var(--lgp-font-head);
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--lgp-white);
	letter-spacing: 0.05em;
	display: block;
	margin-bottom: 12px;
}

.lgp-footer__brand span {
	color: var(--lgp-orange);
}

.lgp-footer__tagline {
	color: var(--lgp-muted);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

.lgp-footer__heading {
	font-family: var(--lgp-font-head);
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--lgp-muted);
	margin: 0 0 16px;
}

.lgp-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lgp-footer__links li {
	margin-bottom: 10px;
}

.lgp-footer__links a {
	color: var(--lgp-text);
	font-size: 0.9rem;
	text-decoration: none;
	transition: color var(--lgp-transition);
}

.lgp-footer__links a:hover {
	color: var(--lgp-orange);
}

.lgp-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.lgp-footer__copy {
	color: var(--lgp-muted);
	font-size: 0.8rem;
	margin: 0;
}

.lgp-footer__copy span {
	color: var(--lgp-orange);
}

.lgp-social {
	display: flex;
	gap: 12px;
}

.lgp-social a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--lgp-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lgp-muted);
	font-size: 0.9rem;
	text-decoration: none;
	transition: all var(--lgp-transition);
	border-radius: var(--lgp-radius);
}

.lgp-social a:hover {
	border-color: var(--lgp-orange);
	color: var(--lgp-orange);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.lgp-cta-banner {
	background: var(--lgp-orange);
	padding: 64px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.lgp-cta-banner::before {
	content: 'SHOOT';
	position: absolute;
	font-family: var(--lgp-font-head);
	font-size: clamp(8rem, 20vw, 18rem);
	font-weight: 900;
	color: rgba(0,0,0,0.08);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	letter-spacing: -0.05em;
	white-space: nowrap;
	pointer-events: none;
}

.lgp-cta-banner h2 {
	color: var(--lgp-white) !important;
	font-size: clamp(2rem, 5vw, 4rem) !important;
	margin: 0 0 12px !important;
	position: relative;
}

.lgp-cta-banner p {
	color: rgba(255,255,255,0.8);
	font-size: 1.1rem;
	margin: 0 0 32px;
	position: relative;
}

.lgp-btn--dark {
	background: var(--lgp-black);
	color: var(--lgp-white);
}

.lgp-btn--dark:hover {
	background: var(--lgp-dark-mid);
	color: var(--lgp-white);
	transform: translateY(-2px);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.lgp-page-hero {
	padding: 140px 24px 80px;
	background: var(--lgp-black);
	text-align: center;
	border-bottom: 1px solid var(--lgp-border);
}

.lgp-page-hero__title {
	font-size: clamp(2.5rem, 6vw, 5rem) !important;
	margin: 0 0 16px !important;
}

.lgp-page-hero__sub {
	color: var(--lgp-muted);
	font-size: 1.1rem;
	max-width: 560px;
	margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
	.lgp-header {
		padding: 0 16px;
	}

	.lgp-nav {
		display: none;
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: rgba(8,8,8,0.98);
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 24px 32px;
		border-bottom: 1px solid var(--lgp-border);
		gap: 0;
	}

	.lgp-nav.is-open {
		display: flex;
	}

	.lgp-nav li {
		width: 100%;
	}

	.lgp-nav a {
		display: block;
		padding: 14px 0;
		font-size: 1.1rem;
		border-bottom: 1px solid var(--lgp-border);
	}

	.lgp-nav a::after {
		display: none;
	}

	.lgp-nav-toggle {
		display: flex;
	}

	.lgp-portfolio-grid {
		grid-template-columns: 1fr 1fr;
	}

	.lgp-portfolio-item:nth-child(n) {
		grid-column: span 1;
		grid-row: span 1;
	}

	.lgp-about-grid,
	.lgp-contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.lgp-footer__top {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.lgp-form-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.lgp-section {
		padding: 56px 0;
	}

	.lgp-portfolio-grid {
		grid-template-columns: 1fr;
	}

	.lgp-portfolio-item:nth-child(n) {
		grid-column: span 1;
	}
}

/* ============================================================
   PLACEHOLDER PHOTO TILES (until real photos are added)
   ============================================================ */
.lgp-photo-placeholder {
	background: var(--lgp-mid);
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4/3;
	color: var(--lgp-border);
	font-family: var(--lgp-font-head);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

/* ============================================================
   WORDPRESS BLOCK OVERRIDES
   ============================================================ */
.wp-site-blocks,
.wp-block-group,
.is-layout-flow {
	background: transparent !important;
}

.wp-block-post-content,
.entry-content {
	color: var(--lgp-text);
}

/* Override TT5 whites */
.wp-block-template-part,
.wp-block-group__inner-container {
	background: transparent !important;
}
