/*
 * ARIJ - Kitchen landing page (Google Ads).
 * Loaded only on the landing template, on top of main.css: tokens, buttons,
 * the quote form, process, warranty card, gallery tiles and lightbox all come
 * from there. Breakpoints match main.css (1023 / 900 / 767).
 */

/* ----------------------------------------------------------------------------
   1. Page basics
---------------------------------------------------------------------------- */
/* No sticky header on this page, so in-page jumps (#quote) need no offset. */
html { scroll-padding-top: 0; }

.icon { width: 1em; height: 1em; flex: none; }
.btn .icon { width: 18px; height: 18px; }

/* Even line lengths - no orphaned last word on the big serif headings. */
.section-head__title,
.experience__title,
.lp-cta__title { text-wrap: balance; }

/* ----------------------------------------------------------------------------
   2. Top bar (logo + CTAs, no navigation)
---------------------------------------------------------------------------- */
.lp-topbar { background: var(--navy); border-bottom: 1px solid rgba(255, 255, 255, .07); }
.lp-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 14px;
	padding-bottom: 14px;
}
.lp-topbar__logo { height: 44px; width: auto; }
.lp-topbar__actions { display: flex; align-items: center; gap: 24px; }
.lp-topbar__phone { display: flex; align-items: center; gap: 11px; color: var(--white); }
.lp-topbar__phone:hover { color: var(--white); }
.lp-topbar__phone-icon {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(201, 162, 75, .16);
	color: var(--gold-light);
}
.lp-topbar__phone-icon .icon { width: 18px; height: 18px; }
.lp-topbar__phone-text b { display: block; font-size: 17px; line-height: 1.2; letter-spacing: .01em; transition: color .18s ease; }
.lp-topbar__phone:hover .lp-topbar__phone-text b { color: var(--gold-light); }
.lp-topbar__phone-text small { display: block; font-size: 11.5px; color: var(--on-navy-2); }

/* ----------------------------------------------------------------------------
   3. Hero + photo mosaic
---------------------------------------------------------------------------- */
.lp-hero { position: relative; isolation: isolate; background: var(--navy); overflow: hidden; }
/* Soft gold glow, kept behind all hero content (z-index -1 in its own context). */
.lp-hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -260px; right: -200px;
	width: 760px; height: 760px;
	background: radial-gradient(closest-side, rgba(201, 162, 75, .13), transparent);
	pointer-events: none;
}
.lp-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 64px;
	align-items: center;
	padding-top: 52px;
	padding-bottom: 68px;
}
.lp-hero__title {
	font-family: var(--serif);
	font-weight: 600;
	font-size: 58px;
	line-height: 1.04;
	letter-spacing: -.01em;
	color: var(--white);
	margin-top: 16px;
}
.lp-hero__title em { color: var(--gold-light); }
.lp-hero__lead { font-size: 16.5px; line-height: 1.65; color: var(--on-navy); max-width: 480px; margin-top: 18px; }

.lp-checks { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.lp-checks li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 500; line-height: 1.4; color: #e8ebf0; }
.lp-checks .icon {
	width: 22px; height: 22px;
	padding: 4px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--navy);
	stroke-width: 3;
}

.lp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.lp-hero__rating { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.lp-hero__rating-text { font-size: 13.5px; color: var(--on-navy); }
.lp-hero__rating-text b { color: var(--white); }

.lp-hero__media { position: relative; }

/* Kitchen photo mosaic: 1 large + 5 small tiles that never move; landing.js
   cross-fades one tile at a time to a photo that isn't already on screen. */
.lp-mosaic {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 8px;
	aspect-ratio: 1;
	max-width: 540px;
	margin-left: auto;
}
.lp-mosaic__tile { position: relative; overflow: hidden; border-radius: 10px; background: var(--navy-alt); }
.lp-mosaic__tile--large { grid-column: span 2; grid-row: span 2; border-radius: 14px; }
.lp-mosaic__tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 1.2s ease; /* keep in step with FADE in landing.js */
}
.lp-mosaic__tile img.is-entering { opacity: 0; }

/* Sits on the large photo's lower-left corner (the bottom row is ~1/3 of the
   square mosaic), not over a small tile. */
.lp-hero__badge {
	position: absolute;
	left: -28px; bottom: calc(33.333% + 22px);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 20px 13px 13px;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .6);
}
.lp-hero__badge-icon {
	display: grid;
	place-items: center;
	width: 42px; height: 42px;
	border-radius: 10px;
	background: var(--navy);
	color: var(--gold-light);
}
.lp-hero__badge-icon .icon { width: 21px; height: 21px; }
.lp-hero__badge-text b { display: block; font-size: 15px; line-height: 1.25; color: var(--navy); }
.lp-hero__badge-text small { display: block; font-size: 12px; color: var(--body-2); }

/* ----------------------------------------------------------------------------
   4. Trust strip
---------------------------------------------------------------------------- */
.lp-trust { background: var(--navy-deep); border-top: 1px solid rgba(201, 162, 75, .3); }
.lp-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.lp-trust__item { display: flex; flex-direction: column; padding: 20px 32px; }
.lp-trust__item:first-child { padding-left: 0; }
.lp-trust__item + .lp-trust__item { border-left: 1px solid rgba(255, 255, 255, .1); }
.lp-trust__num { font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.2; color: var(--gold-light); }
.lp-trust__label { font-size: 12.5px; line-height: 1.35; color: var(--on-navy-2); }

/* ----------------------------------------------------------------------------
   5. Why ARIJ - feature cards
---------------------------------------------------------------------------- */
.lp-features { background: var(--offwhite); padding: 80px 0; }
.lp-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-feature {
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	padding: 28px 26px;
	box-shadow: var(--shadow-card);
	transition: transform .2s ease, box-shadow .2s ease;
}
.lp-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.lp-feature__icon {
	display: grid;
	place-items: center;
	width: 50px; height: 50px;
	border-radius: 10px;
	background: var(--navy);
	color: var(--gold-light);
}
.lp-feature__icon .icon { width: 23px; height: 23px; }
.lp-feature__title { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.15; color: var(--navy); margin: 18px 0 8px; }
.lp-feature__desc { font-size: 14px; line-height: 1.6; color: var(--body-2); }

/* Centered CTA under a section */
.lp-section-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 44px; text-align: center; }
.lp-section-cta__note { font-size: 13px; color: var(--muted); }

/* ----------------------------------------------------------------------------
   6. Styles & finishes (reuses the homepage .experience band)
---------------------------------------------------------------------------- */
.lp-styles .experience__media img { min-height: 480px; }
.lp-styles .experience__text { align-self: center; }
.lp-options { display: grid; gap: 20px; margin-bottom: 32px; }
.lp-options__label {
	display: block;
	margin-bottom: 10px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--on-navy-3);
}
.lp-options__chips { display: flex; flex-wrap: wrap; gap: 9px; }

/* ----------------------------------------------------------------------------
   7. Recent kitchens (reuses .gallery__grid tiles + lightbox)
---------------------------------------------------------------------------- */
.lp-gallery { background: var(--white); padding: 80px 0; }

/* ----------------------------------------------------------------------------
   8. Google reviews - endless scrolling columns (vanilla port of the React
      "testimonials-6" + InfiniteSlider). CSS runs the loop; landing.js sets
      each column's px/s speed and slows it on hover.
---------------------------------------------------------------------------- */
.lp-reviews { background: var(--white); padding: 80px 0 72px; }
.lp-reviews__badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 14px;
	border: 1px solid var(--border-light);
	border-radius: 10px;
	background: var(--white);
	font-size: 13px;
	font-weight: 600;
	color: var(--body);
}
.lp-reviews__badge b { color: var(--navy); }
.lp-reviews__badge .icon { width: 16px; height: 16px; }
.lp-reviews__badge .stars { font-size: 13px; letter-spacing: 1px; }

/* A 640px window whose top and bottom quarters fade out. */
.lp-reviews__wall {
	display: flex;
	justify-content: center;
	gap: 24px;
	max-height: 640px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
	        mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}
.lp-reviews__col { flex: none; width: min(320px, 100%); }
.lp-reviews__col--2,
.lp-reviews__col--3 { display: none; }

/* Two identical sets of cards: rising by one set (+ one 16px gap) loops seamlessly. */
.lp-reviews__track {
	display: flex;
	flex-direction: column;
	gap: 16px;
	animation: lp-reviews-up 60s linear infinite;
}
@keyframes lp-reviews-up {
	to { transform: translateY(calc(-50% - 8px)); }
}

.lp-rv {
	margin: 0;
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: 24px;
	box-shadow: 0 10px 15px -3px rgba(13, 27, 46, .1), 0 4px 6px -4px rgba(13, 27, 46, .1);
}
.lp-rv__stars { display: block; font-size: 14px; }
.lp-rv__quote { margin: 12px 0 0; font-size: 14.5px; line-height: 1.65; color: #2a3441; }
.lp-rv__quote p { margin: 0; }
.lp-rv__quote p + p { margin-top: 10px; }
.lp-rv__by { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.lp-rv__avatar {
	display: grid;
	place-items: center;
	flex: none;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--gold-light);
	font-size: 14px;
	font-weight: 700;
}
.lp-rv__meta { display: flex; flex-direction: column; min-width: 0; }
.lp-rv__name { font-size: 14.5px; font-weight: 700; font-style: normal; line-height: 1.35; color: var(--navy); text-transform: capitalize; }
.lp-rv__role { display: flex; align-items: center; gap: 5px; font-size: 12.5px; line-height: 1.35; color: var(--muted); }
.lp-rv__role .icon { width: 13px; height: 13px; }

.lp-reviews__cta { margin-top: 32px; text-align: center; }

@media (min-width: 768px) { .lp-reviews__col--2 { display: block; } }
@media (min-width: 1024px) { .lp-reviews__col--3 { display: block; } }
@media (prefers-reduced-motion: reduce) { .lp-reviews__track { animation: none; } }

/* ----------------------------------------------------------------------------
   9. Quote form section (reuses .quote + .quote-form)
---------------------------------------------------------------------------- */
.lp-next {
	margin: 0 0 26px;
	padding: 24px 24px 22px;
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: 12px;
}
.lp-next__title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin: 0 0 14px; }

/* #quote target: every CTA lands with the form card just below the top edge.
   Fade-only reveal - main.js's 18px rise would leave the card's top cut off
   after the jump. */
.lp-quote .quote__form-wrap { scroll-margin-top: 16px; }
.lp-quote .quote__form-wrap.reveal { transform: none; }

.lp-quote .quote-form__title { line-height: 1.15; text-wrap: balance; margin-bottom: 8px; }

.lp-privacy { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--on-navy-2); }
.lp-privacy .icon { width: 16px; height: 16px; margin-top: 1px; color: var(--gold-light); }
.lp-privacy a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }

/* ----------------------------------------------------------------------------
   10. FAQ
---------------------------------------------------------------------------- */
.lp-faq { background: var(--white); padding: 80px 0; }
.lp-faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq__item {
	background: var(--offwhite);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	transition: background-color .18s ease, border-color .18s ease;
}
.lp-faq__item[open] { background: var(--white); border-color: rgba(201, 162, 75, .45); box-shadow: var(--shadow-card); }
.lp-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 19px 22px;
	list-style: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--navy);
}
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--gold-light);
	transition: transform .25s ease;
}
.lp-faq__icon .icon { width: 16px; height: 16px; }
.lp-faq__item[open] .lp-faq__icon { transform: rotate(45deg); }
.lp-faq__a { max-width: 700px; padding: 0 22px 20px; font-size: 14.5px; line-height: 1.7; color: var(--body); }

/* ----------------------------------------------------------------------------
   11. Final CTA
---------------------------------------------------------------------------- */
.lp-cta { position: relative; isolation: isolate; overflow: hidden; background: var(--navy-deep); padding: 88px 0; text-align: center; }
.lp-cta__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .24; }
.lp-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(10, 21, 38, .55), rgba(10, 21, 38, .92));
}
.lp-cta__inner { max-width: 780px; }
.lp-cta__title { font-family: var(--serif); font-weight: 600; font-size: 48px; line-height: 1.08; color: var(--white); margin: 14px 0; }
.lp-cta__lead { max-width: 560px; margin: 0 auto; font-size: 16px; line-height: 1.65; color: var(--on-navy); }
.lp-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }

/* ----------------------------------------------------------------------------
   12. Footer
---------------------------------------------------------------------------- */
/* Extra bottom padding keeps the last line clear of the floating WhatsApp button. */
.lp-footer { background: var(--navy-deep); color: var(--on-navy-2); padding: 40px 0 88px; border-top: 1px solid rgba(255, 255, 255, .06); }
.lp-footer a { color: var(--on-navy-2); }
.lp-footer a:hover { color: var(--gold-light); }
.lp-footer__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px 40px;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.lp-footer__logo { height: 40px; width: auto; }
.lp-footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 30px; font-size: 13.5px; }
.lp-footer__contact li { display: flex; align-items: center; gap: 8px; }
.lp-footer__contact .icon { width: 16px; height: 16px; color: var(--gold); }
.lp-footer .lp-footer__phone { color: var(--gold-text); font-weight: 700; }
.lp-footer__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 24px;
	padding-top: 18px;
	font-size: 12px;
	color: #7f8794;
}
.lp-footer__legal { display: flex; gap: 20px; }

/* ----------------------------------------------------------------------------
   13. Sticky CTA bar (.sticky-cta from main.css; show/hide logic in main.js)
---------------------------------------------------------------------------- */
.sticky-cta--float .sticky-cta__btn .icon { width: 17px; height: 17px; }
.sticky-cta--float .sticky-cta__btn--call .icon { color: var(--gold-light); }

/* Mobile: a floating rounded bar inset from the screen edges - phone number on
   the left, gold quote button on the right. */
@media (max-width: 767px) {
	.sticky-cta--float {
		left: 10px; right: 10px;
		bottom: calc(10px + env(safe-area-inset-bottom));
		gap: 6px;
		padding: 5px;
		border: 1px solid rgba(201, 162, 75, .3);
		border-radius: 22px;
		background: rgba(10, 21, 38, .94);
		box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .6), 0 2px 8px rgba(0, 0, 0, .25);
		-webkit-backdrop-filter: blur(10px);
		        backdrop-filter: blur(10px);
		/* Hidden: fully below the fold, including the 10px float gap. */
		transform: translateY(calc(100% + 12px + env(safe-area-inset-bottom)));
		transition: transform .45s cubic-bezier(.2, 1.1, .3, 1);
	}
	.sticky-cta--float.is-visible { transform: translateY(0); }

	.sticky-cta--float .sticky-cta__btn {
		flex: 1 1 0;
		min-width: 0;
		height: 48px;
		padding: 0 10px;
		gap: 8px;
		border-radius: 17px;
		font-size: 14.5px;
		font-weight: 700;
		letter-spacing: .01em;
		white-space: nowrap;
	}
	.sticky-cta--float .sticky-cta__btn--call {
		background: var(--navy);
		border: 1px solid rgba(255, 255, 255, .12);
		color: var(--white);
	}
	.sticky-cta--float .sticky-cta__btn--quote {
		position: relative;
		overflow: hidden;
		background: linear-gradient(135deg, #e8cd86 0%, var(--gold) 55%, #b08b3c 100%);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
		color: var(--navy);
	}
	.sticky-cta--float .sticky-cta__btn--quote .icon { width: 16px; height: 16px; }

	/* A soft sheen sweeps across the gold button every few seconds. */
	.sticky-cta--float .sticky-cta__btn--quote::after {
		content: "";
		position: absolute;
		top: 0; bottom: 0; left: 0;
		width: 45%;
		background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
		transform: translateX(-130%) skewX(-20deg);
		animation: lp-sheen 4.5s ease-in-out 1.5s infinite;
		pointer-events: none;
	}
}

/* Narrow phones: drop the sparkle so both labels still fit. */
@media (max-width: 359px) {
	.sticky-cta--float .sticky-cta__btn--quote .icon { display: none; }
}

@keyframes lp-sheen {
	0%, 65% { transform: translateX(-130%) skewX(-20deg); }
	100%    { transform: translateX(330%) skewX(-20deg); }
}

@media (prefers-reduced-motion: reduce) {
	.sticky-cta--float .sticky-cta__btn--quote::after { display: none; }
}

/* ----------------------------------------------------------------------------
   14. Floating WhatsApp button - always bottom-right. On phones it rises above
       the floating CTA bar while that shows; on larger screens the bar's
       buttons line up to its left.
---------------------------------------------------------------------------- */
.lp-wa {
	position: fixed;
	right: 12px;
	bottom: calc(16px + env(safe-area-inset-bottom));
	z-index: 81;
	display: grid;
	place-items: center;
	width: 54px; height: 54px;
	border-radius: 50%;
	background: #25d366;
	color: var(--white);
	box-shadow: 0 12px 28px -8px rgba(0, 0, 0, .45), 0 2px 6px rgba(0, 0, 0, .18);
	transition: transform .45s cubic-bezier(.2, 1.1, .3, 1), background-color .18s ease;
}
.lp-wa:hover { background: #1ebe5b; color: var(--white); }
.lp-wa .icon { width: 28px; height: 28px; }
/* Soft attention ring behind the icon. */
.lp-wa::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 50%;
	background: #25d366;
	animation: lp-wa-pulse 2.8s ease-out infinite;
}
@keyframes lp-wa-pulse {
	0%        { transform: scale(1);   opacity: .45; }
	70%, 100% { transform: scale(1.6); opacity: 0; }
}
/* Phones: sit above the floating CTA bar (60px tall, 10px off the bottom). */
.sticky-cta.is-visible ~ .lp-wa { transform: translateY(-70px); }

@media (min-width: 768px) {
	.lp-wa { right: 22px; bottom: calc(19px + env(safe-area-inset-bottom)); width: 52px; height: 52px; }
	.sticky-cta.is-visible ~ .lp-wa { transform: none; }
	.sticky-cta--float { right: calc(22px + 52px + 12px); }
}
@media (prefers-reduced-motion: reduce) {
	.lp-wa::before { display: none; }
}

/* ----------------------------------------------------------------------------
   15. Responsive
---------------------------------------------------------------------------- */

/* Tablet - up to 1023px */
@media (max-width: 1023px) {
	.lp-hero__grid { gap: 40px; padding-top: 48px; padding-bottom: 56px; }
	.lp-hero__title { font-size: 48px; }
	.lp-hero__badge { left: 14px; bottom: calc(33.333% + 14px); }
	.lp-trust__item { padding: 18px 20px; }
	.lp-features__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-cta__title { font-size: 40px; }

	/* main.css drops the gallery to 2 columns here; 3 keeps the feature tile. */
	.lp-gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
	.lp-gallery__grid .gallery__tile--big { grid-column: span 2; grid-row: span 2; }
}

/* Stack the two-column bands */
@media (max-width: 900px) {
	.lp-hero__grid { grid-template-columns: 1fr; }
	.lp-hero__media { width: 100%; max-width: 560px; margin: 0 auto; }
	.lp-mosaic { max-width: none; margin: 0; }

	.lp-trust__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-trust__item:nth-child(3) { padding-left: 0; border-left: 0; }
	.lp-trust__item:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .1); }

	.lp-styles .experience__media img { min-height: 320px; }
}

/* Mobile - <768px */
@media (max-width: 767px) {
	/* Top bar: logo + a gold tap-to-call pill; the sticky bar carries the quote CTA. */
	.lp-topbar__inner { padding-top: 12px; padding-bottom: 12px; }
	.lp-topbar__logo { height: 36px; }
	.lp-topbar__cta { display: none; }
	.lp-topbar__phone { gap: 7px; padding: 9px 15px 9px 12px; border-radius: 999px; background: var(--gold); color: var(--navy); }
	.lp-topbar__phone:hover { color: var(--navy); }
	.lp-topbar__phone-icon { width: auto; height: auto; background: none; color: var(--navy); }
	.lp-topbar__phone-icon .icon { width: 16px; height: 16px; }
	.lp-topbar__phone-text b,
	.lp-topbar__phone:hover .lp-topbar__phone-text b { font-size: 14px; color: var(--navy); }
	.lp-topbar__phone-text small { display: none; }

	/* Hero order on phones: copy → photo grid → trust strip → rating → checklist.
	   The two layout wrappers step aside (display: contents) so every block is a
	   flex item of the section and can be re-ordered; each takes the gutter
	   itself. No hero buttons here - the floating CTA bar is shown from load. */
	.lp-hero { display: flex; flex-direction: column; padding-top: 36px; padding-bottom: 44px; }
	.lp-hero__grid,
	.lp-hero__text { display: contents; }
	.lp-hero__eyebrow,
	.lp-hero__title,
	.lp-hero__lead,
	.lp-hero__media,
	.lp-hero__rating,
	.lp-checks { margin-left: var(--gutter); margin-right: var(--gutter); }
	.lp-hero__eyebrow { order: 1; align-self: flex-start; }
	.lp-hero__title { order: 2; font-size: 40px; }
	.lp-hero__lead { order: 3; font-size: 15.5px; }
	.lp-hero__media { order: 4; width: auto; max-width: none; margin-top: 28px; margin-bottom: 32px; }
	.lp-mosaic { gap: 6px; }
	.lp-mosaic__tile { border-radius: 8px; }
	.lp-mosaic__tile--large { border-radius: 12px; }
	.lp-trust { order: 5; border-bottom: 1px solid rgba(201, 162, 75, .3); }
	.lp-hero__rating { order: 6; margin-top: 26px; }
	.lp-checks { order: 7; margin-top: 18px; }
	.lp-checks li { font-size: 14.5px; }
	.lp-hero__actions,
	.lp-hero__badge { display: none; }

	.lp-trust__item { padding: 16px 12px; }
	.lp-trust__item:nth-child(odd) { padding-left: 0; }
	.lp-trust__num { font-size: 20px; }

	.lp-features,
	.lp-gallery,
	.lp-reviews,
	.lp-faq { padding: 56px 0; }

	/* Feature cards: icon beside the text to keep the list compact. */
	.lp-features__grid { grid-template-columns: 1fr; gap: 14px; }
	.lp-feature { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; padding: 22px 20px; }
	.lp-feature__icon { grid-row: span 2; width: 44px; height: 44px; }
	.lp-feature__icon .icon { width: 21px; height: 21px; }
	.lp-feature__title { margin: 0 0 4px; font-size: 21px; }
	.lp-section-cta { margin-top: 32px; }
	.lp-section-cta .btn { width: 100%; }

	.lp-styles__cta { width: 100%; }

	/* Gallery becomes a swipeable row; the next photo peeks in as a cue. */
	.lp-gallery__grid {
		display: flex;
		gap: 12px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		margin: 0 calc(var(--gutter) * -1);
		padding: 0 var(--gutter) 4px;
		scroll-padding: 0 var(--gutter);
		scrollbar-width: none;
	}
	.lp-gallery__grid::-webkit-scrollbar { display: none; }
	.lp-gallery__grid .gallery__tile { flex: 0 0 80%; height: 250px; scroll-snap-align: start; }

	.lp-next { padding: 20px; }
	.lp-faq__q { padding: 17px 18px; font-size: 15px; }
	.lp-faq__a { padding: 0 18px 18px; }

	.lp-cta { padding: 64px 0; }
	.lp-cta__title { font-size: 32px; }
	.lp-cta__actions .btn { flex: 1 1 100%; }

	.lp-footer__top,
	.lp-footer__bar { flex-direction: column; align-items: flex-start; }
	.lp-footer__contact { flex-direction: column; }
}

/* Small phones */
@media (max-width: 389px) {
	.lp-topbar__logo { height: 30px; }
	.lp-topbar__phone { padding: 8px 12px 8px 10px; }
	.lp-topbar__phone-text b,
	.lp-topbar__phone:hover .lp-topbar__phone-text b { font-size: 13px; }
	.lp-hero__title { font-size: 35px; }
}
