/* ==========================================================================
   James Barker Barber v2 — main stylesheet
   Built from the "JBB Website Revamp" Figma file (Home, Services, Gallery,
   Contact/Book — desktop frames). Enqueued by functions.php; style.css only
   carries the WP theme header comment.
   ========================================================================== */

/* --------------------------------------------------------------------------
   00. Fonts

   Crete Round, Inter and Aperto are self-hosted from client-supplied files.
   "Kode Mono" (reviews carousel arrows) is the one piece still not
   supplied, so those arrows fall back to the system monospace stack —
   swap in the real file later via the --font-mono custom property below.
   -------------------------------------------------------------------------- */

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/Inter-Variable.ttf') format('truetype-variations'),
	     url('../fonts/inter/Inter-Variable.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/Inter-Italic-Variable.ttf') format('truetype-variations'),
	     url('../fonts/inter/Inter-Italic-Variable.ttf') format('truetype');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Crete Round';
	src: url('../fonts/crete-round/CreteRound-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Crete Round';
	src: url('../fonts/crete-round/CreteRound-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Aperto';
	src: url('../fonts/aperto/Aperto-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* --------------------------------------------------------------------------
   01. Tokens
   -------------------------------------------------------------------------- */

:root {
	--navy:          #202730;
	--navy-deep:     #192033;
	--cream:         #f8eaa9;
	--heading-ink:   #212e52;
	--pale-green:    #f3fbe4;
	--off-white:     #f4f3ef;
	--white:         #ffffff;
	--muted:         #8c8c8c;
	--divider-dark:  #474747;
	--divider-light: #dfdbd0;
	--black:         #000000;

	--font-display: 'Crete Round', Georgia, serif;
	--font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-logo:    'Aperto', 'Inter', -apple-system, sans-serif;
	--font-mono:    ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace; /* Kode Mono not supplied */

	--container: 1240px;
	--radius: 4px;
}

/* --------------------------------------------------------------------------
   02. Reset & base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--black);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
button { font: inherit; cursor: pointer; }
iframe { max-width: 100%; }

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--navy);
	color: var(--white);
	padding: 12px 20px;
	z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

.jbv2-container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 40px;
}

.jbv2-section-heading {
	font-size: clamp(32px, 4.5vw, 60px);
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.jbv2-section-heading--white { color: var(--white); }
.jbv2-section-heading--cream { color: var(--cream); }
.jbv2-section-heading--navy  { color: var(--navy); text-align: left; }

.jbv2-section-intro {
	max-width: 700px;
	margin: 0 auto 48px;
	text-align: center;
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.5;
	text-wrap: balance;
}
.jbv2-section-intro--white { color: var(--white); }

/* --------------------------------------------------------------------------
   03. Buttons
   -------------------------------------------------------------------------- */

.jbv2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-display);
	font-size: 18px;
	line-height: 1.3;
	padding: 14px 28px;
	border-radius: var(--radius);
	border: 2px solid transparent;
	white-space: nowrap;
	transition: transform .15s ease, opacity .15s ease;
}
.jbv2-btn:hover { opacity: .88; }
.jbv2-btn:active { transform: translateY(1px); }

.jbv2-btn--cream { background: var(--cream); color: var(--navy-deep); }
.jbv2-btn--white { background: var(--white); color: var(--navy-deep); }
.jbv2-btn--navy  { background: var(--navy); color: var(--white); }
.jbv2-btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.jbv2-btn--sm { font-size: 15px; padding: 9px 18px; }
.jbv2-btn--block { display: flex; width: 100%; }

/* --------------------------------------------------------------------------
   04. Header & nav
   -------------------------------------------------------------------------- */

.jbv2-header {
	position: relative;
	z-index: 40;
	background: var(--navy);
}
.jbv2-has-hero .jbv2-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	background: transparent;
}

.jbv2-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 24px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.jbv2-wordmark {
	font-family: var(--font-logo);
	font-weight: 600;
	font-size: 19px;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--white);
	white-space: nowrap;
}

.jbv2-nav { flex: 1; display: flex; justify-content: center; }
.jbv2-nav__menu { display: flex; gap: 40px; }
.jbv2-nav__menu a {
	font-family: var(--font-display);
	font-size: 18px;
	text-transform: uppercase;
	color: var(--white);
}
.jbv2-nav__menu .current-menu-item > a,
.jbv2-nav__menu a:hover { color: var(--cream); }

.jbv2-header__cta { flex-shrink: 0; }

.jbv2-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	padding: 0;
}
.jbv2-burger span { display: block; height: 2px; background: var(--white); border-radius: 1px; }

.jbv2-drawer {
	position: fixed;
	top: 0; right: 0;
	width: 85vw;
	max-width: 320px;
	height: 100vh;
	height: 100dvh;
	overflow-y: auto;
	background: var(--navy);
	padding: 28px 28px 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	transform: translateX(100%);
	transition: transform .25s ease;
	z-index: 101;
}
.jbv2-drawer.is-open { transform: translateX(0); }
.jbv2-drawer__close {
	align-self: flex-end;
	background: none;
	border: none;
	color: var(--white);
	font-size: 32px;
	line-height: 1;
	padding: 4px;
}
.jbv2-drawer__menu { display: flex; flex-direction: column; gap: 20px; }
.jbv2-drawer__menu a {
	font-family: var(--font-display);
	font-size: 22px;
	text-transform: uppercase;
	color: var(--white);
}
.jbv2-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
	z-index: 100;
}
.jbv2-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

/* --------------------------------------------------------------------------
   05. Home — Hero
   -------------------------------------------------------------------------- */

.jbv2-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy);
}
.jbv2-hero__bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: 50% center;
	filter: brightness(.62);
}
.jbv2-hero__inner {
	/* vh-based spacing so the whole hero — logo through CTAs — settles
	   inside one screenful on a typical laptop viewport (~700-900px tall)
	   without the buttons dropping below the fold; clamp() keeps it from
	   going cramped on short screens or absurdly loose on tall monitors. */
	position: relative;
	z-index: 2;
	max-width: var(--container);
	margin: 0 auto;
	padding: clamp(90px, 14vh, 140px) 40px clamp(32px, 6vh, 60px);
	width: 100%;
}
.jbv2-hero__crest {
	width: clamp(120px, 16vh, 200px);
	height: auto;
	margin-bottom: clamp(12px, 2.5vh, 24px);
}
.jbv2-hero__heading {
	font-size: clamp(36px, 5vw, 60px);
	line-height: 1.15;
	color: var(--white);
	text-transform: uppercase;
	max-width: 620px;
	margin-bottom: clamp(14px, 3vh, 28px);
}
.jbv2-hero__sub {
	font-size: clamp(17px, 1.8vw, 25px);
	color: var(--white);
	max-width: 560px;
	margin-bottom: clamp(16px, 4vh, 36px);
}
.jbv2-hero__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(10px, 2vh, 15px);
}
.jbv2-hero__actions .jbv2-btn {
	width: 273px;
	max-width: 100%;
	justify-content: center;
}

/* --------------------------------------------------------------------------
   06. Home — Services teaser
   -------------------------------------------------------------------------- */

.jbv2-teaser {
	position: relative;
	background: var(--pale-green);
	padding: 90px 0;
	overflow: hidden;
}
.jbv2-teaser__bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	filter: blur(3px) brightness(.55);
}
.jbv2-teaser::after {
	content: '';
	position: absolute; inset: 0;
	background: rgba(0,0,0,.3);
}
.jbv2-teaser__inner {
	position: relative;
	z-index: 1;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 40px;
	text-align: center;
}
.jbv2-teaser__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 373px));
	justify-content: center;
	gap: 40px;
	margin-bottom: 48px;
}
.jbv2-teaser-card {
	background: var(--white);
	border-radius: 4px;
	overflow: hidden;
	text-align: left;
	padding-bottom: 28px;
}
.jbv2-teaser-card__photo { position: relative; height: 230px; }
.jbv2-teaser-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.jbv2-teaser-card__badge {
	position: absolute;
	left: 24px;
	bottom: -28px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid var(--white);
}
.jbv2-teaser-card h3 {
	font-size: 24px;
	color: var(--heading-ink);
	text-transform: uppercase;
	margin: 44px 24px 10px;
}
.jbv2-teaser-card p {
	margin: 0 24px;
	font-size: 14px;
	color: rgba(0,0,0,.78);
}

/* --------------------------------------------------------------------------
   07. Home — Social Proof / reviews
   -------------------------------------------------------------------------- */

.jbv2-social-proof {
	background: var(--navy);
	padding: 90px 40px;
	text-align: center;
}
.jbv2-photo-wall {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
	max-width: var(--container);
	margin: 0 auto 40px;
	padding: 0 40px;
}
.jbv2-photo-wall__item {
	width: 269px;
	height: 294px;
	border-radius: 4px;
	overflow: hidden;
	flex-shrink: 0;
}
.jbv2-photo-wall__item img { width: 100%; height: 100%; object-fit: cover; }
.jbv2-photo-wall__item--2,
.jbv2-photo-wall__item--3 { transform: translateY(-14px); }

.jbv2-social-proof__cta { margin-bottom: 72px; }

.jbv2-stars {
	font-size: 30px;
	letter-spacing: 2px;
	color: var(--white);
	margin-bottom: 36px;
}
.jbv2-testimonials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 40px;
}
.jbv2-testimonials__track { flex: 1; }
.jbv2-testimonial p {
	font-size: clamp(16px, 1.8vw, 22px);
	color: var(--white);
	margin-bottom: 16px;
}
.jbv2-testimonial cite { font-style: normal; color: var(--white); font-size: 18px; }
.jbv2-testimonials__arrow {
	background: none;
	border: none;
	color: var(--white);
	font-family: var(--font-mono);
	font-size: 34px;
	line-height: 1;
	padding: 8px;
	flex-shrink: 0;
}
.jbv2-testimonials__arrow:disabled { opacity: .3; cursor: default; }

/* --------------------------------------------------------------------------
   08. Home — Find Us / Location
   -------------------------------------------------------------------------- */

.jbv2-location {
	position: relative;
	background: var(--black);
	padding: 90px 0;
	overflow: hidden;
}
.jbv2-location__bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	filter: blur(3px);
	opacity: .55;
}
.jbv2-location__inner {
	position: relative;
	z-index: 1;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: minmax(0, 630px) minmax(0, 489px);
	gap: 60px;
	align-items: center;
	justify-content: center;
}
.jbv2-location__map iframe { width: 100%; height: 433px; border-radius: 4px; }
.jbv2-location__heading { text-align: left; margin-bottom: 24px; }
.jbv2-location__address {
	font-size: 20px;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 24px;
}
.jbv2-location__address strong {
	display: block;
	font-family: var(--font-body);
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 4px;
}
.jbv2-location__address br + br { display: none; }
.jbv2-location__block { margin-bottom: 24px; }
.jbv2-location__block h3 {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 25px;
	color: var(--white);
	margin-bottom: 8px;
}
.jbv2-location__block p { color: var(--white); font-size: 20px; font-weight: 400; }
.jbv2-location__maplink { color: var(--cream); text-decoration: underline; font-size: 18px; }

/* Operating-hours tabbed layout: day labels and their times each sit in
   their own left-aligned column, so a long label like "Sun & Public
   Holidays" doesn't push its time out of line with "Mon - Sat"'s. */
.jbv2-hours {
	display: grid;
	grid-template-columns: max-content 1fr;
	column-gap: 28px;
	row-gap: 4px;
	color: var(--white);
	font-size: 20px;
	font-weight: 400;
}
.jbv2-hours__day,
.jbv2-hours__time { text-align: left; }
/* Contact page sits on an off-white section — override the white default. */
.jbv2-contact__block .jbv2-hours { color: var(--black); }

/* --------------------------------------------------------------------------
   09. Final CTA (Home / Services / Gallery)
   -------------------------------------------------------------------------- */

.jbv2-final-cta {
	position: relative;
	background: var(--black);
	padding: 130px 40px;
	text-align: center;
	overflow: hidden;
}
.jbv2-final-cta__bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: .55;
}
.jbv2-final-cta__inner { position: relative; z-index: 1; max-width: 965px; margin: 0 auto; }
.jbv2-final-cta__heading {
	font-size: clamp(34px, 5vw, 60px);
	line-height: 1.1;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 24px;
}
.jbv2-final-cta__sub { font-size: clamp(16px, 2vw, 25px); color: var(--white); margin-bottom: 32px; text-wrap: balance; }

/* --------------------------------------------------------------------------
   10. Subpage hero (Services / Gallery / Contact)
   -------------------------------------------------------------------------- */

.jbv2-page-hero {
	position: relative;
	min-height: 525px;
	display: flex;
	align-items: center;
	background: var(--navy);
	overflow: hidden;
}
.jbv2-page-hero__bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	filter: blur(2px) brightness(.5);
}
.jbv2-page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--container);
	margin: 0 auto;
	padding: 160px 40px 60px;
	text-align: center;
	width: 100%;
}
.jbv2-page-hero__heading {
	font-size: clamp(40px, 7vw, 80px);
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 20px;
}
.jbv2-page-hero__intro {
	max-width: 900px;
	margin: 0 auto;
	color: var(--white);
	font-size: clamp(16px, 1.8vw, 25px);
	font-weight: 400;
	text-wrap: balance;
}

/* --------------------------------------------------------------------------
   11. Services list
   -------------------------------------------------------------------------- */

.jbv2-service-list { background: var(--off-white); padding: 80px 0; }
.jbv2-service-list__group-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
}
.jbv2-service-list__group-heading:not(:first-child) { margin-top: 80px; }
.jbv2-service-list__group-heading h2 {
	font-size: 40px;
	color: var(--navy);
	text-transform: uppercase;
}
.jbv2-badge {
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
}

.jbv2-service-list__group {
	max-width: 1190px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.jbv2-service-card {
	background: var(--white);
	border-radius: 4px;
	display: grid;
	grid-template-columns: 200px 1fr auto auto;
	align-items: center;
	gap: 28px;
	padding: 20px 28px;
}
.jbv2-service-card__photo {
	width: 200px;
	height: 130px;
	border-radius: 4px;
	overflow: hidden;
}
.jbv2-service-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.jbv2-service-card__body h3 {
	font-size: 22px;
	color: var(--heading-ink);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.jbv2-service-card__note {
	display: block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 13px;
	text-transform: none;
	color: rgba(0,0,0,.6);
}
.jbv2-service-card__desc { font-size: 15px; color: rgba(0,0,0,.78); margin-bottom: 14px; }
.jbv2-service-card__steps {
	border-top: 1px solid var(--divider-light);
	padding-top: 10px;
	font-size: 14px;
}
.jbv2-service-card__steps strong { display: block; margin-bottom: 2px; }
.jbv2-service-card__price {
	text-align: center;
	color: var(--heading-ink);
}
.jbv2-service-card__price-main { display: block; font-weight: 600; font-size: 40px; line-height: 1; }
.jbv2-service-card__price-member { display: block; font-size: 13px; }

/* --------------------------------------------------------------------------
   12. Gallery
   -------------------------------------------------------------------------- */

.jbv2-gallery { background: var(--off-white); padding: 80px 0; }
.jbv2-gallery__category { max-width: 1000px; margin: 0 auto 64px; padding: 0 40px; }
.jbv2-gallery__category .jbv2-section-heading { text-align: center; margin-bottom: 32px; }
/* A true grid, not CSS-column masonry — every row lines up flush across
   all 3 columns instead of staggering to whatever height each column's
   images happen to add up to. Each cell is cropped to a fixed aspect
   ratio so every row ends at the same bottom edge. */
.jbv2-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.jbv2-gallery__item {
	border-radius: 4px;
	overflow: hidden;
}
.jbv2-gallery__item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}

/* --------------------------------------------------------------------------
   13. Contact / Book
   -------------------------------------------------------------------------- */

.jbv2-contact { background: var(--off-white); padding: 80px 0; }
.jbv2-contact__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1fr 620px;
	gap: 60px;
	align-items: start;
}
.jbv2-contact__address { font-size: 20px; font-weight: 400; margin: 20px 0; }
.jbv2-contact__address strong { display: block; font-size: 25px; font-weight: 700; margin-bottom: 6px; }
.jbv2-contact__divider { border: none; border-top: 1px solid var(--divider-light); margin: 20px 0; }
.jbv2-contact__block h3 { font-family: var(--font-body); font-weight: 700; font-size: 25px; margin-bottom: 8px; }
.jbv2-contact__block p { font-size: 20px; font-weight: 400; }
.jbv2-contact__map { margin-top: 30px; border-radius: 4px; overflow: hidden; }
.jbv2-contact__map iframe { width: 100%; height: 338px; display: block; }
.jbv2-contact__maplink { display: inline-block; margin-top: 12px; text-decoration: underline; }

.jbv2-contact__card {
	background: var(--white);
	border-radius: 4px;
	padding: 40px;
}
.jbv2-contact__card .jbv2-section-heading { margin-bottom: 24px; }

.jbv2-form-notice { background: #fff3cd; border: 1px solid var(--cream); padding: 16px; border-radius: 4px; font-size: 14px; }
.jbv2-form-notice a { text-decoration: underline; font-weight: 600; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */

.jbv2-footer { background: var(--navy); padding-top: 56px; }
.jbv2-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	gap: 40px;
	align-items: start;
}
.jbv2-footer__logo img { width: 60px; height: auto; }
.jbv2-footer__tagline {
	margin-top: 14px;
	font-family: var(--font-display);
	font-size: 14px;
	font-style: italic;
	color: var(--cream);
}
.jbv2-footer__label {
	display: block;
	font-family: var(--font-display);
	font-size: 18px;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 16px;
}
.jbv2-footer__social { text-align: center; }
.jbv2-footer__social-icons { display: flex; gap: 12px; justify-content: center; }
.jbv2-footer__social-icons img { width: 22px; height: 22px; }
.jbv2-footer__contact p a { color: var(--white); font-size: 14px; line-height: 1.6; }
.jbv2-footer__menu { display: flex; flex-direction: column; gap: 6px; }
.jbv2-footer__menu a { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; color: var(--white); }
.jbv2-footer__menu a:hover { color: var(--cream); }

.jbv2-footer__bottom { margin-top: 40px; border-top: 1px solid var(--divider-dark); padding: 18px 0; }
.jbv2-footer__copy { color: var(--muted); font-size: 12px; }

/* --------------------------------------------------------------------------
   15. Generic page fallback
   -------------------------------------------------------------------------- */

.jbv2-generic { padding: 80px 0; max-width: 800px; margin: 0 auto; }
.jbv2-generic__inner { padding: 0 40px; }
.jbv2-generic__title { font-size: 40px; color: var(--navy); margin-bottom: 24px; }
.jbv2-generic--404 { text-align: center; padding: 140px 0; }
.jbv2-generic--404 p { margin-bottom: 24px; }
.jbv2-post-card { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--divider-light); }
.jbv2-post-card h2 { font-size: 26px; color: var(--navy); margin-bottom: 10px; }

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
	.jbv2-location__inner { grid-template-columns: 1fr; }
	.jbv2-contact__inner { grid-template-columns: 1fr; }
	.jbv2-footer__inner { grid-template-columns: 1fr 1fr; row-gap: 32px; }
}

@media (max-width: 900px) {
	.jbv2-nav, .jbv2-header__cta { display: none; }
	.jbv2-burger { display: flex; }
	.jbv2-teaser__cards { grid-template-columns: 1fr; max-width: 373px; margin-left: auto; margin-right: auto; }
	.jbv2-service-card { grid-template-columns: 1fr; text-align: left; }
	.jbv2-service-card__photo { width: 100%; height: 200px; }
	.jbv2-service-card__price { text-align: left; }
	.jbv2-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.jbv2-header__inner { padding: 18px 20px; }
	.jbv2-wordmark { font-size: 13px; letter-spacing: 3px; }
	.jbv2-hero__inner,
	.jbv2-page-hero__inner,
	.jbv2-teaser__inner,
	.jbv2-final-cta,
	.jbv2-location__inner,
	.jbv2-contact__inner,
	.jbv2-service-list__group,
	.jbv2-gallery__category,
	.jbv2-generic__inner,
	.jbv2-social-proof { padding-left: 20px; padding-right: 20px; }
	.jbv2-photo-wall {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		padding-left: 0;
		padding-right: 0;
	}
	.jbv2-photo-wall__item { width: 100%; height: 200px; }
	.jbv2-photo-wall__item--2, .jbv2-photo-wall__item--3 { transform: none; }
	.jbv2-gallery__grid { grid-template-columns: 1fr; }
	.jbv2-testimonials { padding: 0 8px; gap: 12px; }
	.jbv2-testimonials__arrow { font-size: 24px; padding: 4px; }
	.jbv2-hero__crest { width: 110px; margin-bottom: 16px; }
	.jbv2-hero__actions { align-items: center; }
	.jbv2-footer__inner { grid-template-columns: 1fr; text-align: center; }
	.jbv2-footer__social-icons { justify-content: center; }
	.jbv2-contact__card { padding: 24px; }
}
