/*
Theme Name: HC Gardening Child
Template: astra
Version: 1.1.8
Text Domain: hcgardening-child
*/

:root {
	--hc-green: #00a651;
	--hc-green-dark: #143d22;
	--hc-green-darker: #0e2e19;
	--hc-orange: #f15d3c;
	--hc-orange-dark: #d8492b;
	--hc-cream: #f6f4ee;
	--hc-text: #2c3a30;
	--hc-gray: #6b7570;
	--hc-border: #e3e1d8;
	--hc-font-head: 'Poppins', sans-serif;
	--hc-font-body: 'Inter', sans-serif;
}

body {
	font-family: var(--hc-font-body);
	color: var(--hc-text);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--hc-font-head);
}

a {
	text-decoration: none;
}

.hc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.hc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--hc-font-head);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 14px 26px;
	border-radius: 6px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease, color .15s ease;
}

.hc-btn-orange {
	background: var(--hc-orange);
	color: #fff;
}
.hc-btn-orange:hover {
	background: var(--hc-orange-dark);
	color: #fff;
	transform: translateY(-1px);
}

.hc-btn-outline-green {
	background: transparent;
	border-color: var(--hc-green-dark);
	color: var(--hc-green-dark);
}
.hc-btn-outline-green:hover {
	background: var(--hc-green-dark);
	color: #fff;
}

.hc-btn-green {
	background: var(--hc-green-dark);
	color: #fff;
}
.hc-btn-green:hover {
	background: var(--hc-green-darker);
	color: #fff;
}

.hc-eyebrow {
	display: block;
	text-align: center;
	color: var(--hc-orange);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 13px;
	margin-bottom: 8px;
}

.hc-section-title {
	text-align: center;
	color: var(--hc-green-dark);
	font-weight: 800;
	font-size: clamp(26px, 3.2vw, 38px);
	margin: 0 0 12px;
	position: relative;
}

.hc-section-title::after {
	content: '';
	display: block;
	width: 70px;
	height: 3px;
	background: var(--hc-green);
	margin: 16px auto 0;
	border-radius: 3px;
}

/* ---------- Skip link ---------- */
.hc-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: #fff;
	color: #000;
	padding: 10px 16px;
	z-index: 10000;
}
.hc-skip-link:focus {
	left: 12px;
	top: 12px;
}

/* ---------- Header ---------- */
.hc-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.hc-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 12px 24px;
}
.hc-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.hc-logo img {
	height: 52px;
	width: auto;
	display: block;
}
.hc-primary-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.hc-primary-nav ul {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.hc-primary-nav a {
	color: var(--hc-text);
	font-weight: 600;
	font-size: 15px;
}
.hc-primary-nav li.current-menu-item > a,
.hc-primary-nav a:hover {
	color: var(--hc-green);
}
.hc-primary-nav li.menu-item-has-children {
	position: relative;
}
.hc-primary-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #fff;
	box-shadow: 0 12px 24px rgba(0,0,0,.12);
	border-radius: 6px;
	padding: 8px 0;
	list-style: none;
	margin: 8px 0 0;
	z-index: 20;
}
.hc-primary-nav li.menu-item-has-children:hover .sub-menu,
.hc-primary-nav li.menu-item-has-children:focus-within .sub-menu {
	display: block;
}
.hc-primary-nav .sub-menu li a {
	display: block;
	padding: 9px 20px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}
.hc-primary-nav .sub-menu li a:hover {
	background: var(--hc-cream);
}
.hc-header-cta .hc-btn {
	flex-direction: column;
	line-height: 1.2;
	gap: 2px;
	padding: 10px 20px;
}
.hc-header-cta .hc-btn small {
	font-size: 10px;
	font-weight: 500;
	text-transform: none;
	opacity: .9;
}
.hc-nav-toggle {
	display: none;
	background: none;
	border: 2px solid var(--hc-green-dark);
	border-radius: 6px;
	padding: 8px 10px;
	color: var(--hc-green-dark);
	font-size: 20px;
	cursor: pointer;
}

/* ---------- Hero ---------- */
.hc-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	padding: 90px 0 70px;
}
.hc-hero-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hc-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.6s ease;
}
.hc-hero-slide.is-active {
	opacity: 1;
}
.hc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(10,25,15,.78) 0%, rgba(10,25,15,.45) 55%, rgba(10,25,15,.15) 100%);
}
.hc-hero .hc-container {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
}
.hc-hero-copy {
	max-width: 620px;
}
.hc-hero-copy h1 {
	font-size: clamp(30px, 4.4vw, 48px);
	line-height: 1.1;
	font-weight: 800;
	margin: 0 0 16px;
	text-transform: uppercase;
	color: #fff;
}
.hc-hero-copy h1 .hc-hero-accent {
	display: block;
	color: var(--hc-orange);
	font-size: clamp(38px, 5.5vw, 58px);
}
.hc-hero-copy p {
	font-size: 17px;
	max-width: 480px;
	margin-bottom: 32px;
	color: #eef1ee;
}
.hc-hero-badges {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
}
.hc-hero-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 110px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.hc-hero-badge .hc-icon-circle {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.35);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	font-size: 20px;
}
.hc-hero-card {
	background: #fff;
	color: var(--hc-text);
	border-radius: 10px;
	padding: 28px 26px;
	max-width: 320px;
	box-shadow: 0 20px 45px rgba(0,0,0,.25);
}
.hc-hero-card h2 {
	color: var(--hc-green-dark);
	font-size: 19px;
	font-weight: 800;
	margin: 0 0 10px;
	text-transform: uppercase;
	line-height: 1.3;
}
.hc-hero-card p {
	font-size: 14px;
	color: var(--hc-gray);
	margin-bottom: 18px;
}
.hc-hero-card .hc-btn {
	width: 100%;
	margin-bottom: 14px;
}
.hc-hero-card .hc-hero-card-phone {
	text-align: center;
	font-size: 13px;
	color: var(--hc-gray);
}
.hc-hero-card .hc-hero-card-phone a {
	display: block;
	color: var(--hc-green-dark);
	font-weight: 800;
	font-size: 18px;
	margin-top: 4px;
}

/* ---------- Info bar ---------- */
.hc-infobar {
	background: var(--hc-green-dark);
	color: #fff;
	padding: 18px 0;
}
.hc-infobar .hc-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
}
.hc-infobar-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
}
.hc-infobar-item .hc-infobar-icon {
	font-size: 18px;
	flex-shrink: 0;
}
.hc-infobar-item strong {
	display: block;
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255,255,255,.65);
	font-weight: 600;
}
.hc-infobar-social {
	display: flex;
	gap: 10px;
}
.hc-infobar-social a,
.hc-infobar-social span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 15px;
	overflow: hidden;
}
.hc-infobar-social a:hover {
	background: var(--hc-orange);
}
.hc-infobar-social img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Services grid ---------- */
.hc-services {
	padding: 70px 0;
}
.hc-services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 22px;
	margin-top: 44px;
}
.hc-service-card {
	background: #fff;
	border: 1px solid var(--hc-border);
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}
.hc-service-card:hover {
	box-shadow: 0 14px 28px rgba(0,0,0,.08);
	transform: translateY(-3px);
}
.hc-service-card-media {
	position: relative;
	height: 110px;
}
.hc-service-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hc-service-card-icon {
	position: absolute;
	bottom: -18px;
	left: 16px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--hc-green-dark);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	border: 3px solid #fff;
}
.hc-service-card-body {
	padding: 28px 16px 18px;
}
.hc-service-card-body h3 {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--hc-green-dark);
	margin: 0 0 6px;
}
.hc-service-card-body p {
	font-size: 12.5px;
	color: var(--hc-gray);
	margin: 0;
	line-height: 1.4;
}
.hc-services-cta {
	text-align: center;
	margin-top: 40px;
}

/* ---------- Why choose us ---------- */
.hc-why {
	background: var(--hc-cream);
	padding: 70px 0;
}
.hc-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 44px;
}
.hc-why-item {
	text-align: center;
	padding: 0 24px;
	border-right: 1px solid var(--hc-border);
}
.hc-why-item:last-child {
	border-right: none;
}
.hc-why-item .hc-icon-circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--hc-green);
	color: var(--hc-green-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin: 0 auto 14px;
}
.hc-why-item h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--hc-green-dark);
	margin: 0 0 8px;
}
.hc-why-item p {
	font-size: 13px;
	color: var(--hc-gray);
	margin: 0;
}

/* ---------- Gallery / projects ---------- */
.hc-projects {
	padding: 70px 0;
}
.hc-filter-pills {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0 34px;
}
.hc-filter-pill {
	border: 1.5px solid var(--hc-green-dark);
	color: var(--hc-green-dark);
	background: #fff;
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 12.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	cursor: pointer;
}
.hc-filter-pill.is-active,
.hc-filter-pill:hover {
	background: var(--hc-green-dark);
	color: #fff;
}
.hc-project-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.hc-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 36px;
}
.hc-pagination-pill {
	padding: 6px 14px;
	min-width: 36px;
	text-align: center;
}
.hc-project-grid figure {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 3/4;
}
.hc-project-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}
.hc-project-grid figure:hover img {
	transform: scale(1.06);
}
.hc-projects-cta {
	text-align: center;
	margin-top: 36px;
}

/* ---------- Testimonials + areas ---------- */
.hc-reviews-areas {
	padding: 70px 0;
	background: var(--hc-cream);
}
.hc-reviews-areas .hc-container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
}
.hc-reviews-areas h2 {
	color: var(--hc-green-dark);
	font-weight: 800;
	font-size: 24px;
	margin: 0 0 22px;
}
.hc-review-card {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.hc-review-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.hc-review-card-head strong {
	font-size: 13px;
	color: var(--hc-text);
}
.hc-review-stars {
	color: #f5a623;
	font-size: 13px;
}
.hc-review-location {
	font-size: 12px;
	color: var(--hc-gray);
	margin: 0 0 6px;
}
.hc-reviews-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}
.hc-review-card p {
	font-size: 13.5px;
	color: var(--hc-gray);
	margin: 10px 0;
}
.hc-review-card .hc-review-author {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	color: var(--hc-text);
	font-weight: 600;
}
.hc-review-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--hc-green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}
.hc-review-card a {
	color: var(--hc-green-dark);
	font-size: 12.5px;
	font-weight: 700;
}
.hc-placeholder-note {
	font-size: 11px;
	color: var(--hc-gray);
	font-style: italic;
	margin-top: 4px;
	display: block;
}
.hc-areas-list {
	columns: 2;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}
.hc-areas-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	margin-bottom: 10px;
}
.hc-areas-list li::before {
	content: '📍';
	font-size: 12px;
}
.hc-areas-map {
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--hc-border);
}
.hc-areas-map iframe {
	width: 100%;
	height: 220px;
	border: 0;
	display: block;
}

/* ---------- CTA banner ---------- */
.hc-cta-banner {
	background: var(--hc-green-dark);
	color: #fff;
	padding: 50px 0;
}
.hc-cta-banner .hc-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}
.hc-cta-banner h2 {
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 800;
	margin: 0 0 8px;
	color: #fff;
}
.hc-cta-banner p {
	color: rgba(255,255,255,.8);
	margin: 0;
	max-width: 480px;
}
.hc-cta-banner-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.hc-cta-banner-phone {
	font-weight: 800;
	font-size: 18px;
	color: var(--hc-orange);
}
.hc-cta-banner-phone:hover {
	color: var(--hc-orange-dark);
}

/* ---------- Footer ---------- */
.hc-site-footer {
	background: var(--hc-green-darker);
	color: rgba(255,255,255,.85);
	padding: 60px 0 22px;
}
.hc-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
	gap: 40px;
	margin-bottom: 40px;
}
.hc-footer-grid h4 {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin: 0 0 18px;
}
.hc-footer-logo img {
	height: 44px;
	margin-bottom: 14px;
}
.hc-footer-grid p {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255,255,255,.65);
}
.hc-footer-grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.hc-footer-grid ul li {
	margin-bottom: 10px;
}
.hc-footer-grid ul li a {
	color: rgba(255,255,255,.75);
	font-size: 13.5px;
}
.hc-footer-grid ul li a:hover {
	color: var(--hc-orange);
}
.hc-footer-social {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}
.hc-footer-social a,
.hc-footer-social span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	overflow: hidden;
}
.hc-footer-social a:hover {
	background: var(--hc-orange);
}
.hc-footer-social img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hc-footer-contact li {
	font-size: 13.5px;
	color: rgba(255,255,255,.75);
	margin-bottom: 12px;
}
.hc-footer-book .hc-btn {
	margin-top: 10px;
}
.hc-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.12);
	padding-top: 20px;
	text-align: center;
	font-size: 12.5px;
	color: rgba(255,255,255,.55);
}

/* ---------- Generic inner page hero ---------- */
.hc-page-hero {
	background: var(--hc-green-dark);
	color: #fff;
	padding: 60px 0;
	text-align: center;
}
.hc-page-hero h1 {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
	color: #fff;
}
.hc-page-content {
	padding: 60px 0;
}
.hc-page-content .hc-container {
	max-width: 900px;
}
.hc-page-content h2 {
	color: var(--hc-green-dark);
	font-size: 24px;
	font-weight: 800;
	margin: 32px 0 14px;
}
.hc-page-content p {
	color: var(--hc-text);
	line-height: 1.7;
	margin-bottom: 16px;
}

/* ---------- Contact form ---------- */
.hc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}
.hc-contact-info li {
	list-style: none;
	margin-bottom: 18px;
	font-size: 14.5px;
}
.hc-contact-info strong {
	display: block;
	color: var(--hc-green-dark);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: 4px;
}
.wpcf7-form p {
	margin-bottom: 14px;
}
.wpcf7-form input:not([type=submit]),
.wpcf7-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--hc-border);
	border-radius: 6px;
	font-family: var(--hc-font-body);
	font-size: 14px;
}
.wpcf7-form input[type=submit] {
	font-family: var(--hc-font-head);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	background: var(--hc-orange);
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 14px 30px;
	cursor: pointer;
}
.wpcf7-form input[type=submit]:hover {
	background: var(--hc-orange-dark);
}

/* ---------- Services detail page ---------- */
.hc-services-detail-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.hc-services-detail-grid .hc-service-card-body p {
	font-size: 13px;
}

/* ---------- Chatbot widget ---------- */
.hc-chat-launcher {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--hc-green-dark);
	color: #fff;
	border: none;
	font-size: 26px;
	box-shadow: 0 10px 24px rgba(0,0,0,.25);
	cursor: pointer;
	z-index: 9998;
}
.hc-chat-launcher:hover {
	background: var(--hc-green-darker);
}
.hc-chat-window {
	position: fixed;
	bottom: 96px;
	right: 24px;
	width: 340px;
	max-width: calc(100vw - 32px);
	height: 460px;
	max-height: calc(100vh - 140px);
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(0,0,0,.28);
	display: none;
	flex-direction: column;
	overflow: hidden;
	z-index: 9999;
}
.hc-chat-window.is-open {
	display: flex;
}
.hc-chat-header {
	background: var(--hc-green-dark);
	color: #fff;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
	font-size: 14px;
}
.hc-chat-header button {
	background: none;
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}
.hc-chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--hc-cream);
}
.hc-chat-msg {
	max-width: 85%;
	padding: 9px 12px;
	border-radius: 10px;
	font-size: 13px;
	line-height: 1.45;
}
.hc-chat-msg.bot {
	background: #fff;
	align-self: flex-start;
	border: 1px solid var(--hc-border);
}
.hc-chat-msg.user {
	background: var(--hc-green);
	color: #fff;
	align-self: flex-end;
}
.hc-chat-form {
	display: flex;
	border-top: 1px solid var(--hc-border);
}
.hc-chat-form input {
	flex: 1;
	border: none;
	padding: 12px 14px;
	font-size: 13px;
}
.hc-chat-form input:focus {
	outline: none;
}
.hc-chat-form button {
	background: var(--hc-orange);
	color: #fff;
	border: none;
	padding: 0 18px;
	cursor: pointer;
	font-size: 14px;
}
.hc-chat-fallback-phone {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: var(--hc-orange);
	color: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 10px 24px rgba(0,0,0,.25);
	z-index: 9998;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.hc-services-grid { grid-template-columns: repeat(3, 1fr); }
	.hc-why-grid { grid-template-columns: repeat(2, 1fr); }
	.hc-why-item { border-right: none; border-bottom: 1px solid var(--hc-border); padding-bottom: 24px; margin-bottom: 24px; }
	.hc-project-grid { grid-template-columns: repeat(3, 1fr); }
	.hc-reviews-areas .hc-container { grid-template-columns: 1fr; }
	.hc-footer-grid { grid-template-columns: 1fr 1fr; }
	.hc-services-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
	.hc-primary-nav { display: none; }
	.hc-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.hc-header-cta { display: none; }
	.hc-primary-nav.is-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		box-shadow: 0 12px 24px rgba(0,0,0,.1);
		padding: 10px 24px 20px;
	}
	.hc-primary-nav.is-open ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	.hc-primary-nav.is-open .sub-menu {
		display: block;
		position: static;
		box-shadow: none;
		padding-left: 14px;
		margin: 0;
	}
	.hc-hero-card { max-width: 100%; }
	.hc-services-grid { grid-template-columns: repeat(2, 1fr); }
	.hc-project-grid { grid-template-columns: repeat(2, 1fr); }
	.hc-why-grid { grid-template-columns: 1fr; }
	.hc-footer-grid { grid-template-columns: 1fr; }
	.hc-contact-grid { grid-template-columns: 1fr; }
	.hc-services-detail-grid { grid-template-columns: 1fr; }
	.hc-infobar .hc-container { flex-direction: column; align-items: flex-start; }
	.hc-pagination { gap: 6px; margin-top: 24px; }
	.hc-pagination-pill { padding: 5px 10px; min-width: 30px; font-size: 11.5px; }
}

/* ---------- Reviews modal ---------- */
.hc-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
}
.hc-modal.is-open {
	display: block;
}
.hc-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 61, 34, .65);
}
.hc-modal-panel {
	position: relative;
	max-width: 700px;
	margin: 60px auto;
	background: #fff;
	border-radius: 14px;
	padding: 32px;
	max-height: 80vh;
	overflow-y: auto;
}
.hc-modal-panel h3 {
	margin-top: 0;
	color: var(--hc-green-dark);
	font-size: 20px;
}
.hc-modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: var(--hc-gray);
}
body.hc-modal-locked {
	overflow: hidden;
}
@media (max-width: 782px) {
	.hc-modal-panel { margin: 24px 16px; padding: 24px 20px; max-height: calc(100vh - 48px); }
}
