/**
 * Clean Peak — single-service page design.
 *
 * Scoped to .cp-section so it cannot leak into Divi-built pages that share the
 * same header and footer.
 */

:root {
	--cp-green: #3B4430;
	--cp-green-dark: #2f3727;
	--cp-green-hover: #48533C;
	--cp-sage: #8FA772;
	--cp-sage-hover: #7d9560;
	--cp-cream: #f5f3ea;
	--cp-mist: #e6ead9;
	--cp-reviews-bg: #e2ebdb;
	--cp-pill: #eef0e7;
	--cp-body: #5c5e54;
	--cp-body-soft: #55564e;
	--cp-heading-font: "Headline One", "Anton", Verdana, Arial, sans-serif;
	--cp-display-font: "Oswald", "Open Sans", sans-serif;
	--cp-body-font: "Open Sans", sans-serif;
}

/* ---------------------------------------------------------------- Shell */

/*
 * Beaver Builder gives every module a default 20px side margin and its rows a
 * fixed content width. Both fight the full-bleed section backgrounds, so the
 * service modules opt out of them.
 */
.fl-builder-content [class*="fl-module-cp-service-"] > .fl-module-content {
	margin: 0;
}

.fl-builder-content [class*="fl-module-cp-service-"] {
	width: 100%;
}

.cp-section {
	font-family: var(--cp-body-font);
	color: #4b4f44;
	overflow-x: hidden;
	background-size: cover;
	background-position: center;
	padding: 84px 0;
}

.cp-section * {
	box-sizing: border-box;
}

.cp-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 32px;
}

.cp-container--narrow { max-width: 1100px; }
.cp-container--tight { max-width: 840px; }

/* ------------------------------------------------------------ Typography */

.cp-section .cp-heading {
	font-family: var(--cp-heading-font);
	font-weight: 400;
	font-size: 42px;
	line-height: 1.06;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--cp-green);
	margin: 0 0 14px;
}

/* Scoped with .cp-section to match the base rule's specificity — otherwise the
   two-class base selector above wins and these modifiers never apply. */
.cp-section .cp-heading--sm { font-size: 35px; }
.cp-section .cp-heading--center { text-align: center; margin-bottom: 8px; }
.cp-section .cp-heading--gap { margin-bottom: 34px; }
.cp-section .cp-heading--light { color: #fff; }

.cp-eyebrow {
	font-family: var(--cp-display-font);
	font-weight: 600;
	font-size: 17px;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.cp-eyebrow--sage { color: var(--cp-sage); }
.cp-eyebrow--light { color: #a9bd8a; }

.cp-section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 52px;
}

.cp-section-head__intro {
	font-size: 17px;
	line-height: 1.7;
	color: var(--cp-body);
	margin: 0;
}

.cp-stars {
	color: #f4c542;
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 1;
}

.cp-stars--google { color: #fbbc04; }

/* --------------------------------------------------------------- Buttons */

.cp-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--cp-display-font);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	transition: background .2s, color .2s, border-color .2s;
}

.cp-btn--sage { background: var(--cp-sage); color: #fff; }
.cp-btn--sage:hover { background: var(--cp-sage-hover); color: #fff; }

.cp-btn--primary { background: var(--cp-green); color: #fff; }
.cp-btn--primary:hover { background: var(--cp-green-hover); color: #fff; }

.cp-btn--outline {
	background: rgba(255, 255, 255, .08);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .55);
	padding: 12.5px 28px;
}

.cp-btn--outline:hover { background: #fff; color: var(--cp-green); }

.cp-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.cp-card-link {
	font-weight: 600;
	font-size: 15px;
	color: #8a8d80;
	text-decoration: none;
	transition: color .2s;
}

.cp-card-link:hover { color: var(--cp-green); }

.cp-card-link--upper {
	font-family: var(--cp-display-font);
	font-size: 14px;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--cp-sage);
}

/* ------------------------------------------------------------- Form card */

.cp-form-card {
	background: var(--cp-cream);
	border-radius: 16px;
	box-shadow: 0 24px 50px rgba(0, 0, 0, .3);
	padding: 32px 30px;
	align-self: start;
	/*
	 * The embed is a cross-origin iframe whose script briefly parks itself at
	 * position:absolute during load. Clipping to the card guarantees a rogue
	 * mid-load frame can never paint over the hero behind it. (The column width
	 * itself is held by the fixed grid track — see .cp-hero__grid.)
	 */
	overflow: hidden;
}

.cp-form-card__title {
	font-family: var(--cp-display-font);
	font-weight: 700;
	font-size: 24px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--cp-green);
	text-align: center;
	margin: 0 0 6px;
}

.cp-form-card__rule {
	display: block;
	width: 46px;
	height: 3px;
	background: var(--cp-sage);
	margin: 0 auto 22px;
	border-radius: 2px;
}

/*
 * The LeadConnector embed script wraps the iframe in its own .ep-wrapper and,
 * while initialising, parks it at `position:absolute; left:-9999px`. Without a
 * positioned ancestor that absolute iframe resolves against the Beaver Builder
 * row instead of the card — which is what collapses the column to a sliver.
 * Containing it here keeps the card's width authoritative in every state.
 */
.cp-form-card,
.cp-form-card .ep-wrapper {
	position: relative;
}

/*
 * The embed script also writes an inline pixel width on this wrapper that can
 * exceed the card. Clamp it (!important, to beat the inline style) so the form
 * always renders inside the card — never overflowing or getting clipped.
 */
.cp-form-card .ep-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	/* Reserve the embed's height so the card does not jump as it initialises. */
	min-height: 492px;
}

/* !important: the embed script writes a competing inline width on the iframe. */
.cp-form-card__frame {
	width: 100% !important;
	max-width: 100% !important;
	border: none;
	display: block;
	background: transparent;
}

/* ------------------------------------------------------------------ Hero */

.cp-section--hero { padding: 72px 0 80px; }

/*
 * The form card sits in a FIXED-width track, matching the design's 460px card.
 * A fixed track (not fr) is immune to anything the cross-origin embed script
 * does to the iframe — the column can never collapse or be pushed wider by its
 * contents. The copy column takes the rest.
 */
.cp-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 460px;
	gap: 56px;
	align-items: center;
}

/* Copy/media columns default to min-width:auto, letting long headings widen
   their track. Zero it so only the copy column ever flexes. */
.cp-hero__grid > *,
.cp-why__grid > *,
.cp-areas__grid > *,
.cp-packages__grid > * {
	min-width: 0;
}

.cp-section--hero .cp-hero__heading {
	font-family: var(--cp-heading-font);
	font-weight: 400;
	font-size: 56px;
	line-height: 1.03;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 20px;
}

.cp-hero__intro {
	font-size: 17px;
	line-height: 1.7;
	color: #e4e7dc;
	margin: 0 0 28px;
	max-width: 520px;
}

.cp-hero__rating {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 34px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: #e4e7dc;
}

/* --------------------------------------------------------------- Reviews */

.cp-section--reviews {
	background-color: var(--cp-reviews-bg);
	background-position: left center;
	background-repeat: no-repeat;
	padding: 88px 0 80px;
}

.cp-reviews__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 48px;
	font-size: 15px;
	font-weight: 600;
	color: var(--cp-body);
}

.cp-reviews {
	display: flex;
	align-items: center;
	gap: 18px;
}

.cp-reviews__track {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

/* Only three cards show at a time; the rest are swapped in by JS. */
.cp-reviews__track .cp-review { display: none; }
.cp-reviews__track .cp-review.is-visible { display: block; }

.cp-review {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 30px 30px 28px;
	box-shadow: 0 10px 28px rgba(43, 52, 33, .08);
}

.cp-review-google {
	position: absolute;
	top: 26px;
	right: 28px;
}

.cp-review__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	padding-right: 34px;
}

.cp-review__avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
}

.cp-review__name {
	display: block;
	font-weight: 700;
	font-size: 17px;
	color: #2a2e24;
	line-height: 1.2;
}

.cp-review__ago {
	display: block;
	font-size: 14px;
	color: #8a8d80;
	margin-top: 2px;
}

.cp-review__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.cp-review__text {
	font-size: 15.5px;
	line-height: 1.65;
	color: #3f4138;
	margin: 0 0 16px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cp-carousel-btn {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid #e0e0d6;
	cursor: pointer;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(43, 52, 33, .08);
	transition: background .2s, border-color .2s;
}

.cp-carousel-btn:hover { background: var(--cp-pill); border-color: var(--cp-sage); }

.cp-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 34px;
}

.cp-dot {
	height: 9px;
	width: 9px;
	border-radius: 50%;
	border: none;
	padding: 0;
	cursor: pointer;
	background: #c9cdbf;
	transition: all .3s;
}

.cp-dot.is-active {
	width: 24px;
	border-radius: 5px;
	background: var(--cp-green);
}

.cp-dot--light { background: rgba(255, 255, 255, .55); }
.cp-dot--light.is-active { background: #fff; }

/* -------------------------------------------------------------- Packages */

.cp-section--packages {
	padding: 0;
	background-color: #fff;
}

.cp-packages__grid {
	max-width: 1340px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}

.cp-packages__media {
	padding: 60px 0 60px 60px;
	display: flex;
}

.cp-carousel {
	position: relative;
	flex: 1;
	min-height: 440px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
}

.cp-carousel__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity .9s ease;
}

.cp-carousel__slide.is-active { opacity: 1; }

.cp-carousel__scrim {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 130px;
	background: linear-gradient(transparent, rgba(28, 34, 22, .5));
	pointer-events: none;
}

.cp-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	background: rgba(255, 255, 255, .85);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}

.cp-carousel__arrow:hover { background: #fff; }
.cp-carousel__arrow--prev { left: 18px; }
.cp-carousel__arrow--next { right: 18px; }

.cp-carousel__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.cp-packages__copy {
	padding: 76px 64px 76px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cp-packages__intro {
	font-size: 17px;
	line-height: 1.7;
	color: var(--cp-green);
	margin: 0 0 26px;
	max-width: 520px;
}

.cp-bullets {
	list-style: none;
	margin: 0 0 34px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.cp-bullets li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	color: var(--cp-green);
	font-weight: 600;
}

.cp-check { flex-shrink: 0; }

.cp-packages__copy .cp-btn { align-self: flex-start; }

/* ----------------------------------------------------------------- Cards */

.cp-section--cards {
	background: var(--cp-mist);
	padding: 88px 0 92px;
}

.cp-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.cp-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 14px 38px rgba(43, 52, 33, .09);
}

.cp-card__media {
	height: 230px;
	background-size: cover;
	background-position: center;
}

.cp-card__body { padding: 30px 32px 34px; }

.cp-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.cp-card__icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--cp-pill);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cp-section .cp-card__title {
	font-family: var(--cp-heading-font);
	font-weight: 400;
	font-size: 25px;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: var(--cp-green);
	margin: 0;
}

.cp-card__text {
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--cp-body);
	margin: 0 0 18px;
}

.cp-tags {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
	padding: 0;
}

.cp-tag {
	padding: 7px 15px;
	background: var(--cp-pill);
	color: #5b5e52;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}

/* ------------------------------------------------------------ Why choose */

.cp-section--why { background: var(--cp-cream); }

.cp-why__grid {
	max-width: 1180px;
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	gap: 60px;
	align-items: center;
}

.cp-why__media {
	border-radius: 18px;
	overflow: hidden;
	min-height: 540px;
	background-size: cover;
	background-position: center;
	box-shadow: 0 18px 44px rgba(43, 52, 33, .16);
}

.cp-reasons {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.cp-reason {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.cp-reason__icon {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	background: var(--cp-green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cp-section .cp-reason__title {
	font-family: var(--cp-heading-font);
	font-weight: 400;
	font-size: 23px;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--cp-green);
	margin: 0 0 8px;
}

.cp-reason__text {
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--cp-body-soft);
	margin: 0;
}

/* ----------------------------------------------------------------- Areas */

.cp-section--areas { background: #fff; }

.cp-areas__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 56px;
	align-items: center;
}

.cp-areas__intro {
	font-size: 16px;
	line-height: 1.7;
	color: var(--cp-body);
	margin: 0 0 30px;
	max-width: 440px;
}

.cp-areas {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.cp-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	background: var(--cp-cream);
	border: 1px solid #e7e5d8;
	border-radius: 8px;
	padding: 11px 15px;
	text-decoration: none;
	font-family: var(--cp-display-font);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: var(--cp-green);
	transition: all .2s;
}

.cp-area__arrow { color: var(--cp-sage); font-size: 15px; }
.cp-area:hover { background: var(--cp-green); color: #fff; border-color: var(--cp-green); }
.cp-area:hover .cp-area__arrow { color: var(--cp-sage); }

.cp-areas__map {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(43, 52, 33, .16);
	border: 1px solid #e3e6d8;
}

.cp-areas__map img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cp-areas__badge {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(59, 68, 48, .92);
	color: #fff;
	padding: 9px 15px;
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(28, 34, 22, .3);
	font-family: var(--cp-display-font);
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: .07em;
	text-transform: uppercase;
}

/* ---------------------------------------------------------- Who we serve */

.cp-section--serve { background: var(--cp-cream); }

.cp-serve {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.cp-serve__card {
	border-radius: 16px;
	padding: 44px 40px;
	color: #fff;
}

.cp-serve__card--dark { background: var(--cp-green); }
.cp-serve__card--sage { background: var(--cp-sage); }

.cp-serve__icon {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}

.cp-serve__card--dark .cp-serve__icon { background: rgba(143, 167, 114, .22); }
.cp-serve__card--sage .cp-serve__icon { background: rgba(255, 255, 255, .2); }

.cp-section .cp-serve__title {
	font-family: var(--cp-heading-font);
	font-weight: 400;
	font-size: 26px;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 12px;
}

.cp-serve__text {
	font-size: 16px;
	line-height: 1.75;
	margin: 0;
}

.cp-serve__card--dark .cp-serve__text { color: #d7ddca; }
.cp-serve__card--sage .cp-serve__text { color: #f0f3e9; }

/* ------------------------------------------------------------- Portfolio */

.cp-section--portfolio { background: #fff; }

.cp-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.cp-gallery__tile {
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	box-shadow: 0 8px 22px rgba(43, 52, 33, .08);
}

.cp-gallery__img {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform .4s;
}

.cp-gallery__tile:hover .cp-gallery__img { transform: scale(1.04); }

.cp-gallery__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 12px;
	aspect-ratio: 1 / 1;
	background: var(--cp-green);
	color: #fff;
	font-family: var(--cp-display-font);
	font-weight: 600;
	font-size: 17px;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 18px;
	text-decoration: none;
	transition: background .2s;
}

.cp-gallery__cta:hover { background: var(--cp-green-hover); color: #fff; }

/* ------------------------------------------------------------------- FAQ */

.cp-section--faq { background: var(--cp-cream); }

.cp-section--faq .cp-heading { font-size: 40px; }

/* Each FAQ is its own rounded, padded card on the cream section background. */
.cp-faq {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cp-faq__item {
	background: #fff;
	border: 1px solid #e7e3d5;
	border-radius: 14px;
	padding: 0 32px;
	box-shadow: 0 6px 20px rgba(43, 52, 33, .05);
	transition: box-shadow .2s;
}

.cp-faq__item:hover { box-shadow: 0 10px 26px rgba(43, 52, 33, .09); }

.cp-faq__heading { margin: 0; }

/*
 * Divi styles bare <button> elements as its own buttons (green background,
 * white text, padding, radius). Fully reset ours so the FAQ question is just
 * dark text on the white card. !important is needed to beat Divi's specificity.
 */
.cp-section .cp-faq__q {
	width: 100%;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0;
	padding: 20px 0 !important;
	text-align: left;
	font-family: var(--cp-body-font);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	text-transform: none;
	letter-spacing: normal;
	color: var(--cp-green) !important;
	transition: color .2s;
}

.cp-section .cp-faq__q:hover { color: var(--cp-sage) !important; background: transparent !important; }

/* Divi colors <span>s inside buttons white; force our question + sign colors. */
.cp-section .cp-faq__q > span { color: var(--cp-green) !important; }
.cp-section .cp-faq__q:hover > span:first-child { color: var(--cp-sage) !important; }

.cp-section .cp-faq__q .cp-faq__sign {
	flex-shrink: 0;
	color: var(--cp-sage) !important;
	font-size: 26px;
	line-height: 1;
}

.cp-faq__a p {
	margin: 0;
	padding: 2px 0 26px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--cp-body-soft);
}

/* ------------------------------------------------------- Book assessment */

.cp-section--book { padding: 90px 0; }

.cp-book__grid {
	max-width: 1180px;
	display: grid;
	/* Text left, team photo right (the form used to live in the right column). */
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}

.cp-book__grid > * { min-width: 0; }

.cp-book__photo {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 50px rgba(0, 0, 0, .34);
	border: 3px solid rgba(255, 255, 255, .14);
}

.cp-book__photo img {
	display: block;
	width: 100%;
	height: auto;
}

.cp-section--book .cp-heading { font-size: 44px; margin-bottom: 18px; }

.cp-book__intro {
	font-size: 16px;
	line-height: 1.75;
	color: #e8ebe0;
	margin: 0 0 26px;
	max-width: 480px;
}

/* ---------------------------------------------------------- Responsive */

@media (max-width: 1024px) {
	.cp-hero__grid,
	.cp-why__grid,
	.cp-areas__grid,
	.cp-book__grid,
	.cp-packages__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.cp-packages__media { padding: 40px 32px 0; }
	.cp-packages__copy { padding: 40px 32px 56px; }
	.cp-why__media { min-height: 340px; }
	.cp-reviews__track { grid-template-columns: 1fr 1fr; }
	.cp-reviews__track .cp-review[data-cp-slot="3"] { display: none; }
	.cp-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 782px) {
	.cp-section { padding: 60px 0; }
	.cp-container { padding: 0 20px; }

	.cp-section .cp-heading { font-size: 32px; }
	.cp-section--book .cp-heading,
	.cp-section .cp-hero__heading { font-size: 36px; }

	.cp-cards,
	.cp-serve,
	.cp-areas { grid-template-columns: 1fr; }

	.cp-reviews__track { grid-template-columns: 1fr; }
	.cp-reviews__track .cp-review[data-cp-slot="2"],
	.cp-reviews__track .cp-review[data-cp-slot="3"] { display: none; }

	.cp-gallery { grid-template-columns: repeat(2, 1fr); }
	.cp-carousel-btn { display: none; }
	.cp-form-card { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
	.cp-carousel__slide,
	.cp-gallery__img,
	.cp-btn,
	.cp-area { transition: none; }
}

/* ------------------------------------------------- Divi <button> overrides */
/*
 * The active theme (Divi) styles bare <button> elements as its own buttons —
 * sage background, white text, padding, radius — which hijacks every control
 * in these sections (carousel arrows, review nav, dots, FAQ). Re-assert the
 * intended look with !important so Divi's more-specific rules can't win.
 */
.cp-section button {
	text-transform: none;
	letter-spacing: normal;
}

.cp-section .cp-carousel-btn {
	background: #fff !important;
	color: inherit !important;
}

.cp-section .cp-carousel-btn:hover {
	background: var(--cp-pill) !important;
	border-color: var(--cp-sage) !important;
}

.cp-section .cp-carousel__arrow {
	background: rgba(255, 255, 255, .85) !important;
	color: inherit !important;
}

.cp-section .cp-carousel__arrow:hover {
	background: #fff !important;
}

.cp-section .cp-dot {
	background: #c9cdbf !important;
	color: inherit !important;
}

.cp-section .cp-dot.is-active {
	background: var(--cp-green) !important;
}

.cp-section .cp-dot--light {
	background: rgba(255, 255, 255, .55) !important;
}

.cp-section .cp-dot--light.is-active {
	background: #fff !important;
}
