/**
 * Buck & Shine — complements design/css/styles.css for block markup quirks.
 */

/* ── Nav: Navigation block adopts main menu row visuals ─────────────── */
.buck-and-shine .nav .wp-block-navigation {
	flex: 1 1 auto;
	justify-content: center;
	min-width: 0;
}

.buck-and-shine .nav .wp-block-navigation .wp-block-navigation__container {
	gap: clamp(16px, 3vw, 36px);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.buck-and-shine .nav .wp-block-navigation-item .wp-block-navigation-item__content {
	font-family: "Barlow Condensed", system-ui, sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	border-bottom: 2px solid transparent;
	padding-bottom: 4px;
	color: var(--steel-dim, #aab8c8);
	text-decoration: none;
	transition: color 0.2s, border-color 0.2s;
}

.buck-and-shine .nav .wp-block-navigation-item .wp-block-navigation-item__content:hover,
.buck-and-shine .nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content {
	color: var(--steel, #f6f9fc);
	border-bottom-color: var(--accent, #0f79d7);
}

.buck-and-shine .nav .wp-block-navigation__responsive-container-open,
.buck-and-shine .nav .wp-block-navigation__responsive-container-close {
	color: var(--steel, #f6f9fc);
	background: transparent;
	border: none;
	padding: 4px;
	font-family: inherit;
}

.buck-and-shine .nav .wp-block-navigation__responsive-container-open svg,
.buck-and-shine .nav .wp-block-navigation__responsive-container-close svg {
	width: 24px;
	height: 24px;
}

.buck-and-shine .nav__phone-stack {
	margin: 0;
	line-height: 1.35;
}

.buck-and-shine .nav__phone-stack .nav__phone-label {
	display: inline;
}

@media (max-width: 768px) {
	.buck-and-shine .nav .nav__actions {
		display: none;
	}

	.buck-and-shine .nav .wp-block-navigation {
		flex: 0 0 auto;
	}
}
@media (max-width: 600px) {
	nav.is-responsive {
	position: absolute;
    right: 5px;
	}
}
/* ── Ticker: flex row from block groups (matches .ticker__inner) ───── */
.buck-and-shine .ticker .ticker__inner.wp-block-group {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 60px;
	white-space: nowrap;
}

.buck-and-shine .ticker .ticker__item {
	margin: 0;
}

.buck-and-shine .ticker .ticker__item::after {
	display: inline;
}

/* ── Layout grids: core Columns → CSS grid where design uses grid ──── */
.buck-and-shine .recurring__grid.wp-block-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 70px);
	align-items: center;
}

.buck-and-shine .pricing-grid.wp-block-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 3vw, 24px);
}

.buck-and-shine .values-grid.wp-block-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	height: 100%;
	    margin-bottom: 30px;
}

.buck-and-shine .service-area__grid.wp-block-columns {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 5vw, 60px);
	align-items: center;
}

.buck-and-shine .service-area__tags.wp-block-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.buck-and-shine .service-area__tags .service-area__tag {
	margin: 0;
}

.buck-and-shine .service-row > .wp-block-columns.service-row__grid {
	display: grid;
	grid-template-columns: 280px 1fr 280px;
	gap: clamp(24px, 4vw, 50px);
	align-items: center;
}

.buck-and-shine .service-row__includes .wp-block-list-item.service-row__include-item {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
}

.buck-and-shine .service-row__includes .wp-block-list-item.service-row__include-item::before {
	content: "";
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-right: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f79d7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-11'/%3E%3C/svg%3E");
	display: inline-block;
	vertical-align: middle;
}

.buck-and-shine .services-callouts-inner.wp-block-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	width: 100%;
	max-width: 100%;
}

@media (max-width: 900px) {
	.buck-and-shine .service-row > .wp-block-columns.service-row__grid {
		grid-template-columns: 1fr;
	}

	.buck-and-shine .pricing-grid.wp-block-columns {
		grid-template-columns: 1fr;
	}

	.buck-and-shine .values-grid.wp-block-columns {
		grid-template-columns: 1fr 1fr;
	}

	.buck-and-shine .services-callouts-inner.wp-block-group {
		grid-template-columns: 1fr;
	}

	.buck-and-shine .recurring__grid.wp-block-columns {
		grid-template-columns: 1fr;
	}

	.buck-and-shine .service-area__grid.wp-block-columns {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.buck-and-shine .values-grid.wp-block-columns {
		grid-template-columns: 1fr;
	}
}

/* ── Hero visual: spacer divs emulate decorative rings ──────────────── */
.buck-and-shine .hero__visual-ring-outer.wp-block-spacer,
.buck-and-shine .hero__visual-ring-inner.wp-block-spacer,
.buck-and-shine .hero__visual-glow.wp-block-spacer {
	flex-shrink: 0;
	max-width: 100%;
}

/* ── Barbed-wire dividers: block groups use CSS tiling (no inline SVG) ─ */
.buck-and-shine .wp-block-group.barbed-wire {
	height: 13px;
	max-height: 13px;
	min-height: 13px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	background-repeat: repeat-x;
	background-position: center;
	background-size: 51px 20px;
	margin-top: 4px;
}

.buck-and-shine .wp-block-group.barbed-wire:not(.barbed-wire--accent) {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='18' viewBox='0 0 50 18'%3E%3Cline x1='0' y1='9' x2='50' y2='9' stroke='%2373c9ff' stroke-width='1'/%3E%3Cline x1='16' y1='1' x2='34' y2='17' stroke='%2373c9ff' stroke-width='1.5'/%3E%3Cline x1='16' y1='17' x2='34' y2='1' stroke='%2373c9ff' stroke-width='1.5'/%3E%3C/svg%3E");
}

.buck-and-shine .wp-block-group.barbed-wire.barbed-wire--accent {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='18' viewBox='0 0 50 18'%3E%3Cline x1='0' y1='9' x2='50' y2='9' stroke='%2373c9ff' stroke-width='1'/%3E%3Cline x1='16' y1='1' x2='34' y2='17' stroke='%2373c9ff' stroke-width='1.5'/%3E%3Cline x1='16' y1='17' x2='34' y2='1' stroke='%2373c9ff' stroke-width='1.5'/%3E%3C/svg%3E");
}

/* ── Testimonials decorative stars strip (substitute for SVG row) ──── */
.buck-and-shine .testimonials__stars.wp-block-group {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px;
}

.buck-and-shine .testimonials__stars .wp-block-paragraph.testimonials__star {
	margin: 0;
	font-size: 0;
	line-height: 0;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f6f9fc' d='m12 2 2.9 6.9 7.1.6-5.4 4.7 1.7 7.1L12 17.8l-6.3 3.5 1.7-7.1L2 9.5l7.1-.6L12 2Z'/%3E%3C/svg%3E");
}

.buck-and-shine .testimonial-card__quote-icon {
	font-family: "Rye", Georgia, serif;
	font-size: clamp(2.75rem, 4vw, 3.5rem);
	line-height: 1;
	/* opacity: 0.35; */
}

.buck-and-shine .ph-photo.wp-block-cover .wp-block-cover__inner-container {
	    min-height: 100%;
    width: 100%;
    height: 100%;
}
.buck-and-shine .ph-photo.wp-block-cover .wp-block-cover__inner-container .size-full {
	 width: 100%;
    height: 100%;
}
.wp-block-cover, .wp-block-cover-image {
	min-height: 100% !important;
	height: 100%;
    object-fit: cover;
}
.buck-and-shine .ph-photo.wp-block-cover .wp-block-cover__inner-container .size-full img {
	    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-story .wp-block-column.is-vertically-aligned-bottom {
	align-self: inherit !important;
}
.buck-and-shine .ph-photo.wp-block-cover:not(.has-background-image) span.wp-block-cover__background {
	opacity: 1 !important;
	background: linear-gradient(135deg, #0b2e4f 0%, #030508 100%);
	border: 1px solid #0f79d7;
}

.buck-and-shine .area-map.wp-block-group {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--accent, #0f79d7);
	position: relative;
	overflow: hidden;
	background: radial-gradient(circle at 30% 40%, rgba(15, 121, 215, 0.27) 0%, #030508 70%);
}

.buck-and-shine .area-map.wp-block-group > .area-map__grid.wp-block-group {
	position: absolute;
	inset: 0;
	z-index: 2;
	min-height: 0;
	pointer-events: none;
}

.buck-and-shine .area-map.wp-block-group .area-map__pin {
	position: absolute;
	z-index: 3;
}

.buck-and-shine .area-map__pins.wp-block-group {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	margin: 0;
	padding: 0;
	min-height: 0;
}

.buck-and-shine .area-map__pins .wp-block-html {
	position: absolute;
	inset: 0;
	margin: 0;
}

.buck-and-shine .footer__link-list.wp-block-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.buck-and-shine .footer__link-list .wp-block-list-item {
	margin: 0;
}


.page-id-41 .choose_us_section .wp-block-image.size-full{
	    height: 500px;
}
.page-id-37 .choose_us_section .wp-block-image.size-full {
	height: 585px;
}

.page-id-39 .choose_us_section .wp-block-image.size-full {
	height: 485px;
}
.page-id-43 .choose_us_section .wp-block-image.size-full {
	    height: 500px;
}
.page-id-45 .choose_us_section .wp-block-image.size-full {
	    height: 507px;
}

.page-id-81 .choose_us_section .wp-block-image.size-full {
	    height: 450px;
}



@media (max-width: 1366px) {
	/* .page-id-39  .callout-card {
	    min-height: 553px !important;
} */
.page-id-45 .callout-card {
	    min-height: 329px !important;
}
.page-id-81  .callout-card {
	    min-height: 302px !important;
}
.page-id-35  .callout-card {
	    min-height: 306px !important;
}
}

@media (max-width: 768px) {
	/* .buck-and-shine .nav .wp-block-navigation .wp-block-navigation__container {
		display: none;
	} */
	 /* .nav__links-slot {
		display: none;
	 } */
	 .buck-and-shine .nav .wp-block-navigation .wp-block-navigation__container {
		    gap: clamp(16px, 0vw, 36px);
	 }
	.page-id-39  .callout-card {
	    min-height: auto !important;
	}
	.page-id-45 .callout-card {
	    min-height: auto !important;
}
.page-id-81  .callout-card {
	    min-height: auto !important;
}
    .page-id-35 .callout-card {
        min-height: auto !important;
    }
}