/* =============================================================
   Gebr. Jansen GmbH – Theme-Stile
   Glassmorphism · Blau/Orange · Outfit + Work Sans · Mobile-first
   ============================================================= */

:root {
	--c-primary: #2563EB;
	--c-primary-dark: #1E3A8A;
	--c-primary-darker: #172554;
	--c-secondary: #3B82F6;
	--c-accent: #F97316;
	--c-accent-dark: #EA580C;
	--c-bg: #F8FAFC;
	--c-bg-alt: #EEF3FA;
	--c-fg: #1E293B;
	--c-muted: #64748B;
	--c-line: #E2E8F0;
	--c-white: #FFFFFF;

	--glass-bg: rgba(255, 255, 255, 0.72);
	--glass-brd: rgba(255, 255, 255, 0.55);
	--glass-blur: 14px;

	--radius: 16px;
	--radius-sm: 10px;
	--radius-lg: 24px;
	--shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
	--shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
	--shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);

	--ff-head: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
	--ff-body: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

	--wrap: 1180px;
	--gap: clamp(1.25rem, 4vw, 3rem);
	--sp-section: clamp(3.5rem, 8vw, 6.5rem);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--c-fg);
	background: var(--c-bg);
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-primary-dark); }
h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--c-primary-darker); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; border-radius: 4px; }

.gj-container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

.gj-skip-link {
	position: absolute; left: -999px; top: 0; z-index: 999;
	background: var(--c-primary); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0;
}
.gj-skip-link:focus { left: 0; color: #fff; }

/* ---------- Icons (Guardrail: dezent, feste Größe) ---------- */
.gj-icon { flex: none; display: inline-block; vertical-align: middle; }

/* ---------- Buttons ---------- */
.gj-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	font-family: var(--ff-head); font-weight: 600; font-size: 1rem; line-height: 1;
	padding: .85rem 1.5rem; border-radius: var(--radius-sm); border: 2px solid transparent;
	cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	min-height: 44px; text-align: center;
}
.gj-btn:hover { transform: translateY(-2px); }
.gj-btn--primary { background: var(--c-primary); color: #fff; box-shadow: var(--shadow-sm); }
.gj-btn--primary:hover { background: var(--c-primary-dark); color: #fff; box-shadow: var(--shadow); }
.gj-btn--accent { background: var(--c-accent); color: #fff; box-shadow: 0 8px 20px rgba(249, 115, 22, 0.28); }
.gj-btn--accent:hover { background: var(--c-accent-dark); color: #fff; }
.gj-btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.6); backdrop-filter: blur(6px); }
.gj-btn--ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }
.gj-btn--light { background: #fff; color: var(--c-primary-dark); }
.gj-btn--light:hover { background: #f1f5f9; color: var(--c-primary-darker); }
.gj-btn--lg { padding: 1rem 1.85rem; font-size: 1.0625rem; }

/* ---------- Kicker / Section head ---------- */
.gj-kicker {
	display: inline-flex; align-items: center; gap: .5rem;
	font-family: var(--ff-head); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
	color: var(--c-primary); background: rgba(37, 99, 235, 0.09); padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1rem;
}
.gj-kicker .gj-icon { color: var(--c-accent); }
.gj-kicker--light { color: #fff; background: rgba(255,255,255,0.16); backdrop-filter: blur(6px); }
.gj-kicker--light .gj-icon { color: #fff; }

.gj-section { padding-block: var(--sp-section); }
.gj-section--alt { background: var(--c-bg-alt); }
.gj-section__head { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.25rem); text-align: center; }
.gj-section__head .gj-kicker { margin-inline: auto; }
.gj-section__title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: .5rem; }
.gj-section__lead { color: var(--c-muted); font-size: 1.1rem; margin: 0; }

/* ---------- Topbar ---------- */
.gj-topbar { background: var(--c-primary-darker); color: rgba(255,255,255,0.9); font-size: .9rem; }
.gj-topbar__inner { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: flex-end; padding-block: .5rem; }
.gj-topbar__item { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,0.92); }
.gj-topbar__item:hover { color: #fff; }
.gj-topbar__item .gj-icon { color: var(--c-accent); }
.gj-topbar__item--muted { color: rgba(255,255,255,0.7); }
.gj-topbar__item--muted .gj-icon { color: rgba(255,255,255,0.7); }

/* ---------- Header / Nav (Glass) ---------- */
.gj-header { position: sticky; top: 0; z-index: 100; background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur)); border-bottom: 1px solid var(--glass-brd); transition: box-shadow .25s ease, background .25s ease; }
.gj-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.9); }
.gj-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .75rem; }

.gj-brand__link { display: inline-flex; align-items: center; gap: .6rem; }
.gj-brand__mark { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark)); color: #fff; flex: none; }
.gj-brand__name { font-family: var(--ff-head); font-weight: 700; font-size: 1.2rem; color: var(--c-primary-darker); letter-spacing: -.01em; }

.gj-nav { display: flex; align-items: center; gap: 1.75rem; }
.gj-menu { display: flex; align-items: center; gap: 1.5rem; }
.gj-menu a { font-family: var(--ff-head); font-weight: 500; color: var(--c-fg); font-size: 1rem; padding: .4rem 0; position: relative; }
.gj-menu a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--c-accent); transition: width .25s ease; }
.gj-menu a:hover, .gj-menu .current-menu-item > a { color: var(--c-primary); }
.gj-menu a:hover::after, .gj-menu .current-menu-item > a::after { width: 100%; }
.gj-menu .sub-menu { display: none; }

.gj-burger { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; padding: 10px; }
.gj-burger span { display: block; height: 2.5px; background: var(--c-primary-darker); border-radius: 2px; margin: 5px 0; transition: transform .25s ease, opacity .2s ease; }
.gj-burger.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.gj-burger.is-active span:nth-child(2) { opacity: 0; }
.gj-burger.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.gj-hero { position: relative; color: #fff; background: var(--c-primary-darker); isolation: isolate; }
.gj-hero::before { content: ""; position: absolute; inset: 0; background-image: var(--gj-hero-img); background-size: cover; background-position: center; z-index: -2; }
.gj-hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(23,37,84,0.92) 0%, rgba(30,58,138,0.78) 45%, rgba(23,37,84,0.45) 100%); }
.gj-hero__inner { padding-block: clamp(4rem, 12vw, 8rem); }
.gj-hero__content { max-width: 660px; }
.gj-hero__title { color: #fff; font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; }
.gj-hero__text { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: rgba(255,255,255,0.92); max-width: 60ch; margin-bottom: 2rem; }
.gj-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.25rem; }
.gj-hero__badges { display: flex; flex-wrap: wrap; gap: 1.25rem 1.75rem; }
.gj-hero__badges li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; color: rgba(255,255,255,0.95); }
.gj-hero__badges .gj-icon { color: var(--c-accent); }

/* ---------- Stats ---------- */
.gj-stats { margin-top: -3.5rem; position: relative; z-index: 5; }
.gj-stats__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
	background: var(--c-line); border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: var(--shadow); border: 1px solid var(--glass-brd);
}
.gj-stat { background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); padding: 1.75rem 1.25rem; text-align: center; }
.gj-stat__num { display: block; font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.75rem); color: var(--c-primary); line-height: 1; }
.gj-stat__label { display: block; margin-top: .4rem; color: var(--c-muted); font-weight: 500; font-size: .98rem; }

/* ---------- Cards (Leistungen) ---------- */
.gj-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gj-card {
	background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
	padding: 1.9rem 1.75rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
	display: flex; flex-direction: column;
}
.gj-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(37,99,235,0.3); }
.gj-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(249,115,22,0.12)); color: var(--c-primary); margin-bottom: 1.15rem; flex: none; }
.gj-card__title { font-size: 1.28rem; margin-bottom: .5rem; }
.gj-card__text { color: var(--c-muted); margin-bottom: 1.15rem; flex: 1; }
.gj-card__link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--ff-head); font-weight: 600; color: var(--c-accent); margin-top: auto; }
.gj-card__link:hover { color: var(--c-accent-dark); gap: .6rem; }

/* ---------- Über uns ---------- */
.gj-about { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.gj-about__media { position: relative; }
.gj-about__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.gj-about__badge { position: absolute; right: -12px; bottom: -18px; background: var(--c-accent); color: #fff; padding: 1.1rem 1.4rem; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.gj-about__badge-num { display: block; font-family: var(--ff-head); font-weight: 800; font-size: 1.9rem; line-height: 1; }
.gj-about__badge-label { display: block; font-size: .85rem; opacity: .95; }
.gj-about__text { color: var(--c-muted); font-size: 1.1rem; margin-bottom: 1.5rem; }
.gj-checklist { display: grid; gap: 1rem; margin-bottom: 1.75rem; }
.gj-checklist li { display: flex; gap: .9rem; align-items: flex-start; }
.gj-checklist .gj-icon { color: var(--c-accent); margin-top: 3px; }
.gj-checklist strong { display: block; font-family: var(--ff-head); color: var(--c-primary-darker); }
.gj-checklist span { color: var(--c-muted); font-size: .98rem; }

/* ---------- Features ---------- */
.gj-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gj-feature { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm); }
.gj-feature__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(37,99,235,0.1); color: var(--c-primary); margin-bottom: 1rem; flex: none; }
.gj-feature h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.gj-feature p { color: var(--c-muted); font-size: .98rem; margin: 0; }

/* ---------- Referenzen ---------- */
.gj-refs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gj-ref { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.gj-ref__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gj-ref:hover .gj-ref__img { transform: scale(1.06); }
.gj-ref__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1.25rem .95rem; color: #fff; background: linear-gradient(to top, rgba(23,37,84,0.9), rgba(23,37,84,0)); }
.gj-ref__title { display: block; font-family: var(--ff-head); font-weight: 600; font-size: 1.1rem; }
.gj-ref__ort { display: inline-flex; align-items: center; gap: .35rem; font-size: .9rem; opacity: .9; }
.gj-ref__ort .gj-icon { color: var(--c-accent); }

/* ---------- Kontakt / Anfahrt ---------- */
.gj-contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.gj-contact__list { display: grid; gap: 1.15rem; margin: 1.5rem 0; }
.gj-contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.gj-contact__ic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(37,99,235,0.1); color: var(--c-primary); flex: none; }
.gj-contact__list strong { display: block; font-family: var(--ff-head); color: var(--c-primary-darker); margin-bottom: .1rem; }
.gj-contact__list a, .gj-contact__list span { color: var(--c-muted); }
.gj-contact__list a:hover { color: var(--c-primary); }
.gj-contact__area { display: inline-flex; align-items: center; gap: .5rem; background: rgba(249,115,22,0.09); color: var(--c-accent-dark); padding: .6rem 1rem; border-radius: var(--radius-sm); font-weight: 500; margin-bottom: 1.5rem; }
.gj-contact__area .gj-icon { color: var(--c-accent); }
.gj-contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--c-line); }
.gj-contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- CTA-Band ---------- */
.gj-cta { background: linear-gradient(120deg, var(--c-primary-dark), var(--c-primary-darker)); color: #fff; }
.gj-cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(2.5rem, 6vw, 4rem); }
.gj-cta__title { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: .35rem; }
.gj-cta__text p { color: rgba(255,255,255,0.9); margin: 0; max-width: 46ch; }
.gj-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.gj-cta__phone { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-family: var(--ff-head); font-weight: 600; font-size: 1.1rem; }
.gj-cta__phone .gj-icon { color: var(--c-accent); }
.gj-cta__phone:hover { color: #fff; opacity: .9; }

/* ---------- Page hero / breadcrumb ---------- */
.gj-pagehero { position: relative; background: var(--c-primary-darker); color: #fff; isolation: isolate; }
.gj-pagehero--img::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: var(--gj-hero-img); background-size: cover; background-position: center; }
.gj-pagehero:not(.gj-pagehero--img) { background: linear-gradient(120deg, var(--c-primary-dark), var(--c-primary-darker)); }
.gj-pagehero__inner { padding-block: clamp(2.75rem, 7vw, 4.5rem); }
.gj-pagehero__title { color: #fff; font-size: clamp(1.9rem, 5vw, 3rem); margin: 0; }
.gj-breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .9rem; color: rgba(255,255,255,0.8); margin-bottom: .75rem; }
.gj-breadcrumb a { color: rgba(255,255,255,0.9); }
.gj-breadcrumb a:hover { color: #fff; }

/* ---------- Prose (Gutenberg-Inhalt) ---------- */
.gj-prose { max-width: 820px; margin-inline: auto; }
.gj-prose > * { margin-bottom: 1.15rem; }
.gj-prose h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-top: 2.25rem; }
.gj-prose h3 { font-size: 1.35rem; margin-top: 1.75rem; }
.gj-prose ul:not(.gj-menu):not(.gj-footer__menu) { list-style: none; padding: 0; display: grid; gap: .65rem; }
.gj-prose ul:not(.gj-menu):not(.gj-footer__menu) li { position: relative; padding-left: 1.9rem; }
.gj-prose ul:not(.gj-menu):not(.gj-footer__menu) li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 12px; border-radius: 3px; background: linear-gradient(135deg, var(--c-primary), var(--c-accent)); }
.gj-prose ol { padding-left: 1.35rem; display: grid; gap: .5rem; }
.gj-prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gj-prose blockquote { margin: 1.75rem 0; padding: 1.25rem 1.5rem; border-left: 4px solid var(--c-accent); background: var(--c-bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--c-primary-darker); }
.gj-prose a { text-decoration: underline; text-underline-offset: 2px; }
.gj-prose .wp-block-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.gj-prose .wp-block-button__link { background: var(--c-accent); color: #fff; border-radius: var(--radius-sm); padding: .85rem 1.5rem; font-family: var(--ff-head); font-weight: 600; text-decoration: none; }

/* ---------- Footer ---------- */
.gj-footer { background: var(--c-primary-darker); color: rgba(255,255,255,0.78); padding-top: clamp(3rem, 6vw, 4.5rem); }
.gj-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.gj-brand__link--footer .gj-brand__name { color: #fff; }
.gj-footer__text { margin-top: 1rem; font-size: .98rem; }
.gj-footer__title { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.gj-footer__list { display: grid; gap: .7rem; }
.gj-footer__list li { display: flex; gap: .6rem; align-items: flex-start; }
.gj-footer__list .gj-icon { color: var(--c-accent); margin-top: 3px; }
.gj-footer__list a { color: rgba(255,255,255,0.82); }
.gj-footer__list a:hover { color: #fff; }
.gj-footer__menu { display: grid; gap: .6rem; }
.gj-footer__menu a { color: rgba(255,255,255,0.82); }
.gj-footer__menu a:hover { color: #fff; }
.gj-footer__hours { font-size: .98rem; }
.gj-footer__bar { border-top: 1px solid rgba(255,255,255,0.12); }
.gj-footer__bar-inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-block: 1.25rem; font-size: .9rem; }
.gj-footer__legal { display: flex; gap: 1.25rem; }
.gj-footer__legal a { color: rgba(255,255,255,0.82); }
.gj-footer__legal a:hover { color: #fff; }

/* ---------- Kontaktformular (CF7) ---------- */
.gj-prose .wpcf7 { margin-top: .5rem; }
.gj-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.gj-prose .wpcf7 p { margin-bottom: 1rem; }
.gj-prose .wpcf7 label { display: block; font-family: var(--ff-head); font-weight: 500; color: var(--c-primary-darker); font-size: .95rem; }
.gj-prose .wpcf7 input[type="text"],
.gj-prose .wpcf7 input[type="email"],
.gj-prose .wpcf7 input[type="tel"],
.gj-prose .wpcf7 textarea {
	width: 100%; margin-top: .35rem; padding: .8rem 1rem; font-family: var(--ff-body); font-size: 1rem;
	border: 1px solid var(--c-line); border-radius: var(--radius-sm); background: #fff; color: var(--c-fg);
	transition: border-color .2s ease, box-shadow .2s ease; min-height: 48px;
}
.gj-prose .wpcf7 textarea { min-height: 150px; resize: vertical; }
.gj-prose .wpcf7 input:focus, .gj-prose .wpcf7 textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.gj-prose .wpcf7 .wpcf7-submit {
	background: var(--c-accent); color: #fff; border: 0; border-radius: var(--radius-sm);
	font-family: var(--ff-head); font-weight: 600; font-size: 1.0625rem; padding: .95rem 2rem; min-height: 50px;
	cursor: pointer; transition: background .2s ease, transform .15s ease; box-shadow: 0 8px 20px rgba(249,115,22,0.28);
}
.gj-prose .wpcf7 .wpcf7-submit:hover { background: var(--c-accent-dark); transform: translateY(-2px); }
.gj-prose .wpcf7-response-output { border-radius: var(--radius-sm); margin: 1rem 0 0; }
@media (max-width: 600px) { .gj-form-grid { grid-template-columns: 1fr; } }

.gj-pagination { margin-top: 2.5rem; }
.gj-pagination .page-numbers { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; padding: 0 .5rem; border: 1px solid var(--c-line); border-radius: var(--radius-sm); margin: 0 .2rem; }
.gj-pagination .current { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1024px) {
	.gj-cards, .gj-refs { grid-template-columns: repeat(2, 1fr); }
	.gj-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.gj-burger { display: block; }
	.gj-nav {
		position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
		flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
		background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
		padding: 5.5rem 1.5rem 2rem; transform: translateX(100%); transition: transform .3s ease;
		box-shadow: var(--shadow-lg); overflow-y: auto;
	}
	.gj-nav.is-open { transform: translateX(0); }
	.gj-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.gj-menu li { border-bottom: 1px solid var(--c-line); }
	.gj-menu a { display: block; padding: .95rem 0; font-size: 1.1rem; min-height: 44px; }
	.gj-menu a::after { display: none; }
	.gj-nav__cta { margin-top: 1.5rem; }
	body.gj-nav-open { overflow: hidden; }
	body.gj-nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(15,23,42,0.45); z-index: 99; }
	.gj-header { z-index: 100; }
	.gj-nav { z-index: 101; }

	.gj-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.gj-about { grid-template-columns: 1fr; }
	.gj-about__media { max-width: 520px; }
	.gj-contact { grid-template-columns: 1fr; }
	.gj-contact__map iframe { min-height: 320px; }
}

@media (max-width: 600px) {
	body { font-size: 1rem; }
	.gj-topbar__inner { justify-content: center; gap: .85rem; }
	.gj-topbar__item--muted { display: none; }
	.gj-cards, .gj-refs, .gj-features, .gj-stats__grid { grid-template-columns: 1fr; }
	.gj-stats { margin-top: -2rem; }
	.gj-hero__actions { flex-direction: column; align-items: stretch; }
	.gj-hero__actions .gj-btn { width: 100%; }
	.gj-hero__badges { gap: .75rem 1.25rem; }
	.gj-cta__inner { flex-direction: column; align-items: flex-start; }
	.gj-cta__actions { width: 100%; }
	.gj-cta__actions .gj-btn { width: 100%; }
	.gj-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
	.gj-footer__bar-inner { flex-direction: column; text-align: center; }
	.gj-about__badge { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.gj-btn:hover, .gj-card:hover, .gj-ref:hover .gj-ref__img { transform: none; }
}
