/* -------------------------------------------------------------------------
 * Round Rock — global stylesheet
 *
 * Scope of this file: variables, resets, layout primitives, and the shared
 * pieces (header, footer, buttons, modal). Section-specific design belongs in
 * blocks/<block>/style.css so it only loads on pages using that block.
 * ---------------------------------------------------------------------- */

/* --- Tokens ------------------------------------------------------------
 * Fonts (Lato + Roboto) are enqueued in functions.php, not imported here —
 * an @import would make the browser wait for this file before fetching them.
 * -------------------------------------------------------------------- */
:root {
	/* Fill these in from the design. */
	--primary-color: #3c5221;
	--secondary-color: #ecb360;
	--white: #fff;
	--black: #000;

	--font-body: "Roboto", system-ui, sans-serif;
	--font-heading: "Lato", system-ui, sans-serif;

	--container-width: 1388px;
	--container-gutter: 20px;
	--section-spacing: 80px;
}

/* --- Reset ------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: unset; }

body {
	margin: 0;
	font-family: var(--font-body);
}

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

p {
    font-size: 20px;
    line-height: 1.7;
	font-family: var(--font-body);
}
.section-title, .section-title p {
	font-size: 35px;
    line-height: 1.2;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary-color);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul.social-links,
nav ul { list-style: none; margin: 0; padding: 0; }

/* --- Layout primitives ------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	/* padding-inline: var(--container-gutter); */
}

.section { padding-block: var(--section-spacing); }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }

.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 10px; left: 10px;
	width: auto; height: auto;
	clip-path: none;
	padding: 10px 16px;
	background: var(--white);
	z-index: 9999;
}

/* --- Buttons (components/site-btn.php) -------------------------------- */
.site-btn {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 18px;
	padding: 9px 34px;
	color: var(--white);
	border-radius: 10px;
}

.site-btn.btn-primary {
	background-color: var(--secondary-color);
}
.site-btn.btn-secondary {
	background-color: var(--primary-color);
}
ul.social-links li a img {
    filter: brightness(111);
}
/* --- Header -----------------------------------------------------------
 * <header> > .container > ( .topbar , .main-header )
 * Both rows are two-column flex: left col / right col.
 * -------------------------------------------------------------------- */
.header {}

.header .topbar,
.header .main-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.header .topbar {}
.header .topbar-left {}

.header .topbar-right {
	gap: 16px;
}

.header .site-tagline,
.header .topbar-text { margin: 0; }

.header .main-header {}
.header .logo-col {}

.header .menu-col {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header .main-menu-list {
	display: flex;
    align-items: center;
    /* gap: 24px; */
    font-size: 14px;
    text-transform: uppercase;
	color: var(--primary-color);
	font-family: var(--font-body);
}
.header .main-menu-list > li {
	padding: 10px 23px;
}
.header .main-menu-list > li:last-child {
	padding-right: unset;
}
.header .main-menu-list li a{
	letter-spacing: 2px;
}

.mobile-toggle { display: none; }
.mobile-nav { display: none; }
.mobile-nav.is-open { display: block; }

/* --- Footer -----------------------------------------------------------
 * <footer> > .main-footer (centered single column)
 *          > .footer-bottom (dark strip: links left / copyright right)
 * -------------------------------------------------------------------- */
.footer-section {
	border-top: 1px solid var(--secondary-color);
}

.footer-section .main-footer {
	padding-block: 40px 34px;
	text-align: center;
}

/* Menu */
.footer-section .footer-menu-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--primary-color);
}

.footer-section .footer-menu-list > li {
	padding: 10px 23px;
}

.footer-section .footer-menu-list .current-menu-item > a,
.footer-section .footer-menu-list > li > a:hover {
	color: var(--secondary-color);
}

/* Logo */
.footer-section .footer-logo {
	display: inline-block;
	margin-top: 22px;
}

.footer-section .footer-logo img {
	margin-inline: auto;
}

/* Content */
.footer-section .footer-content p {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
}

/* Phone */
.footer-section .footer-phone {
	margin-top: 22px;
	font-size: 35px;
	font-family: var(--font-body);
	font-weight: 700;
	color: var(--primary-color);
}

/* Social icons */
.footer-section .social-links {
	justify-content: center;
	/* gap: 14px; */
	margin-top: 32px;
	margin-bottom: 18px;
}

.footer-section .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 500px;
	background: #f3ddba;
}

.footer-section .social-links img {
	width: 27px;
	height: 27px;
	object-fit: contain;
}

/* Bottom bar */
.footer-section .footer-bottom {
	padding-block: 14px;
	background: var(--primary-color);
	border-bottom: 14px solid var(--secondary-color);
	color: var(--white);
	font-size: 15px;	
}

.footer-section .footer-bottom .container {
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer-section .bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 34px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-section .bottom-links a:hover {
	color: var(--secondary-color);
}

.footer-section .footer-bottom p {
	margin: 0;
	font-size: 15px;
}

@media (max-width: 767px) {
	.footer-section .footer-menu-list > li { padding: 6px 12px; }
	.footer-section .footer-phone { font-size: 22px; }

	.footer-section .footer-bottom .container {
		flex-direction: column;
		text-align: center;
	}

	.footer-section .bottom-links { justify-content: center; gap: 18px; }
}

/* --- Modal (header.php + assets/custom.js) --------------------------- */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9998;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .6);
}

.modal-box {
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
	background: var(--white);
}

.modal-box .close-btn {
	position: absolute;
	top: 10px; right: 10px;
	border: 0;
	background: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

/* --- Back to top ------------------------------------------------------
 * Toggled with .show by assets/custom.js once the page is scrolled 300px.
 * -------------------------------------------------------------------- */
#btn-to-top {
	position: fixed;
	right: 20px; bottom: 20px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--secondary-color);
	color: var(--primary-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, background-color .3s, color .3s;
}

#btn-to-top:hover {
	background: var(--primary-color);
	color: var(--white);
}

#btn-to-top.show { opacity: 1; visibility: visible; }

@media (max-width: 767px) {
	#btn-to-top { width: 38px; height: 38px; right: 14px; bottom: 14px; }
}

/* --- Breakpoints ------------------------------------------------------ */
@media (max-width: 1024px) {}

@media (max-width: 767px) {
	:root { --section-spacing: 48px; }

	.mobile-toggle { display: block; }
	.header .main-menu-list { display: none; }
	.header .topbar { flex-direction: column; align-items: flex-start; }
}

/* Header */
header .container.d-flex{
	justify-content: space-between;
}

header .topbar{
	background-color: var(--primary-color);
	padding: 11px 20px;
}

header .topbar p {
	font-size: 18px;
	color: var(--white);
	font-family: var(--font-body);
}

.header .topbar .col {
    align-content: center;
}

.header .topbar .col {
    align-items: center;
}

header .main-header {
    padding: 20px 0;
}

header .menu-main-menu-container #menu-main-menu li.current_page_item {
	color: var(--secondary-color);
}


/* Section hero */
.section-hero {
	clip-path: polygon(
    0 0,
    100% 0, 
    100% calc(100% - 111px),
    calc(50% + 208.5px) calc(100% - 111px),
    50% 100%,
    calc(50% - 208.5px) calc(100% - 111px),
    0 calc(100% - 111px)
  );
  padding: 193px 30px 145px;
margin-bottom: -111px;
}

.section-hero .social-links {
    justify-content: center;
	margin-bottom: 35px;
}

.section-hero * {
    text-align: center;
}
.section-hero .page-title {
    font-size: 60px;
    margin: unset !important;
	color: var(--white);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.2;
}
.section-hero .page-title p {
    margin: unset !important;
}
.section-hero .container {
	max-width: 1110px;
}
.section-hero .content {
	padding-top: 10px;
	padding-bottom: 40px;
	line-height: 1.52;
}
.section-hero .content p {
	font-size: 25px;
	margin: unset;
	font-weight: 400;
	color: var(--white);
}

.section-hero .social-links li {
   margin: 0 10px; 
}

.section-hero .social-links li a {
    display: inline-flex;
    width: 60px;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, .4);
    align-items: center;
    justify-content: center;
    border-radius: 500px;
}

.section-hero .polygon-icon {
    height: 23px;
}

.section-hero .polygon-text {
	font-size: 18px;
	color: var(--white);
	margin-bottom: 10px;
}

/* Image with content section */
.section-content-with-image {
	padding: 130px 30px 39px; 
}
.section-content-with-image.has-top-border {
	border-top: 23px solid var(--secondary-color);
} 

.section-content-with-image .section-title {
    margin-bottom: 40px;
}

.section-content-with-image .col {
    width: 50%;
	padding: 0 27px;
}

.section-content-with-image .section-title *, .section-content-with-image .section-title{
    font-size: 35px;
    line-height: 1.2;
    font-weight: 600;
	font-family: var(--font-body);
	color: var(--primary-color);
}

.section-content-with-image .section-title strong {
	color: var(--secondary-color);
}

.section-content-with-image .container > .col:first-child {
    padding-left: unset;
}
.section-content-with-image .container > .col:last-child {
    padding-right: unset;
}

.section-content-with-image a.content-link {
    font-size: 25px;
    line-height: 1.72;
	color: var(--secondary-color);
	margin-top: 40px;
	display: inline-flex;
	align-items: center;
}
.section-content-with-image a.content-link:before {
    content: '';
    width: 20px;
    background-image: url(http://localhost/roundrock/wp-content/uploads/2026/08/arrow-narrow-right-svgrepo-com.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 20px;
    position: relative;
    display: inline-block;
	margin-right: 18px;
}

.section-content-with-image .image-col img {
    border: 7px solid var(--white);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .4));
}

.section-iconed-column .section-title, .section-iconed-column .section-title * {
    font-size: 35px;
    text-align: center;
    line-height: 1.5;
	font-family: var(--font-body);
	color: var(--primary-color);
	font-weight: 500;
	margin-bottom: 85px;
}

.section-iconed-column .columns-grid .column {
    text-align: center;
	padding: 0 45px;
}

.section-iconed-column .columns-grid .column .column-icon {
    display: flex;
    justify-content: center;
	min-height: 85px;
}
.section-iconed-column .columns-grid .column .column-icon img {
	object-fit: contain;
}

.section-iconed-column .column-title {
    font-size: 20px;
    color: var(--secondary-color) !important;
    margin: 22px 0 50px;
}
.section-iconed-column .columns-grid {
	display: flex;
}

.section-iconed-column .btn-group {
    text-align: center;
	margin-top: 80px;
}

/* Category columns */
.section-category-columns {
	padding: 50px 20px;
}

.section-category-columns .category-column {
    aspect-ratio: 50 / 41.8;
}

.section-category-columns .category-column:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: .4;
}

.section-category-columns .category-inner {
    height: fit-content;
    margin-top: auto;
    min-height: 50%;
    padding: 40px 20px 25px;
    text-align: center;
    background-color: rgba(236, 174, 82, 0);
	transition: all 0.3s;
}

.section-category-columns .category-inner h3.category-title {
	font-size: 32px;
	line-height: 1.18;
	color: var(--white);
	margin: 0 auto 30px;
    max-width: 85%;
}
.section-category-columns .site-btn {
	opacity: 0;
	transition: all 0.3s;
}

.section-category-columns .category-column:hover .category-inner{
    background-color: rgba(236, 174, 82, .8);
}

.section-category-columns .category-column:hover .site-btn {
	opacity: 1;
}

.section-category-columns .container {
    max-width: 1598px;
}

/* Slider section */
.section-category-slider .section-title {
    text-align: center;
    margin-bottom: 10px;
}
.section-category-slider .container {
    max-width: 1186px;
}

.section-category-slider .content {
    text-align: center;
    margin-bottom: 70px;
}

.section-category-slider .category-slider .slide .slide-content {
    text-align: center;
    padding: 26px 16px 0;
}

.section-category-slider .category-slider .slide .slide-content h3 {
	font-size: 20px;
	line-height: 1.2;
	color: var(--primary-color);
	font-family: var(--font-body);
}

.section-category-slider .category-slider .slide .slide-content p.slide-subtext {
    font-size: 16px;
    line-height: 1.3;
}

.section-category-slider span.btn-arrow-image {
    background-image: url(http://localhost/roundrock/wp-content/uploads/2026/08/arrow.png);
    height: 26px;
    width: 18px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.section-category-slider .slider-prev span.btn-arrow-image {
    transform: rotate(180deg);
}

/* Google reviews section */
.section-google-reviews {
	padding: 138px 20px 131px;
}

.section-google-reviews .section-head {
    margin-bottom: 57px;
}

/* Contact form section */
.section-contact-form.has-bg-image {
    position: relative;
}

.section-contact-form.has-bg-image:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: #3c5221;
	opacity: .8;
	top: 0;
	left: 0;
}
.section-contact-form .container {
	position: relative;
	max-width: 970px;
}
.section-contact-form .contact-form-wrap {
	max-width: 100%!important;
}
.section-contact-form.has-bg-image .container .section-title {
	color: var(--white);
}

.section-contact-form {
    padding: 180px 20px 160px;
} 

.section-contact-form .section-head {
    margin-bottom: 58px!important;
}

.section-contact-form form input, .section-contact-form form textarea {
    min-height: 50px;
    border-radius: unset !important;
    font-size: 16px !important;
    color: #000 !important;
	font-family: var(--font-body);
}
.section-contact-form form textarea {
	height: 156px!important;
}
.section-contact-form form input::placeholder, .section-contact-form form textarea::placeholder {
	font-size: 16px !important;
    color: #000 !important;
	font-family: var(--font-body);
}

.section-contact-form form .gform_button {
    display: inline-flex;
    align-items: center;
    cursor: pointer!important;
    font-size: 18px!important;
    padding: 9px 68px!important;
    color: var(--white)!important;
    border-radius: 10px !important;
    background-color: var(--secondary-color);
	border: unset!important;
	text-transform: uppercase;
	margin: 0 auto!important;
}

.section-contact-form .gform_footer {
    margin: unset !important;
    padding-bottom: unset !important;
    padding-top: 75px !important;
}
.section-contact-form .gform_fields {
    grid-column-gap: 27px!important;
    grid-row-gap: 27px!important;
}
/* Footer Section*/
.footer-section nav.footer-nav {
    margin-bottom: 28px;
}
.footer-section .footer-content {
    margin: 50px auto 0;
	color: var(--primary-color);
}

.footer-section .container {
    max-width: 1120px;
}

.footer-section ul.social-links li a img {
    filter: unset;
}

.main-footer .social-links li {
    margin: 0 10px;
}

.footer-bottom {
    padding: 19px 20px !important;
}

.footer-bottom .container {
    max-width: 1386px;
}

.footer-section .bottom-links li a {
    font-size: 18px;
}

.footer-section .bottom-text-col p {
    font-size: 18px;
    line-height: 1.3;
}

/* --- Burger + mobile drawer -------------------------------------------
 * Markup: header.php (.burger-menu and #mobile-nav).
 * Behaviour: assets/custom.js toggles .is-open on #mobile-nav and .nav-open
 * on <body>. The base .mobile-nav / .mobile-nav.is-open display rules are up
 * with the header block; visibility of the burger itself is per-breakpoint
 * in the RESPONSIVE section below.
 * -------------------------------------------------------------------- */
.burger-menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 9px;
	border: 0;
	background: none;
	cursor: pointer;
}

.burger-menu span {
	display: block;
	height: 2px;
	width: 100%;
	border-radius: 2px;
	background: var(--primary-color);
	transition: transform .25s, opacity .2s;
}

/* The burger stays as bars while the drawer is open — the drawer has its own
   close button, and animating this into an X put two X controls on screen. */

/* Backdrop — the element itself; the panel sits inside it. */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 9997;
	background: rgba(0, 0, 0, .5);
}

.mobile-nav-panel {
	position: relative;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	width: 320px;
	max-width: 85vw;
	height: 100%;
	padding: 64px 26px 30px;
	overflow-y: auto;
	background: var(--white);
	box-shadow: -6px 0 24px rgba(0, 0, 0, .18);
}

.mobile-nav .close-menu {
	position: absolute;
	top: 14px; right: 16px;
	border: 0;
	background: none;
	color: var(--primary-color);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

/* Logo at the top of the drawer, above the menu. */
.mobile-nav-logo {
	display: block;
	margin-bottom: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eceee6;
}

.mobile-nav-logo img {
	max-width: 190px;
	max-height: 60px;
	object-fit: contain;
}

.mobile-nav-logo .site-title {
	color: var(--primary-color);
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
}

.mobile-nav .mobile-menu-list {
	display: flex;
	flex-direction: column;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--primary-color);
}

.mobile-nav .mobile-menu-list > li {
	border-bottom: 1px solid #eceee6;
}

.mobile-nav .mobile-menu-list > li > a {
	display: block;
	padding: 13px 0;
}

.mobile-nav .mobile-menu-list .current-menu-item > a,
.mobile-nav .mobile-menu-list > li > a:hover {
	color: var(--secondary-color);
}

/* Sub-menus are shown inline — the drawer has no dropdown behaviour. */
.mobile-nav .mobile-menu-list .sub-menu {
	padding-left: 14px;
	font-size: 14px;
	text-transform: none;
	letter-spacing: .5px;
}

.mobile-nav .mobile-menu-list .sub-menu a { display: block; padding: 9px 0; }

.mobile-nav .site-btn {
	justify-content: center;
	margin-top: 22px;
}

.mobile-nav .social-links {
	gap: 12px;
	margin-top: 24px;
}

.mobile-nav .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: #f3ddba;
	transition: background-color .2s;
}

.mobile-nav .social-links a:hover {
	background: var(--secondary-color);
}

.mobile-nav .social-links img { width: 17px; height: 17px; object-fit: contain; }

/* Stops the page behind the drawer from scrolling. */
body.nav-open { overflow: hidden; }

/* =========================================================================
 * RESPONSIVE
 *
 * Everything below is media-query only — it overrides the desktop rules above
 * without changing them. Appended last so it wins on equal specificity.
 *
 * Breakpoints: 1400 / 1200 / 1024 / 767 / 480
 * ====================================================================== */

/* --- <= 1400px : the container needs a gutter once the viewport is narrower
 * than --container-width, or content runs to the screen edge. ----------- */
@media (max-width: 1400px) {
	.container { padding-inline: var(--container-gutter); }
}

/* --- <= 1200px : trim the large desktop section padding ---------------- */
@media (max-width: 1200px) {
	.section-hero { padding: 140px 20px 110px; }
	.section-hero .page-title { font-size: 46px; }
	.section-hero .content p { font-size: 22px; }

	.section-content-with-image { padding: 90px 20px 39px; }
	.section-content-with-image .col { padding: 0 18px; }

	.section-iconed-column .section-title,
	.section-iconed-column .section-title * { margin-bottom: 55px; }
	.section-iconed-column .columns-grid .column { padding: 0 24px; }
	.section-iconed-column .btn-group { margin-top: 50px; }

	.section-category-slider .content { margin-bottom: 45px; }

	/* Arrows hang outside the track on desktop; keep them inside once there
	   is no room at the sides. */
	.section-category-slider .category-slider-arrows {
		margin-left: 0;
		width: 100%;
	}

	.section-google-reviews { padding: 90px 20px; }
	.section-google-reviews .section-head { margin-bottom: 40px; }

	.section-contact-form { padding: 120px 20px 100px; }
}

/* --- <= 1024px : tablet. Multi-column rows collapse to two. ------------- */
@media (max-width: 1024px) {
	:root { --section-spacing: 60px; }

	/* Header — the inline menu stops fitting here, so hand over to the burger
	   and its drawer (#mobile-nav in header.php). */
	.header .main-menu-list { display: none; }
	.mobile-toggle { display: block; }

	.header .topbar { padding: 10px 0; }
	header .topbar p { font-size: 16px; }

	/* Hero */
	.section-hero { padding: 110px 20px 90px; }
	.section-hero .page-title { font-size: 40px; }
	.section-hero .content { padding-bottom: 30px; }
	.section-hero .content p { font-size: 20px; }
	.section-hero .social-links li a { width: 50px; }
	.section-hero .hero-polygon { margin-top: 110px; }

	/* Content with image — stack the two columns. */
	.section-content-with-image .container { flex-wrap: wrap; }
	.section-content-with-image .col { width: 100%; padding: 0; }
	.section-content-with-image .container > .col + .col { margin-top: 36px; }
	.section-content-with-image .section-title,
	.section-content-with-image .section-title * { font-size: 30px; }
	.section-content-with-image a.content-link { font-size: 21px; margin-top: 28px; }

	/* Iconed columns — the grid is a flex row on desktop, so wrap it. */
	.section-iconed-column .columns-grid { flex-wrap: wrap; }
	.section-iconed-column .columns-grid .column {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 20px;
	}
	.section-iconed-column .section-title,
	.section-iconed-column .section-title * { font-size: 30px; margin-bottom: 40px; }
	.section-iconed-column .column-title { margin: 18px 0 32px; }

	/* Category columns */
	.section-category-columns .category-inner { padding: 30px 16px 22px; }
	.section-category-columns .category-inner h3.category-title { font-size: 26px; margin-bottom: 22px; }

	.section-google-reviews { padding: 70px 20px; }

	.section-contact-form { padding: 90px 20px 80px; }
	.section-contact-form .section-head { margin-bottom: 36px !important; }
	.section-contact-form .gform_footer { padding-top: 45px !important; }
}

/* --- <= 767px : phone. Everything becomes a single column. ------------- */

@media (max-width: 1300px) {
	.section-category-slider .category-slider-arrows {
		margin-left: unset!important;
		position: unset!important;
		width: fit-content!important;
	}
	.section-category-slider .category-slider-arrows button.slider-next {
		margin-left: 30px;
	}
	.section-title, .section-title p {
		font-size: 30px;
	}
	.site-btn {
		font-size: 14px;
		padding: 9px 30px;
	}
}

@media (max-width: 1110px) {
	.header .topbar .container.d-flex {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
}
@media (max-width: 767px) {
	:root { --section-spacing: 48px; }

	/* A wide inline style or long word shouldn't be able to scroll the page. */
	body { overflow-x: hidden; }

	p { font-size: 17px; }
	.section-title, .section-title p { font-size: 26px; }

	.site-btn { font-size: 16px; padding: 9px 26px; }

	/* Header — burger + drawer (inherited from the 1024 breakpoint). */
	.header .topbar .container { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
	.header .topbar-right { flex-direction: column; gap: 10px; }
	header .topbar p { font-size: 15px; }
	header .main-header { padding: 14px 0; }

	/* Hero — the desktop clip-path notch is sized in fixed px and overshoots
	   a narrow viewport, so it is redrawn smaller here. */
	.section-hero {
		padding: 70px 16px 70px;
		clip-path: polygon(
			0 0,
			100% 0,
			100% calc(100% - 55px),
			calc(50% + 95px) calc(100% - 55px),
			50% 100%,
			calc(50% - 95px) calc(100% - 55px),
			0 calc(100% - 55px)
		);
		margin-bottom: -55px;
	}
	.section-hero .page-title { font-size: 30px; }
	.section-hero .content p { font-size: 17px; }
	.section-hero .social-links { margin-bottom: 24px; }
	.section-hero .social-links li { margin: 0 6px; }
	.section-hero .social-links li a { width: 42px; }
	.section-hero .hero-polygon { margin-top: 70px; margin-bottom: -60px; }
	.section-hero .polygon-text { font-size: 16px; }

	/* Content with image */
	.section-content-with-image { padding: 55px 16px 30px; }
	.section-content-with-image.has-top-border { border-top-width: 12px; }
	.section-content-with-image .section-title { margin-bottom: 24px; }
	.section-content-with-image .section-title,
	.section-content-with-image .section-title * { font-size: 26px; }
	.section-content-with-image a.content-link { font-size: 18px; margin-top: 22px; }
	.section-content-with-image a.content-link:before { margin-right: 12px; }

	/* Iconed columns */
	.section-iconed-column { padding-bottom: 30px; }
	.section-iconed-column .columns-grid .column {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
		margin-bottom: 10px;
	}
	.section-iconed-column .section-title,
	.section-iconed-column .section-title * { font-size: 26px; margin-bottom: 28px; }
	.section-iconed-column .columns-grid .column .column-icon { min-height: 64px; }
	.section-iconed-column .column-title { margin: 14px 0 22px; }
	.section-iconed-column .btn-group { margin-top: 32px; }

	/* Category columns — the reveal-on-hover overlay never fires on touch,
	   so show the tint and the button outright. */
	.section-category-columns { padding: 30px 0; }
	.section-category-columns .category-column { aspect-ratio: 16 / 11; }
	.section-category-columns .category-inner { background-color: rgba(236, 174, 82, .8); }
	.section-category-columns .site-btn { opacity: 1; }
	.section-category-columns .category-inner h3.category-title { font-size: 22px; max-width: 100%; margin-bottom: 18px; }

	/* Category slider — park the arrows under the track. */
	.section-category-slider .content { margin-bottom: 28px; }
	.section-category-slider .category-slider-arrows {
		position: static;
		width: 100%;
		margin: 18px 0 0;
		justify-content: center;
		gap: 40px;
	}
	.section-category-slider .category-slider .slide .slide-content { padding: 18px 8px 0; }

	/* Google reviews */
	.section-google-reviews { padding: 50px 0; }
	.section-google-reviews .section-head { margin-bottom: 28px; }
	.section-google-reviews .google-wordmark { font-size: 26px; }
	.section-google-reviews .review-card { padding: 18px; }
	.section-google-reviews .reviews-score { margin-top: 26px; font-size: 15px; }

	/* Contact form */
	.section-contact-form { padding: 55px 16px 50px; }
	.section-contact-form .section-head { margin-bottom: 26px !important; }
	.section-contact-form form textarea { height: 120px !important; }
	.section-contact-form .gform_fields { grid-column-gap: 16px !important; grid-row-gap: 16px !important; }
	.section-contact-form .gform_footer { padding-top: 28px !important; }
	.section-contact-form form .gform_button { padding: 9px 40px !important; font-size: 16px !important; }

	/* Footer */
	.footer-section .main-footer { padding-block: 30px 26px; }
	.footer-section nav.footer-nav { margin-bottom: 18px; }
	.footer-section .footer-content { margin-top: 18px; }
	.footer-section .footer-content p { font-size: 15px; }
	.footer-section .bottom-links li a,
	.footer-section .bottom-text-col p { font-size: 15px; }

	/* Modal */
	.modal-box { width: 92%; }
}

/* --- <= 480px : small phones ------------------------------------------- */
@media (max-width: 480px) {
	.section-title, .section-title p { font-size: 23px; }

	.section-hero { padding: 55px 14px 60px; }
	.section-hero .page-title { font-size: 26px; }
	.section-hero .social-links li a { width: 38px; }

	.section-content-with-image .section-title,
	.section-content-with-image .section-title *,
	.section-iconed-column .section-title,
	.section-iconed-column .section-title * { font-size: 23px; }

	.section-category-columns .category-inner h3.category-title { font-size: 20px; }

	.section-google-reviews .google-wordmark { font-size: 23px; }
	.section-google-reviews .review-text { font-size: 14px; }

	.section-contact-form form .gform_button { width: 100%; justify-content: center; padding: 11px 20px !important; }

	.footer-section .footer-phone { font-size: 19px; }
	.footer-section .bottom-links { gap: 14px; }
}