/* ════════════════════════════════════════════════════════════════════════════
   InSPE Catering — Main Stylesheet (v1.2)
   ─────────────────────────────────
   Changes from v1.1:
   • WRAP-DIV PATTERN: All section styles now target `.inspe-*` on a div
     inside the HTML widget, not on the Elementor <section>. Why: Elementor's
     JSON import does NOT reliably apply the CSS Classes field from template
     JSON. Rather than fight Elementor's undocumented internals, classes live
     in markup I control. Users no longer need to manually add CSS Classes
     in the Elementor UI.
   • Round 2 Customizer patches (container width, widget padding) baked in
     directly. Additional CSS in Customizer can be cleared after upgrade.
   • Full subpage section styles: carousel, breadcrumbs, description,
     divider, gallery, CTA, plus a `.inspe-subpage-hero` variant for the
     subpage's carousel-driven hero.
   • Each wrap-div is self-sufficient: handles its own padding, background,
     min-height, etc. — Elementor section wrapping is cosmetic.

   Load order:
     1. astra parent style
     2. google fonts
     3. child style.css
     4. THIS FILE
     5. inspe.js

   Table of contents:
     §1  Design tokens
     §2  Typography + base
     §3  Utilities
     §4  ELEMENTOR NORMALIZATION (round 2 patches, baked)
     §5  Nav (header)
     §6  Mobile menu overlay
     §7  Floating "Menu" button
     §8  Hero tiles (main page)
     §9  Stats strip
     §10 About (parallax)
     §11 Menu download strip
     §12 Contact
     §13 Bistro Mama
     §14 Footer
     §15 Subpage — Hero carousel
     §16 Subpage — Breadcrumbs
     §17 Subpage — Description
     §18 Subpage — Divider
     §19 Subpage — Gallery
     §20 Subpage — CTA
     §21 Elementor-in-editor safety
════════════════════════════════════════════════════════════════════════════ */


/* ═════════════════════════════════════
   §1 DESIGN TOKENS
════════════════════════════════════════ */
:root {
	--inspe-color-black:       #0a0a0a;
	--inspe-color-dark:        #1a1a1a;
	--inspe-color-charcoal:    #2c2c2c;
	--inspe-color-gray-dark:   #444;
	--inspe-color-gray:        #777;
	--inspe-color-gray-light:  #b0b0b0;
	--inspe-color-cream:       #ffffff;
	--inspe-color-white:       #fefefe;
	--inspe-color-warm-white:  #ffffff;
	--inspe-color-green-deep:  #3a6b35;
	--inspe-color-green:       #5a8f3c;
	--inspe-color-green-light: #7db84a;
	--inspe-color-green-pale:  #e8f0e0;
	--inspe-color-green-glow:  rgba(90, 143, 60, 0.15);

	--inspe-font-display: 'Bodoni Moda', Georgia, serif;
	--inspe-font-body:    'Montserrat', 'Helvetica Neue', sans-serif;

	--inspe-size-xs:    clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
	--inspe-size-sm:    clamp(0.8rem, 0.75rem + 0.3vw, 0.95rem);
	--inspe-size-base:  clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
	--inspe-size-md:    clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
	--inspe-size-lg:    clamp(1.4rem, 1.2rem + 1vw, 2rem);
	--inspe-size-xl:    clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
	--inspe-size-xxl:   clamp(2.8rem, 2rem + 4vw, 5.5rem);

	--inspe-space-xs:   0.5rem;
	--inspe-space-sm:   1rem;
	--inspe-space-md:   2rem;
	--inspe-space-lg:   4rem;
	--inspe-space-xl:   6rem;
	--inspe-space-xxl:  10rem;

	--inspe-transition-fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--inspe-transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--inspe-transition-slow:   0.7s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ═════════════════════════════════════
   §2 TYPOGRAPHY + BASE
════════════════════════════════════════ */
body {
	font-family: var(--inspe-font-body);
	font-size: var(--inspe-size-base);
	color: var(--inspe-color-dark);
	background: var(--inspe-color-warm-white);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
html { scroll-behavior: smooth; }

.ast-container,
#primary.content-area {
	padding-inline: 0;
}


/* ═════════════════════════════════════
   §3 UTILITIES
════════════════════════════════════════ */
.inspe-container {
	width: 100%;
	max-width: 1320px;
	margin-inline: auto;
	padding-inline: clamp(1.2rem, 3vw, 3rem);
}

.inspe-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.inspe-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.inspe-reveal--d1 { transition-delay: 0.1s; }
.inspe-reveal--d2 { transition-delay: 0.2s; }
.inspe-reveal--d3 { transition-delay: 0.3s; }
.inspe-reveal--d4 { transition-delay: 0.4s; }
.inspe-reveal--d5 { transition-delay: 0.5s; }


/* ═════════════════════════════════════
   §4 ELEMENTOR NORMALIZATION
   ─────────────────
   When one of our wrap-divs is inside an Elementor HTML widget, Elementor's
   scaffolding (section > container > column > widget-wrap > widget) adds
   width caps and padding we don't want. These rules neutralize that
   scaffolding for any HTML widget that contains one of our `.inspe-*`
   wrap-divs. Uses :has() — supported in modern Evergreen browsers.
   Fallback selector added for older browsers.
════════════════════════════════════════ */

/* Modern browsers: :has() lets us target only Elementor wrappers
   that actually contain our markup. */
.elementor-widget-html:has(> .elementor-widget-container > [class*="inspe-"]) {
	width: 100%;
	max-width: none;
}
.elementor-widget-html:has(> .elementor-widget-container > [class*="inspe-"]) > .elementor-widget-container {
	padding: 0 !important;
}

/* Ancestor reset: when a container/column/section holds an HTML widget with
   our markup, kill its width cap and its widgets-spacing so Elementor's
   section-boxed default stops constraining our full-bleed layouts. */
.elementor-section:has(> .elementor-container > .elementor-column > .elementor-widget-wrap > .elementor-widget-html > .elementor-widget-container > [class*="inspe-"]) > .elementor-container,
.elementor-section:has(> .elementor-container > .elementor-column > .elementor-widget-wrap > .elementor-widget-html > .elementor-widget-container > [class*="inspe-"]) > .elementor-container > .elementor-column {
	max-width: 100% !important;
	width: 100% !important;
}
.elementor-section:has(> .elementor-container > .elementor-column > .elementor-widget-wrap > .elementor-widget-html > .elementor-widget-container > [class*="inspe-"]) {
	padding: 0 !important;
}

/* Footer — same treatment whether HFE wraps it or not */
.elementor-location-footer .elementor-section,
.elementor-location-footer .elementor-container,
.elementor-location-footer .elementor-column,
.elementor-location-footer .elementor-widget-wrap,
.elementor-location-footer .elementor-widget-container {
	max-width: 100% !important;
	width: 100% !important;
}
.elementor-location-footer .elementor-section,
.elementor-location-footer .elementor-widget-container {
	padding: 0 !important;
}

/* Header — needs the same treatment */
.elementor-location-header .elementor-section,
.elementor-location-header .elementor-container,
.elementor-location-header .elementor-column,
.elementor-location-header .elementor-widget-wrap,
.elementor-location-header .elementor-widget-container {
	max-width: 100% !important;
	width: 100% !important;
}
.elementor-location-header .elementor-widget-container {
	padding: 0 !important;
}


/* ═════════════════════════════════════
   §5 NAV (HEADER)
   ─────────────────
   The HFE header template contains an HTML widget whose content starts with
   <div class="inspe-nav">. The `position: fixed` and scroll behavior both
   apply to the wrap-div, not to Elementor's section. Much more predictable.
════════════════════════════════════════ */

.inspe-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	padding-block: 0.8rem;
	background: transparent;
	transition:
		background var(--inspe-transition-smooth),
		box-shadow var(--inspe-transition-smooth),
		padding var(--inspe-transition-smooth);
}

.inspe-nav.is-scrolled {
	background: rgba(10, 10, 10, 0.97);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
	padding-block: 0.4rem;
}

/* Admin bar offset */
.admin-bar .inspe-nav { top: 32px; }
@media (max-width: 782px) {
	.admin-bar .inspe-nav { top: 46px; }
}

.inspe-nav__inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.inspe-nav__logo {
	order: 1;
	flex-shrink: 0;
}
.inspe-nav__logo img {
	height: clamp(63px, 8.25vw, 92px);
	width: auto;
	transition: var(--inspe-transition-smooth);
}
.inspe-nav.is-scrolled .inspe-nav__logo img {
	height: clamp(44px, 5.5vw, 66px);
}

.inspe-nav__links-left,
.inspe-nav__links-right {
	display: none;
	list-style: none;
	gap: 2rem;
	align-items: center;
	margin: 0;
	padding: 0;
}
.inspe-nav__links-left  { order: 0; justify-content: flex-end; }
.inspe-nav__links-right { order: 2; justify-content: flex-start; }

.inspe-nav__links-left a,
.inspe-nav__links-right a {
	font-size: var(--inspe-size-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--inspe-color-white);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	position: relative;
	padding: 0.3rem 0;
	text-decoration: none;
	transition: color var(--inspe-transition-fast);
}
.inspe-nav__links-left a::after,
.inspe-nav__links-right a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--inspe-color-green-light);
	transition: width var(--inspe-transition-smooth);
}
.inspe-nav__links-left a:hover,
.inspe-nav__links-right a:hover { color: var(--inspe-color-green-light); }
.inspe-nav__links-left a:hover::after,
.inspe-nav__links-right a:hover::after { width: 100%; }

.inspe-nav__hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	z-index: 1001;
	order: 2;
	background: none;
	border: 0;
	cursor: pointer;
}
.inspe-nav__hamburger span {
	width: 26px;
	height: 2px;
	background: var(--inspe-color-white);
	transition: var(--inspe-transition-smooth);
	border-radius: 2px;
	display: block;
}
.inspe-nav.is-scrolled .inspe-nav__hamburger { display: flex; }

.inspe-nav__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.inspe-nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
.inspe-nav__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
	.inspe-nav.is-scrolled .inspe-nav__links-left,
	.inspe-nav.is-scrolled .inspe-nav__links-right { display: flex; }
	.inspe-nav.is-scrolled .inspe-nav__hamburger { display: none; }
	.inspe-nav.is-scrolled .inspe-nav__inner {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		gap: 2rem;
	}
}
@media (max-width: 959px) {
	.inspe-nav.is-scrolled .inspe-nav__inner {
		justify-content: space-between;
		padding: 0 16px;
	}
	.inspe-nav.is-scrolled .inspe-nav__logo { order: 0; }
}


/* ═════════════════════════════════════
   §6 MOBILE MENU OVERLAY
════════════════════════════════════════ */
.inspe-mobile-menu {
	position: fixed;
	inset: 0;
	background: var(--inspe-color-warm-white);
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--inspe-transition-smooth);
}
.inspe-mobile-menu.is-open {
	opacity: 1;
	pointer-events: all;
}
.inspe-mobile-menu__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}
.inspe-mobile-menu a {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-lg);
	color: var(--inspe-color-dark);
	text-decoration: none;
	transition: color var(--inspe-transition-fast);
}
.inspe-mobile-menu a:hover { color: var(--inspe-color-green); }


/* ═════════════════════════════════════
   §7 FLOATING "MENU" BUTTON
════════════════════════════════════════ */
.inspe-floating-menu-btn {
	position: fixed;
	top: 120px;
	right: 0;
	z-index: 1000;
	background: var(--inspe-color-green-light);
	color: var(--inspe-color-white);
	font-family: var(--inspe-font-body);
	font-size: var(--inspe-size-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.8rem 1.4rem;
	text-decoration: none;
	transition:
		background var(--inspe-transition-fast),
		transform var(--inspe-transition-fast),
		box-shadow var(--inspe-transition-fast);
	box-shadow: -2px 4px 15px rgba(125, 184, 74, 0.3);
}
.inspe-floating-menu-btn:hover {
	background: var(--inspe-color-green);
	transform: translateX(-4px);
	box-shadow: -4px 6px 20px rgba(58, 107, 53, 0.4);
	color: var(--inspe-color-white);
}
@media (max-width: 959px) {
	.inspe-floating-menu-btn {
		top: auto;
		bottom: 0;
		right: 0;
		left: 0;
		text-align: center;
		padding: 1rem;
		box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
	}
	.inspe-floating-menu-btn:hover { transform: none; }
}


/* ═════════════════════════════════════
   §8 HERO TILES (main page)
════════════════════════════════════════ */
.inspe-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: var(--inspe-color-black);
	margin: 0;
}

.inspe-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(255, 255, 255, 0.15);
	pointer-events: none;
}

.inspe-hero__title-h1 {
	all: unset;
	display: block;
	font-family: var(--inspe-font-display);
	font-size: clamp(1.1rem, 1rem + 0.5vw, 1.45rem);
	font-weight: 600;
	color: var(--inspe-color-white);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.4rem;
	transition: var(--inspe-transition-smooth);
}

.inspe-hero__tiles {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3px;
	z-index: 1;
}

.inspe-hero__tile {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	color: inherit;
	text-decoration: none;
	display: block;
	opacity: 0;
	animation: inspe-tile-in 0.6s forwards;
}
.inspe-hero__tile:nth-child(1) { animation-delay: 0.6s;  }
.inspe-hero__tile:nth-child(2) { animation-delay: 0.75s; }
.inspe-hero__tile:nth-child(3) { animation-delay: 0.9s;  }
.inspe-hero__tile:nth-child(4) { animation-delay: 1.05s; }

@keyframes inspe-tile-in {
	from { opacity: 0; transform: scale(1.05); }
	to   { opacity: 1; transform: scale(1); }
}

.inspe-hero__tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
	filter: brightness(0.85);
}
.inspe-hero__tile:hover img {
	transform: scale(1.08);
	filter: brightness(0.6);
}

.inspe-hero__tile-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	text-align: center;
	z-index: 2;
}

.inspe-hero__tile-icon {
	width: 56px;
	height: 56px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	transition: var(--inspe-transition-smooth);
	color: rgba(255, 255, 255, 0.8);
}
.inspe-hero__tile-icon svg { width: 26px; height: 26px; }
.inspe-hero__tile:hover .inspe-hero__tile-icon {
	border-color: var(--inspe-color-green-light);
	background: var(--inspe-color-green-deep);
	color: var(--inspe-color-white);
}

.inspe-hero__tile-name {
	font-family: var(--inspe-font-display);
	font-size: clamp(1.1rem, 1rem + 0.5vw, 1.45rem);
	font-weight: 600;
	color: var(--inspe-color-white);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.4rem;
	transition: var(--inspe-transition-smooth);
}

.inspe-hero__tile-desc {
	font-size: var(--inspe-size-sm);
	color: rgba(255, 255, 255, 0.65);
	max-width: 280px;
	line-height: 1.55;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(8px);
	margin: 0;
	transition:
		opacity var(--inspe-transition-smooth),
		max-height var(--inspe-transition-smooth),
		transform var(--inspe-transition-smooth);
}
.inspe-hero__tile:hover .inspe-hero__tile-desc {
	opacity: 1;
	max-height: 80px;
	transform: translateY(0);
}

.inspe-hero__tile-extra {
	font-size: var(--inspe-size-xs);
	color: rgba(255, 255, 255, 0.75);
	max-width: 320px;
	line-height: 1.65;
	margin: 0;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(8px);
	transition:
		opacity var(--inspe-transition-smooth),
		max-height var(--inspe-transition-smooth),
		margin var(--inspe-transition-smooth),
		transform var(--inspe-transition-smooth);
}
.inspe-hero__tile:hover .inspe-hero__tile-extra {
	opacity: 1;
	max-height: 120px;
	margin-top: 0.8rem;
	transform: translateY(0);
}

@media (min-width: 768px) {
	.inspe-hero__tiles { display: flex; gap: 3px; }
	.inspe-hero__tile { flex: 1 1 25%; min-width: 0; }
	.inspe-hero__tiles:hover .inspe-hero__tile       { flex: 1 1 23.33%; }
	.inspe-hero__tiles:hover .inspe-hero__tile:hover { flex: 1 1 30%; }
	.inspe-hero__tile-content {
		justify-content: flex-end;
		padding-bottom: clamp(2rem, 5vw, 4rem);
	}
}


/* ═════════════════════════════════════
   §9 STATS STRIP
════════════════════════════════════════ */
.inspe-stats {
	background: var(--inspe-color-white);
	padding-block: var(--inspe-space-md);
	overflow: hidden;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	width: 100%;
}
.inspe-stats__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--inspe-space-md);
	text-align: center;
}
.inspe-stats__number {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-xl);
	font-weight: 700;
	color: var(--inspe-color-green-light);
	line-height: 1.1;
}
.inspe-stats__label {
	font-size: var(--inspe-size-xs);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--inspe-color-gray);
	font-weight: 500;
	margin-top: 0.3rem;
}
@media (min-width: 768px) {
	.inspe-stats__inner { grid-template-columns: repeat(4, 1fr); }
}
/* NOTE: counter renders "+" when target >= 100 OR === 15. "100%" becomes
   "100+". Known quirk, intentional for now. */


/* ═════════════════════════════════════
   §10 ABOUT (PARALLAX)
════════════════════════════════════════ */
.inspe-about {
	position: relative;
	overflow: hidden;
	background-color: var(--inspe-color-black);
	/* Background image is set on the wrap-div via inline style in the
	   HTML widget, so content creators can edit it there without touching
	   Elementor section settings. */
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	width: 100%;
}
.inspe-about::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(10, 10, 10, 0.6) 0%,
		rgba(10, 10, 10, 0.45) 30%,
		rgba(10, 10, 10, 0.5) 60%,
		rgba(10, 10, 10, 0.65) 100%
	);
	pointer-events: none;
}
.inspe-about__inner {
	position: relative;
	z-index: 2;
}

.inspe-about__intro {
	padding: var(--inspe-space-xxl) 0 var(--inspe-space-xl);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	gap: var(--inspe-space-md);
}

.inspe-about__label {
	font-size: var(--inspe-size-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--inspe-color-green-light);
	margin: 0;
}
.inspe-about__heading {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-xxl);
	font-weight: 700;
	color: var(--inspe-color-white);
	line-height: 1.1;
	margin: 0;
}
.inspe-about__heading em {
	font-style: italic;
	color: var(--inspe-color-green-light);
}
.inspe-about__text {
	font-size: var(--inspe-size-base);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.85;
	margin: 0;
}
.inspe-about__signature {
	font-family: var(--inspe-font-display);
	font-style: italic;
	font-size: var(--inspe-size-md);
	color: var(--inspe-color-green-light);
	margin-top: var(--inspe-space-sm);
}
.inspe-about__divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}
.inspe-about__features {
	padding: var(--inspe-space-xl) 0 var(--inspe-space-xxl);
}
.inspe-about__features-header {
	text-align: center;
	margin-bottom: var(--inspe-space-lg);
}
.inspe-about__features-title {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-xl);
	font-weight: 700;
	color: var(--inspe-color-white);
	line-height: 1.15;
	margin: 0;
}
.inspe-about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
.inspe-about__card {
	padding: clamp(2rem, 3vw, 2.8rem);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition:
		background var(--inspe-transition-smooth),
		border-color var(--inspe-transition-smooth),
		transform var(--inspe-transition-smooth);
}
.inspe-about__card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(90, 143, 60, 0.4);
	transform: translateY(-6px);
}
.inspe-about__card-title {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-md);
	font-weight: 600;
	color: var(--inspe-color-white);
	margin-bottom: 0.8rem;
}
.inspe-about__card-text {
	font-size: var(--inspe-size-sm);
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.75;
}
@media (min-width: 640px) { .inspe-about__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .inspe-about__grid { grid-template-columns: repeat(4, 1fr); } }


/* ═════════════════════════════════════
   §11 MENU DOWNLOAD STRIP
════════════════════════════════════════ */
.inspe-menu-strip {
	padding-block: var(--inspe-space-lg);
	background: var(--inspe-color-white);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	width: 100%;
}
.inspe-menu-strip__inner {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	text-align: center;
}
.inspe-menu-strip__label {
	font-size: var(--inspe-size-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--inspe-color-green);
	margin-bottom: 0.6rem;
}
.inspe-menu-strip__text {
	font-size: var(--inspe-size-base);
	color: var(--inspe-color-gray);
	line-height: 1.75;
	max-width: 600px;
	margin: 0;
}
.inspe-menu-strip__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.9rem 2.4rem;
	background: var(--inspe-color-green-light);
	color: var(--inspe-color-white);
	font-size: var(--inspe-size-sm);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition:
		background var(--inspe-transition-fast),
		transform var(--inspe-transition-fast),
		box-shadow var(--inspe-transition-fast);
}
.inspe-menu-strip__btn:hover {
	background: var(--inspe-color-green);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(90, 143, 60, 0.3);
	color: var(--inspe-color-white);
}
.inspe-menu-strip__btn svg {
	width: 18px;
	height: 18px;
	transition: transform var(--inspe-transition-smooth);
}
.inspe-menu-strip__btn:hover svg { transform: translateY(2px); }
@media (min-width: 768px) {
	.inspe-menu-strip__inner {
		flex-direction: row;
		text-align: left;
		justify-content: space-between;
	}
}


/* ═════════════════════════════════════
   §12 CONTACT
════════════════════════════════════════ */
.inspe-contact {
	padding-block: var(--inspe-space-xl);
	background: var(--inspe-color-warm-white);
	width: 100%;
}
.inspe-contact__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--inspe-space-lg);
	align-items: start;
}
.inspe-contact__label {
	font-size: var(--inspe-size-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--inspe-color-green);
	margin-bottom: 1rem;
}
.inspe-contact__title {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-xl);
	font-weight: 700;
	color: var(--inspe-color-dark);
	line-height: 1.15;
	margin-bottom: 0.8rem;
}
.inspe-contact__subtitle {
	font-size: var(--inspe-size-base);
	color: var(--inspe-color-gray);
	margin-bottom: var(--inspe-space-lg);
	max-width: 500px;
}
.inspe-contact__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 480px) {
	.inspe-contact__cards { grid-template-columns: 1fr 1fr; }
}
.inspe-contact__card {
	padding: 1.6rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition:
		transform var(--inspe-transition-smooth),
		box-shadow var(--inspe-transition-smooth);
}
.inspe-contact__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.inspe-contact__card-icon {
	width: 48px;
	height: 48px;
	background: var(--inspe-color-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
	color: var(--inspe-color-white);
	transition: background var(--inspe-transition-smooth);
}
.inspe-contact__card:hover .inspe-contact__card-icon { background: var(--inspe-color-gray-dark); }
.inspe-contact__card-label {
	font-size: var(--inspe-size-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--inspe-color-gray);
	margin-bottom: 0.4rem;
}
.inspe-contact__card-value {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-md);
	font-weight: 600;
	color: var(--inspe-color-dark);
	line-height: 1.4;
}
.inspe-contact__card-value a {
	color: var(--inspe-color-dark);
	text-decoration: none;
	transition: color var(--inspe-transition-fast);
}
.inspe-contact__card-value a:hover { color: var(--inspe-color-green); }
.inspe-contact__map {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--inspe-color-cream);
	overflow: hidden;
}
.inspe-contact__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
@media (min-width: 960px) {
	.inspe-contact__inner {
		grid-template-columns: 55% 45%;
		gap: 48px;
		align-items: stretch;
	}
	.inspe-contact__map {
		aspect-ratio: auto;
		height: 100%;
		min-height: 480px;
	}
}


/* ═════════════════════════════════════
   §13 BISTRO MAMA
════════════════════════════════════════ */
.inspe-bistro {
	padding-block: var(--inspe-space-lg);
	background: var(--inspe-color-cream);
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	width: 100%;
}
.inspe-bistro__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
}
.inspe-bistro__badge {
	font-size: var(--inspe-size-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--inspe-color-gray);
}
.inspe-bistro__name {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-lg);
	font-weight: 700;
	color: var(--inspe-color-dark);
	margin: 0;
}
.inspe-bistro__desc {
	font-size: var(--inspe-size-sm);
	color: var(--inspe-color-gray);
	max-width: 500px;
	margin: 0;
}
.inspe-bistro__socials {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
}
.inspe-bistro__social {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--inspe-color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	color: var(--inspe-color-gray-dark);
	text-decoration: none;
	transition:
		transform var(--inspe-transition-fast),
		box-shadow var(--inspe-transition-fast),
		background var(--inspe-transition-fast),
		color var(--inspe-transition-fast);
}
.inspe-bistro__social:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	background: var(--inspe-color-green-deep);
	color: var(--inspe-color-white);
}


/* ═════════════════════════════════════
   §14 FOOTER
════════════════════════════════════════ */
.inspe-footer {
	background: var(--inspe-color-black);
	color: var(--inspe-color-gray-light);
	padding: var(--inspe-space-xl) 0 var(--inspe-space-md);
	width: 100%;
}
.inspe-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--inspe-space-lg);
	margin-bottom: var(--inspe-space-lg);
}
.inspe-footer__logo img {
	height: 48px;
	width: auto;
	margin-bottom: 1.2rem;
}
.inspe-footer__brand-text {
	font-size: var(--inspe-size-sm);
	color: var(--inspe-color-gray);
	line-height: 1.7;
	max-width: 320px;
}
.inspe-footer__col-title {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-base);
	font-weight: 600;
	color: var(--inspe-color-white);
	margin-bottom: 1.2rem;
}
.inspe-footer__links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
}
.inspe-footer__links a {
	font-size: var(--inspe-size-sm);
	color: var(--inspe-color-gray);
	text-decoration: none;
	transition:
		color var(--inspe-transition-fast),
		padding-left var(--inspe-transition-fast);
}
.inspe-footer__links a:hover {
	color: var(--inspe-color-green-light);
	padding-left: 6px;
}
.inspe-footer__contact-line {
	font-size: var(--inspe-size-sm);
	color: var(--inspe-color-gray);
	margin-bottom: 0.5rem;
}
.inspe-footer__contact-line strong { color: var(--inspe-color-gray-light); }
.inspe-footer__socials {
	display: flex;
	gap: 0.8rem;
	margin-top: 1rem;
}
.inspe-footer__social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--inspe-color-gray);
	text-decoration: none;
	transition: var(--inspe-transition-fast);
}
.inspe-footer__social-link:hover {
	border-color: var(--inspe-color-green);
	color: var(--inspe-color-green-light);
	background: rgba(90, 143, 60, 0.1);
}
.inspe-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: var(--inspe-space-md);
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	align-items: center;
	text-align: center;
}
.inspe-footer__copy {
	font-size: var(--inspe-size-xs);
	color: var(--inspe-color-gray);
	margin: 0;
}
@media (min-width: 768px) {
	.inspe-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
	.inspe-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}


/* ═════════════════════════════════════
   §15 SUBPAGE — HERO CAROUSEL
════════════════════════════════════════ */
.inspe-subpage-hero {
	position: relative;
	width: 100%;
	height: clamp(300px, 50vw, 600px);
	overflow: hidden;
	background: var(--inspe-color-charcoal);
}
.inspe-subpage-hero__track {
	display: flex;
	height: 100%;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.inspe-subpage-hero__slide {
	flex: 0 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inspe-subpage-hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.inspe-subpage-hero__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--inspe-color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background var(--inspe-transition-fast);
}
.inspe-subpage-hero__btn:hover { background: rgba(255, 255, 255, 0.3); }
.inspe-subpage-hero__btn--prev { left: 1rem; }
.inspe-subpage-hero__btn--next { right: 1rem; }
.inspe-subpage-hero__dots {
	position: absolute;
	bottom: 1.2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.6rem;
	z-index: 10;
}
.inspe-subpage-hero__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition:
		background var(--inspe-transition-fast),
		transform var(--inspe-transition-fast);
	border: 0;
	padding: 0;
}
.inspe-subpage-hero__dot.is-active {
	background: var(--inspe-color-white);
	transform: scale(1.2);
}
.inspe-subpage-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.35);
	pointer-events: none;
}
.inspe-subpage-hero__title {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-xl);
	font-weight: 600;
	color: var(--inspe-color-white);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-shadow:
		0 2px 20px rgba(0, 0, 0, 0.7),
		0 4px 40px rgba(0, 0, 0, 0.4);
	text-align: center;
	padding: 0 1rem;
	margin: 0;
}


/* ═════════════════════════════════════
   §16 SUBPAGE — BREADCRUMBS
════════════════════════════════════════ */
.inspe-breadcrumbs {
	padding-block: var(--inspe-space-md);
	width: 100%;
}
.inspe-breadcrumbs__list {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	gap: 0.5rem;
	font-size: var(--inspe-size-sm);
	color: var(--inspe-color-gray);
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.inspe-breadcrumbs__list a {
	color: var(--inspe-color-gray);
	text-decoration: none;
	transition: color var(--inspe-transition-fast);
}
.inspe-breadcrumbs__list a:hover { color: var(--inspe-color-green); }
.inspe-breadcrumbs__separator {
	color: var(--inspe-color-gray-light);
	font-size: 0.7em;
}
.inspe-breadcrumbs__current {
	color: var(--inspe-color-dark);
	font-weight: 500;
}


/* ═════════════════════════════════════
   §17 SUBPAGE — DESCRIPTION
════════════════════════════════════════ */
.inspe-description {
	margin-inline: auto;
	max-width: 90%;
	padding: var(--inspe-space-xl) var(--inspe-space-lg);
	background: #f5f5f5;
	box-shadow:
		0 2px 8px rgba(0, 0, 0, 0.1),
		0 6px 20px rgba(0, 0, 0, 0.06);
}
.inspe-description__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 880px;
	margin: 0 auto;
	gap: var(--inspe-space-md);
}
.inspe-description__label {
	font-size: var(--inspe-size-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--inspe-color-green);
	margin: 0;
}
.inspe-description__text {
	font-size: var(--inspe-size-base);
	color: var(--inspe-color-gray-dark);
	line-height: 1.8;
	max-width: 800px;
	margin: 0;
}
.inspe-description__signature {
	font-family: var(--inspe-font-display);
	font-size: var(--inspe-size-md);
	color: var(--inspe-color-gray);
	margin-top: var(--inspe-space-sm);
}
@media (max-width: 767px) {
	.inspe-description {
		padding: var(--inspe-space-xl) var(--inspe-space-md);
	}
	.inspe-description__inner { max-width: 100%; }
}


/* ═════════════════════════════════════
   §18 SUBPAGE — DIVIDER
════════════════════════════════════════ */
.inspe-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin: 60px auto;
	max-width: 600px;
	padding: 0 var(--inspe-space-md);
}
.inspe-divider__line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--inspe-color-green-light), transparent);
}
.inspe-divider__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inspe-divider__icon svg {
	width: 40px;
	height: 40px;
	color: var(--inspe-color-green);
	opacity: 0.7;
}


/* ═════════════════════════════════════
   §19 SUBPAGE — GALLERY
════════════════════════════════════════ */
.inspe-gallery {
	margin-top: 60px;
	max-width: 90%;
	margin-inline: auto;
}
.inspe-gallery__label {
	font-size: var(--inspe-size-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--inspe-color-green);
	text-align: center;
	margin-bottom: var(--inspe-space-lg);
}
.inspe-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 80px;
	gap: 4px;
}
.inspe-gallery__item {
	overflow: hidden;
	background: var(--inspe-color-gray-dark);
}
.inspe-gallery__item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.inspe-gallery__item:hover img { transform: scale(1.04); }
.inspe-gallery__item--h2 { grid-row: span 2; }
.inspe-gallery__item--h3 { grid-row: span 3; }
.inspe-gallery__item--h4 { grid-row: span 4; }
.inspe-gallery__item--w2 { grid-column: span 2; }
@media (min-width: 600px) {
	.inspe-gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 70px; }
}
@media (min-width: 960px) {
	.inspe-gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 80px; }
}


/* ═════════════════════════════════════
   §20 SUBPAGE — CTA
════════════════════════════════════════ */
.inspe-cta {
	padding-block: var(--inspe-space-xl);
	text-align: center;
	background: #f5f5f5;
	width: 100%;
}
.inspe-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--inspe-space-md);
	max-width: 640px;
	margin: 0 auto;
}
.inspe-cta__text {
	font-size: var(--inspe-size-base);
	color: var(--inspe-color-gray-dark);
	line-height: 1.8;
	margin: 0;
}
.inspe-cta__btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-family: var(--inspe-font-body);
	font-size: var(--inspe-size-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--inspe-color-white);
	background: var(--inspe-color-green-deep);
	border: 2px solid var(--inspe-color-green-deep);
	text-decoration: none;
	transition:
		background var(--inspe-transition-fast),
		color var(--inspe-transition-fast),
		border-color var(--inspe-transition-fast);
}
.inspe-cta__btn:hover {
	background: transparent;
	color: var(--inspe-color-green-light);
	border-color: var(--inspe-color-green-light);
}


/* ═════════════════════════════════════
   §21 ELEMENTOR-IN-EDITOR SAFETY
════════════════════════════════════════ */
.elementor-editor-active .inspe-floating-menu-btn,
.elementor-editor-active .inspe-mobile-menu {
	display: none;
}
.elementor-editor-active .inspe-nav {
	position: relative;
	top: 0 !important;
}
