/* ==========================================================================
   GVL Theme - Greater Vancouver Laundry & Linen Service
   Design rules (see .cursor/skills/website-design/SKILL.md):
   - Zero border-radius anywhere. Sharp rectangular geometry.
   - Palette: #14007D (navy), #736996 (purple), white, near-black, light grey.
   - Montserrat only. Hover transitions <=200ms, color-only.
   - Flat surfaces and 1px borders instead of drop shadows.
   ========================================================================== */

:root {
	--gvl-navy: #14007d;
	--gvl-navy-dark: #0e0059;
	--gvl-purple: #736996;
	--gvl-purple-light: #a89fc0;
	--gvl-ink: #1d1d26;
	--gvl-grey: #f4f4f7;
	--gvl-line: #dddde6;
	--gvl-white: #ffffff;
	--gvl-font: 'Montserrat', Arial, Helvetica, sans-serif;
}

body {
	font-family: var(--gvl-font);
	color: var(--gvl-ink);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--gvl-font);
	color: var(--gvl-ink);
	line-height: 1.25;
	font-weight: 700;
}

a {
	color: var(--gvl-navy);
	transition: color 0.18s ease;
}

a:hover {
	color: var(--gvl-purple);
}

/* --------------------------------------------------------------------------
   Hard rule: no rounded corners. Override Elementor, Gravity Forms, UAE/HFE.
   -------------------------------------------------------------------------- */
button,
input,
select,
textarea,
img,
.elementor-button,
.elementor-widget-image img,
.gform_wrapper input,
.gform_wrapper select,
.gform_wrapper textarea,
.gform_wrapper .gform_button,
.gform_wrapper .gform_footer button,
.hfe-nav-menu a,
.gvl-btn,
.gvl-card,
.gvl-chip,
.gvl-modal__box {
	border-radius: 0 !important;
}

/* --------------------------------------------------------------------------
   Buttons - solid rectangles, color-shift hover, optional shine sweep.
   -------------------------------------------------------------------------- */
.gvl-btn,
.elementor-button,
.gform_wrapper .gform_button {
	display: inline-block;
	position: relative;
	overflow: hidden;
	background-color: var(--gvl-navy);
	color: var(--gvl-white);
	font-family: var(--gvl-font);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1;
	padding: 16px 30px;
	border: 1px solid var(--gvl-navy);
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.gvl-btn:hover,
.elementor-button:hover,
.gform_wrapper .gform_button:hover {
	background-color: var(--gvl-purple);
	border-color: var(--gvl-purple);
	color: var(--gvl-white);
}

/* Secondary (outline on light) */
.gvl-btn.gvl-btn--ghost {
	background-color: transparent;
	color: var(--gvl-navy);
}

.gvl-btn.gvl-btn--ghost:hover {
	background-color: var(--gvl-navy);
	color: var(--gvl-white);
}

/* Inverse (outline on navy background) */
.gvl-btn.gvl-btn--inverse {
	background-color: transparent;
	border-color: var(--gvl-white);
	color: var(--gvl-white);
}

.gvl-btn.gvl-btn--inverse:hover {
	background-color: var(--gvl-white);
	color: var(--gvl-navy);
	border-color: var(--gvl-white);
}

/* CTA shine sweep - the one sanctioned accent animation. Scoped strictly to
   the .elementor-button (never the wider widget container) and clipped to it,
   so the sweep stays on the button and never streaks across the bar. */
@keyframes gvl-cta-shine {
	0% { left: -60%; }
	55%, 100% { left: 140%; }
}

.gvl-shine .elementor-button::before {
	content: '';
	position: absolute;
	top: -2px;
	bottom: -2px;
	left: -60%;
	z-index: 1;
	width: 45%;
	background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
	transform: skewX(-18deg);
	pointer-events: none;
	animation: gvl-cta-shine 3.4s ease-in-out 0s infinite;
}

.gvl-shine .elementor-button {
	position: relative;
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.gvl-shine .elementor-button::before {
		animation: none;
	}
}

/* --------------------------------------------------------------------------
   Header

   The whole #masthead is sticky so the bar never scrolls out of view. A
   previous attempt set position:sticky on .gvl-header-main alone, but its
   containing block (#masthead / .elementor-2050) is only as tall as the
   header itself, so the "sticky" element scrolled away with its parent.
   #masthead's containing block is #page (full page height, no clipping),
   so sticky works there. On scroll the body gets .gvl-scrolled and the
   bars shrink (top utility bar ~half, navigation row ~30%).
   -------------------------------------------------------------------------- */
/* .ehf-header #masthead { position: relative } ships in the Header Footer
   Elementor plugin CSS and outranks a bare #masthead selector, so match its
   specificity (and use !important) to win. */
.ehf-header #masthead,
#masthead {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 0;
	z-index: 999;
	background: var(--gvl-white);
}

body.admin-bar .ehf-header #masthead,
body.admin-bar #masthead {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .ehf-header #masthead,
	body.admin-bar #masthead {
		top: 46px;
	}
}

.gvl-topbar {
	min-height: 0;
}

.gvl-topbar,
.gvl-topbar > .e-con-inner,
.gvl-header-main,
.gvl-header-main > .e-con-inner,
.gvl-header-cta .elementor-button,
.gvl-logo img {
	transition: padding 0.2s ease, max-width 0.2s ease, font-size 0.2s ease, max-height 0.2s ease;
}

.gvl-topbar__call {
	color: var(--gvl-white);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.gvl-topbar__call a {
	color: var(--gvl-white);
	text-decoration: none;
	font-weight: 700;
}

.gvl-topbar__call a:hover {
	color: var(--gvl-purple-light);
}

.gvl-header-main {
	position: relative;
	z-index: 999;
	border-bottom: 1px solid var(--gvl-line);
	gap: 24px;
}

/* Shrunk state once the page is scrolled. */
body.gvl-scrolled .gvl-topbar > .e-con-inner {
	padding-top: 3px !important;
	padding-bottom: 3px !important;
}

body.gvl-scrolled .gvl-topbar__call {
	font-size: 13px;
}

body.gvl-scrolled .gvl-header-cta .elementor-button {
	padding-top: 6px !important;
	padding-bottom: 6px !important;
	font-size: 11px;
}

body.gvl-scrolled .gvl-header-main > .e-con-inner {
	padding-top: 8px !important;
	padding-bottom: 8px !important;
}

body.gvl-scrolled .gvl-logo,
body.gvl-scrolled .gvl-logo img {
	max-width: 140px !important;
}

.gvl-logo {
	flex: 0 0 auto;
	width: auto !important;
	max-width: 200px;
}

.gvl-logo img {
	max-width: 200px;
	height: auto;
}

.gvl-nav {
	flex: 1 1 auto;
	width: auto !important;
	min-width: 0;
}

.gvl-topbar__right {
	flex: 0 0 auto;
	width: auto !important;
}

.gvl-header-cta {
	flex: 0 0 auto;
	width: auto !important;
}

/* Top-bar quote button: inverse outline so it reads on navy. */
.gvl-header-cta .elementor-button {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: var(--gvl-white);
	font-size: 12px;
	padding: 9px 18px;
}

.gvl-header-cta .elementor-button:hover {
	background-color: var(--gvl-white);
	border-color: var(--gvl-white);
	color: var(--gvl-navy);
}

.gvl-header-cta--mobile {
	display: none;
}

/* Elementor 4.x grid-0 social widgets can expand to full bar width without
   explicit icon sizing (especially when Avada CSS also loads on blog routes). */
.gvl-topbar .elementor-widget-social-icons,
.gvl-footer .elementor-widget-social-icons,
body.gvl-blog-chrome #masthead .elementor-widget-social-icons,
body.gvl-blog-chrome .gvl-footer .elementor-widget-social-icons {
	width: auto !important;
	max-width: none;
}

.gvl-topbar .elementor-social-icons-wrapper,
.gvl-footer .elementor-social-icons-wrapper,
body.gvl-blog-chrome #masthead .elementor-social-icons-wrapper,
body.gvl-blog-chrome .gvl-footer .elementor-social-icons-wrapper {
	display: inline-flex !important;
	width: auto !important;
	flex-wrap: nowrap;
	gap: var(--grid-column-gap, 6px);
}

.gvl-topbar .elementor-icon.elementor-social-icon,
.gvl-footer .elementor-icon.elementor-social-icon,
body.gvl-blog-chrome #masthead .elementor-icon.elementor-social-icon,
body.gvl-blog-chrome .gvl-footer .elementor-icon.elementor-social-icon {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-size: var(--icon-size, 15px) !important;
	width: calc(var(--icon-size, 15px) + 2 * var(--icon-padding, 0.4em)) !important;
	height: calc(var(--icon-size, 15px) + 2 * var(--icon-padding, 0.4em)) !important;
	line-height: 1 !important;
	flex: 0 0 auto;
}

.gvl-topbar .elementor-social-icon svg,
.gvl-footer .elementor-social-icon svg,
body.gvl-blog-chrome #masthead .elementor-social-icon svg,
body.gvl-blog-chrome .gvl-footer .elementor-social-icon svg {
	width: var(--icon-size, 15px) !important;
	height: var(--icon-size, 15px) !important;
	max-width: none !important;
	max-height: none !important;
}

/* HFE navigation menu - flat, uppercase, navy hover underline. */
.gvl-nav .hfe-nav-menu {
	font-family: var(--gvl-font);
}

.gvl-nav .hfe-nav-menu .menu-item a.hfe-menu-item {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--gvl-ink);
	padding: 10px 11px;
	transition: color 0.18s ease;
}

@media (min-width: 1025px) {
	.gvl-nav .hfe-nav-menu {
		flex-wrap: nowrap;
	}

	.gvl-nav .hfe-nav-menu .menu-item a.hfe-menu-item {
		white-space: nowrap;
	}
}

/* Mobile/tablet dropdown panel */
@media (max-width: 1024px) {
	.gvl-nav nav.hfe-dropdown {
		background: var(--gvl-white);
		border: 1px solid var(--gvl-line);
	}

	.gvl-nav nav.hfe-dropdown .menu-item a.hfe-menu-item,
	.gvl-nav nav.hfe-dropdown .menu-item a.hfe-sub-menu-item {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 13px 18px;
		border-bottom: 1px solid var(--gvl-grey);
	}

	/* Submenu (dropdown) arrow: pin it to the far right of the row instead of
	   letting it wrap under the label text. */
	.gvl-nav nav.hfe-dropdown .menu-item a.hfe-menu-item .hfe-menu-toggle,
	.gvl-nav nav.hfe-dropdown .menu-item a.hfe-menu-item .sub-arrow {
		margin-left: auto;
		flex: 0 0 auto;
		position: static;
		top: auto;
		right: auto;
		transform: none;
		display: inline-flex;
		align-items: center;
	}
}

.gvl-nav .hfe-nav-menu .menu-item a.hfe-menu-item:hover,
.gvl-nav .hfe-nav-menu .menu-item.current-menu-item a.hfe-menu-item,
.gvl-nav .hfe-nav-menu .menu-item.current-menu-ancestor a.hfe-menu-item {
	color: var(--gvl-navy);
}

.gvl-nav .hfe-nav-menu .sub-menu {
	background: var(--gvl-white);
	border: 1px solid var(--gvl-line);
	border-radius: 0 !important;
}

.gvl-nav .hfe-nav-menu .sub-menu .menu-item a.hfe-sub-menu-item {
	font-size: 13px;
	font-weight: 500;
	text-transform: none;
	color: var(--gvl-ink);
	padding: 10px 16px;
}

.gvl-nav .hfe-nav-menu .sub-menu .menu-item a.hfe-sub-menu-item:hover {
	background: var(--gvl-grey);
	color: var(--gvl-navy);
}

.gvl-nav .hfe-nav-menu__toggle {
	color: var(--gvl-navy);
	border: 1px solid var(--gvl-line);
	border-radius: 0 !important;
}

.gvl-header-cta .elementor-button {
	font-size: 13px;
	padding: 14px 22px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
	.gvl-footer > .e-con-inner > .e-con {
		flex: 1 1 0;
		width: auto !important;
		min-width: 0;
	}

	.gvl-footer > .e-con-inner > .e-con:first-child {
		flex: 1.4 1 0;
	}
}

@media (max-width: 767px) {
	.gvl-footer > .e-con-inner > .e-con {
		width: 100% !important;
	}
}

.gvl-footer h3.elementor-heading-title,
.gvl-footer .gvl-footer__heading h3 {
	color: var(--gvl-white);
	font-size: 17px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.gvl-footer__address {
	font-style: normal;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 16px;
}

.gvl-footer__address a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.gvl-footer__address a:hover {
	color: var(--gvl-white);
}

.gvl-footer__label {
	font-weight: 700;
	color: var(--gvl-white);
}

.gvl-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gvl-footer__list li {
	margin: 0 0 8px;
}

.gvl-footer__list a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.18s ease;
}

.gvl-footer__list a:hover {
	color: var(--gvl-white);
}

.gvl-footer-bottom__copy,
.gvl-footer-bottom__cta {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.gvl-footer-bottom__cta a {
	color: var(--gvl-white);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	transition: color 0.18s ease, border-color 0.18s ease;
}

.gvl-footer-bottom__cta a:hover {
	color: var(--gvl-purple-light);
	border-color: var(--gvl-purple-light);
}

/* --------------------------------------------------------------------------
   Icons - small accents only (~20-24px), recolored via CSS mask.
   Usage: <span class="gvl-icon" style="--icon:url('/wp-content/themes/gvl-theme/assets/icons/iron.svg')"></span>
   -------------------------------------------------------------------------- */
.gvl-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	background-color: var(--gvl-navy);
	-webkit-mask: var(--icon) no-repeat center / contain;
	mask: var(--icon) no-repeat center / contain;
	vertical-align: middle;
}

.gvl-icon--white { background-color: var(--gvl-white); }
.gvl-icon--purple { background-color: var(--gvl-purple); }

/* Square white chip holding a small icon (service cards, feature rows). */
.gvl-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: var(--gvl-white);
	border: 1px solid var(--gvl-line);
}

/* --------------------------------------------------------------------------
   Service card - full-bleed photo, dark bottom overlay, icon chip, arrow link.
   Built as an Elementor container carrying .gvl-card; inner markup via widgets.
   -------------------------------------------------------------------------- */
.gvl-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 380px;
	background-size: cover;
	background-position: center;
	border: 1px solid var(--gvl-line);
}

.gvl-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 0, 60, 0.05) 35%, rgba(13, 5, 38, 0.88) 100%);
	pointer-events: none;
	transition: background-color 0.18s ease;
}

.gvl-card > * {
	position: relative;
	z-index: 1;
}

.gvl-card .gvl-chip {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	border: none;
}

.gvl-card__tag {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 2;
	background: var(--gvl-navy);
	color: var(--gvl-white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 12px;
}

.gvl-card__body {
	padding: 24px;
	color: var(--gvl-white);
}

.gvl-card__body h3 {
	color: var(--gvl-white);
	font-size: 22px;
	margin: 0 0 10px;
}

.gvl-card__body p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	margin: 0 0 16px;
}

.gvl-card__link {
	color: var(--gvl-white);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	padding-bottom: 3px;
	transition: color 0.18s ease, border-color 0.18s ease;
}

.gvl-card__link:hover {
	color: var(--gvl-purple-light);
	border-color: var(--gvl-purple-light);
}

/* Stretch a link placed over the whole card. */
.gvl-card__cover-link {
	position: absolute !important;
	inset: 0;
	z-index: 3;
}

/* The card's inner markup ships in one HTML widget; keep it static so the
   chip anchors to the card itself, and lift the body above the overlay. */
.gvl-card .elementor-widget-html,
.gvl-card .elementor-widget-html .elementor-widget-container {
	position: static;
}

.gvl-card__body {
	position: relative;
	z-index: 1;
}

/* --------------------------------------------------------------------------
   Icon feature row (advantages etc.) - icon chip left, text right.
   -------------------------------------------------------------------------- */
.gvl-feature {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.gvl-feature .gvl-chip {
	background: var(--gvl-grey);
	border: 1px solid var(--gvl-line);
}

/* --------------------------------------------------------------------------
   Scroll reveal - disabled. Content is shown immediately (the scroll-in
   fade/slide felt janky), so .gvl-reveal is now a no-op everywhere.
   -------------------------------------------------------------------------- */
.gvl-reveal,
.gvl-reveal.is-visible {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

/* --------------------------------------------------------------------------
   Quote popup modal.
   -------------------------------------------------------------------------- */
.gvl-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.gvl-modal[hidden] {
	display: none;
}

.gvl-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(13, 5, 38, 0.72);
}

.gvl-modal__box {
	position: relative;
	z-index: 1;
	background: var(--gvl-white);
	border-top: 4px solid var(--gvl-navy);
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 36px 36px 30px;
}

.gvl-modal__close {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: none;
	font-size: 26px;
	line-height: 1;
	text-align: center;
	color: var(--gvl-ink);
	cursor: pointer;
	transition: color 0.18s ease;
}

.gvl-modal__close:hover {
	color: var(--gvl-purple);
}

.gvl-modal__title {
	margin: 0 0 6px;
	font-size: 26px;
	color: var(--gvl-navy);
}

.gvl-modal__sub {
	margin: 0 0 18px;
	font-size: 14px;
	color: var(--gvl-ink);
}

.gvl-modal__sub a {
	font-weight: 700;
	text-decoration: none;
}

body.gvl-modal-open {
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   Gravity Forms - flat, rectangular, brand colors.
   -------------------------------------------------------------------------- */
.gform_wrapper input[type='text'],
.gform_wrapper input[type='email'],
.gform_wrapper input[type='tel'],
.gform_wrapper textarea,
.gform_wrapper select {
	border: 1px solid var(--gvl-line);
	background: var(--gvl-white);
	font-family: var(--gvl-font);
	font-size: 15px;
	padding: 11px 12px;
	transition: border-color 0.18s ease;
}

.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
	border-color: var(--gvl-navy);
	outline: none;
}

.gform_wrapper .gfield_label {
	font-family: var(--gvl-font);
	font-weight: 600;
	font-size: 14px;
	color: var(--gvl-ink);
}

.gform_wrapper .gfield_required {
	color: var(--gvl-purple);
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.gvl-bg-grey { background-color: var(--gvl-grey); }
.gvl-bg-navy { background-color: var(--gvl-navy); }

.gvl-bg-navy h1, .gvl-bg-navy h2, .gvl-bg-navy h3, .gvl-bg-navy p {
	color: var(--gvl-white);
}

.gvl-eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gvl-purple);
	margin-bottom: 10px;
}

.gvl-eyebrow--light {
	color: rgba(255, 255, 255, 0.78);
}

/* --------------------------------------------------------------------------
   Homepage sections
   -------------------------------------------------------------------------- */
.gvl-hero .elementor-widget-heading,
.gvl-hero .elementor-widget-text-editor {
	max-width: 760px !important;
}

.gvl-hero h1 {
	font-size: 44px;
	line-height: 1.16;
	font-weight: 800;
	margin: 0 0 18px;
}

.gvl-hero__sub p {
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 767px) {
	.gvl-hero h1 {
		font-size: 30px;
	}

	.gvl-hero__sub p {
		font-size: 16px;
	}
}

/* Advantages columns */
.gvl-feature__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.gvl-feature__head h3 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--gvl-navy);
}

.gvl-advantage {
	background: var(--gvl-white);
}

.gvl-advantage__intro {
	color: var(--gvl-navy);
	font-weight: 600;
	margin: 0 0 10px;
}

.gvl-list {
	margin: 0;
	padding-left: 20px;
}

.gvl-list li {
	margin: 10px 0;
	font-size: 15px;
	line-height: 1.6;
}

/* Checklists with custom SVG icons */
.gvl-checklist-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gvl-checklist__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}

.gvl-checklist__item:last-child {
	margin-bottom: 0;
}

.gvl-checklist__icon {
	flex-shrink: 0;
	line-height: 0;
	margin-top: 2px;
}

.gvl-checklist__icon img {
	display: block;
	width: 22px;
	height: 22px;
}

.gvl-checklist__text,
.gvl-checklist .elementor-icon-list-text {
	font-size: 15px;
	line-height: 1.6;
}

/* Long lists of short items flow into two columns on larger screens */
@media (min-width: 768px) {
	.gvl-checklist--cols.gvl-checklist-items,
	.gvl-checklist--cols .elementor-icon-list-items {
		columns: 2;
		column-gap: 48px;
	}

	.gvl-checklist--cols .gvl-checklist__item,
	.gvl-checklist--cols .elementor-icon-list-item {
		break-inside: avoid;
	}
}

/* Framed media */
.gvl-photo-frame img {
	width: 100%;
	border: 1px solid var(--gvl-line);
}

.gvl-video-frame iframe,
.gvl-video-frame .elementor-video {
	border: 1px solid var(--gvl-line);
}

/* Long-form SEO copy */
.gvl-prose {
	max-width: 860px !important;
	margin-left: auto;
	margin-right: auto;
}

.gvl-prose p {
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 1.1em;
}

.gvl-prose p:last-child {
	margin-bottom: 0;
}

.gvl-prose a {
	color: var(--gvl-navy);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gvl-prose a:hover {
	color: var(--gvl-purple);
}

.gvl-prose--center p {
	text-align: center;
}

/* CTA bands (navy / photo background) */
.gvl-cta-band h2 {
	margin: 0 0 14px;
}

.gvl-cta-band .elementor-widget-text-editor {
	max-width: 820px !important;
	margin-left: auto;
	margin-right: auto;
}

.gvl-on-dark p {
	line-height: 1.7;
}

.gvl-on-dark a {
	color: var(--gvl-white);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gvl-on-dark a:hover {
	color: var(--gvl-purple-light);
}

/* Image-backed service sections on the Linen Service page */
.gvl-service-hero-band h2 {
	color: var(--gvl-white);
	margin-bottom: 12px;
}

.gvl-service-hero-band .gvl-prose {
	color: rgba(255, 255, 255, 0.9);
}

.gvl-service-hero-band .gvl-prose h3 {
	color: inherit;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 28px;
	text-align: center;
}

.gvl-service-hero-band .gvl-checklist-wrap {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.36);
	padding: 28px;
}

@media (max-width: 767px) {
	.gvl-service-hero-band .gvl-checklist-wrap {
		padding: 22px;
	}
}

/* White solid button for navy bands (applied to the button widget) */
.gvl-btn--white .elementor-button {
	background-color: var(--gvl-white);
	border-color: var(--gvl-white);
	color: var(--gvl-navy);
}

.gvl-btn--white .elementor-button:hover {
	background-color: #E8E8F5;
	border-color: #E8E8F5;
	color: var(--gvl-navy);
}

/* Outline button widgets on dark backgrounds */
.gvl-btn--inverse .elementor-button {
	background-color: transparent;
	border: 2px solid var(--gvl-white);
	color: var(--gvl-white);
}

.gvl-btn--inverse .elementor-button:hover {
	background-color: var(--gvl-white);
	color: var(--gvl-navy);
}

/* Card rows: Elementor % widths + gap overflow the row, so size them here. */
@media (min-width: 1025px) {
	.gvl-services-row > .e-con {
		flex: 1 1 0;
		width: auto !important;
		min-width: 0;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.gvl-services-row > .e-con {
		width: calc(50% - 12px) !important;
	}
}

@media (min-width: 768px) {
	.gvl-benefits-row > .e-con {
		width: calc(50% - 12px) !important;
	}
}

/* Card rows: 4-across services, 2-across benefit blocks. Elementor child
   widths + flex gap overflow 100%, so distribute explicitly. */
@media (min-width: 1025px) {
	.gvl-services-row > .e-con {
		flex: 1 1 0;
		width: auto !important;
		min-width: 0;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.gvl-services-row > .e-con {
		width: calc(50% - 12px) !important;
	}
}

@media (min-width: 768px) {
	.gvl-benefits-row > .e-con {
		width: calc(50% - 12px) !important;
	}
}

/* --------------------------------------------------------------------------
   Mobile/tablet header layout: keep bars on one row (logo left, toggle right),
   full-width dropdown panel anchored under the sticky header.
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.gvl-topbar,
	.gvl-topbar > .e-con-inner,
	.gvl-header-main,
	.gvl-header-main > .e-con-inner,
	.gvl-topbar__right,
	.gvl-topbar__right > .e-con-inner {
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: center;
		justify-content: space-between;
	}

	.gvl-topbar__call {
		font-size: 13px;
		white-space: nowrap;
	}

	.gvl-header-cta--topbar {
		display: none;
	}

	.gvl-header-cta--mobile {
		flex: 0 0 auto;
		width: auto !important;
		margin-left: auto;
		/* Elementor stretches widgets (align-self:stretch + container height:100%),
		   which pins the button to the top of the row on tablet/mobile. */
		align-self: center !important;
	}

	.gvl-header-cta--mobile .elementor-widget-container {
		display: flex;
		align-items: center;
		height: auto !important;
	}

	.gvl-header-cta--mobile .elementor-button {
		background-color: var(--gvl-navy);
		border-color: var(--gvl-navy);
		color: var(--gvl-white);
		font-size: 13px;
		padding: 13px 18px;
		white-space: nowrap;
	}

	body.gvl-scrolled .gvl-header-cta--mobile .elementor-button {
		font-size: 12px;
		padding: 10px 14px !important;
	}

	.gvl-header-cta--mobile .elementor-button:hover {
		background-color: var(--gvl-purple);
		border-color: var(--gvl-purple);
		color: var(--gvl-white);
	}

	.gvl-logo,
	.gvl-logo img {
		max-width: 170px;
	}

	.gvl-nav {
		flex: 0 0 auto;
		width: auto !important;
	}

	.gvl-nav .hfe-nav-menu__toggle {
		margin-left: 10px;
	}

	.gvl-nav nav.hfe-dropdown {
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   No horizontal scroll on small screens. overflow-x lives on the root element
   (not body) so the sticky header keeps pinning to the viewport.
   -------------------------------------------------------------------------- */
html {
	overflow-x: hidden;
	max-width: 100%;
}

/* Small phones: shrink the top-bar call + main-row quote CTA so both header
   rows fit without horizontal overflow. Larger screens keep the sizes above. */
@media (max-width: 600px) {
	.gvl-topbar > .e-con-inner {
		padding-left: 12px !important;
		padding-right: 12px !important;
		gap: 8px;
	}

	.gvl-header-main > .e-con-inner {
		padding-left: 12px !important;
		padding-right: 12px !important;
		gap: 8px;
	}

	.gvl-topbar__call {
		font-size: 11px;
	}

	.gvl-logo,
	.gvl-logo img {
		max-width: 150px;
	}

	.gvl-header-cta--mobile .elementor-button {
		font-size: 11px;
		letter-spacing: 0.02em;
		padding: 10px 12px;
	}

	body.gvl-scrolled .gvl-header-cta--mobile .elementor-button {
		font-size: 10px;
		padding: 8px 10px !important;
	}

	.gvl-topbar .elementor-social-icons-wrapper {
		gap: 4px;
	}
}

@media (max-width: 400px) {
	.gvl-header-main > .e-con-inner {
		padding-left: 10px !important;
		padding-right: 10px !important;
		gap: 6px;
	}

	.gvl-topbar__call {
		font-size: 10px;
	}

	.gvl-logo,
	.gvl-logo img {
		max-width: 140px;
	}

	.gvl-nav .hfe-nav-menu__toggle {
		margin-left: 6px;
	}

	.gvl-header-cta--mobile .elementor-button {
		font-size: 10px;
		letter-spacing: 0;
		padding: 8px 9px;
	}

	body.gvl-scrolled .gvl-header-cta--mobile .elementor-button {
		font-size: 9px;
		padding: 7px 8px !important;
	}
}

/* Prose headings + media (converted pages keep h3/h4 inline in prose) */
.gvl-prose h2 {
	font-size: 28px;
	line-height: 1.25;
	margin: 1.4em 0 0.6em;
}

.gvl-prose h3 {
	font-size: 20px;
	line-height: 1.3;
	margin: 1.3em 0 0.5em;
}

.gvl-prose h4 {
	font-size: 17px;
	margin: 1.2em 0 0.5em;
}

.gvl-prose > .elementor-widget-container > *:first-child,
.gvl-prose h2:first-child,
.gvl-prose h3:first-child {
	margin-top: 0;
}

.gvl-prose img {
	max-width: 100%;
	height: auto;
	border: 1px solid var(--gvl-line);
	margin: 10px 0;
}

/* Standalone images sit centered; decorative PNGs (transparent badges/
   circle graphics from the old site) get no frame and a sane max size */
.gvl-prose p > img:only-child {
	display: block;
	margin: 18px auto;
}

.gvl-prose img[src$=".png"] {
	border: none;
	max-width: min(380px, 100%);
}

.gvl-prose ul,
.gvl-prose ol {
	margin: 0 0 1.1em;
	padding-left: 22px;
}

.gvl-prose li {
	margin: 8px 0;
	line-height: 1.6;
}

/* Icon checklists embedded inside prose keep their flat, bullet-free layout */
.gvl-prose .gvl-checklist-items {
	list-style: none;
	margin: 0 0 1.1em;
	padding-left: 0;
}

.gvl-prose .gvl-checklist__item {
	margin: 0 0 12px;
}

.gvl-prose .gvl-checklist__item:last-child {
	margin-bottom: 0;
}

.gvl-prose .fusion-checklist {
	list-style: none;
	padding-left: 0;
}

.gvl-prose .fusion-checklist .fusion-li-item {
	list-style: none;
	position: relative;
	padding-left: 30px;
}

.gvl-prose .fusion-checklist .fusion-li-item::before {
	content: none !important;
	display: none !important;
}

.gvl-prose .fusion-checklist .fusion-li-icon {
	position: absolute;
	top: 0.28em;
	left: 0;
	width: 18px;
	color: var(--gvl-purple);
	font-size: 14px;
	line-height: 1;
	text-align: center;
}

/* Checklist rows on converted pages sit at prose measure */
.gvl-checklist-wrap {
	max-width: 860px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* Contact page */
.gvl-on-page-form {
	max-width: 760px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.gvl-contact-section .gvl-prose--center {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.gvl-contact-info .gvl-contact-h {
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gvl-purple);
	margin: 26px 0 6px;
}

.gvl-contact-info .gvl-contact-h:first-child {
	margin-top: 0;
}

.gvl-contact-info p {
	margin: 0 0 4px;
	line-height: 1.6;
}

.gvl-contact-tel {
	font-size: 24px;
	font-weight: 700;
	color: var(--gvl-navy) !important;
	text-decoration: none !important;
}

.gvl-map-frame {
	border: 1px solid var(--gvl-line);
	margin-top: 28px;
	line-height: 0;
}

/* FAQ accordion */
.gvl-accordion .elementor-accordion-item {
	background: #fff;
	border: 1px solid var(--gvl-line) !important;
	border-radius: 0 !important;
	margin-bottom: 10px;
}

.gvl-accordion .elementor-tab-title {
	font-family: var(--gvl-font);
	font-weight: 700;
	font-size: 17px;
	color: var(--gvl-navy);
	padding: 18px 22px;
}

.gvl-accordion .elementor-tab-title.elementor-active {
	border-bottom: 1px solid var(--gvl-line);
}

.gvl-accordion .elementor-tab-title .elementor-accordion-icon {
	color: var(--gvl-purple);
	font-size: 14px;
}

.gvl-accordion .elementor-tab-content {
	padding: 20px 22px;
	font-size: 15px;
	line-height: 1.7;
	border-top: none !important;
}

.gvl-accordion .elementor-tab-content a {
	color: var(--gvl-navy);
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Shared enhanced page sections
   -------------------------------------------------------------------------- */
.gvl-feature-band__grid {
	width: 100%;
}

.gvl-feature-card {
	flex: 1 1 0;
	min-width: 0;
}

.gvl-feature-card,
.gvl-feature-card .elementor-widget-html,
.gvl-feature-card .elementor-widget-container,
.gvl-feature-card article {
	height: 100%;
}

.gvl-feature-card article {
	background: var(--gvl-white);
	border: 1px solid var(--gvl-line);
	padding: 24px;
}

.gvl-feature-card h3 {
	margin: 14px 0 8px;
	color: var(--gvl-navy);
	font-size: 20px;
	line-height: 1.25;
}

.gvl-feature-card p {
	margin: 0;
	color: var(--gvl-ink);
	font-size: 15px;
	line-height: 1.6;
}

.gvl-split-section > .e-con-inner {
	align-items: center;
}

.gvl-split-section__copy,
.gvl-split-section__media {
	flex: 1 1 0;
	min-width: 0;
}

.gvl-split-section__copy .elementor-heading-title {
	text-align: left;
}

.gvl-split-section__copy .gvl-prose,
.gvl-split-section__copy .gvl-checklist-wrap {
	max-width: none !important;
	margin-left: 0;
	margin-right: 0;
}

.gvl-split-section__media img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--gvl-line);
}

/* --------------------------------------------------------------------------
   Green initiatives page
   -------------------------------------------------------------------------- */
.gvl-green-intro .gvl-eyebrow,
.gvl-green-grid-section .gvl-eyebrow {
	display: block;
	text-align: center;
}

.gvl-green-intro .gvl-prose--center {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.gvl-green-card-grid {
	width: 100%;
	margin-top: 22px;
}

.gvl-green-card-grid > .e-con {
	flex: 1 1 calc(33.333% - 16px);
	min-width: 0;
}

.gvl-green-card,
.gvl-green-card .elementor-widget-html,
.gvl-green-card .elementor-widget-container,
.gvl-green-card article {
	height: 100%;
}

.gvl-green-card article {
	display: flex;
	flex-direction: column;
	background: var(--gvl-white);
	border: 1px solid var(--gvl-line);
}

.gvl-green-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-bottom: 1px solid var(--gvl-line);
}

.gvl-green-card__body {
	flex: 1;
	padding: 24px;
}

.gvl-green-card__number {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--gvl-purple);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
}

.gvl-green-card__body h3 {
	margin: 0 0 10px;
	color: var(--gvl-navy);
	font-size: 22px;
	line-height: 1.25;
}

.gvl-green-card__body p {
	margin: 0;
	color: var(--gvl-ink);
	font-size: 15px;
	line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Linen service page
   -------------------------------------------------------------------------- */
.gvl-linen-intro > .e-con-inner {
	align-items: center;
}

.gvl-linen-intro__copy,
.gvl-linen-intro__media {
	flex: 1 1 0;
	min-width: 0;
}

.gvl-linen-intro__copy .gvl-prose {
	max-width: none !important;
	margin-left: 0;
	margin-right: 0;
}

.gvl-linen-intro__copy .gvl-prose strong,
.gvl-linen-intro__copy .gvl-prose h3 span {
	color: var(--gvl-navy);
}

.gvl-linen-intro__media img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--gvl-line);
}

.gvl-linen-grid-section .gvl-eyebrow,
.gvl-linen-prose-band .gvl-eyebrow {
	display: block;
	text-align: center;
}

.gvl-linen-prose-band .gvl-prose--center {
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}

.gvl-linen-card-grid {
	width: 100%;
	margin-top: 22px;
}

.gvl-linen-card-grid > .e-con {
	flex: 1 1 0;
	min-width: 0;
}

.gvl-linen-audience-card,
.gvl-linen-audience-card .elementor-widget-html,
.gvl-linen-audience-card .elementor-widget-container,
.gvl-linen-audience-card article,
.gvl-linen-list-card,
.gvl-linen-text-card,
.gvl-linen-text-card .elementor-widget-html,
.gvl-linen-text-card .elementor-widget-container,
.gvl-linen-text-card article {
	height: 100%;
}

.gvl-linen-audience-card article,
.gvl-linen-list-card,
.gvl-linen-text-card article {
	background: var(--gvl-white);
	border: 1px solid var(--gvl-line);
}

.gvl-linen-audience-card article {
	display: flex;
	flex-direction: column;
}

.gvl-linen-audience-card img,
.gvl-linen-list-card article > img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-bottom: 1px solid var(--gvl-line);
}

.gvl-linen-audience-card__body,
.gvl-linen-list-card__body,
.gvl-linen-text-card article {
	padding: 24px;
}

.gvl-linen-audience-card__body h3,
.gvl-linen-list-card__body h3,
.gvl-linen-text-card h3 {
	margin: 12px 0 10px;
	color: var(--gvl-navy);
	font-size: 22px;
	line-height: 1.25;
}

.gvl-linen-audience-card__body p,
.gvl-linen-list-card__body p,
.gvl-linen-text-card p {
	margin: 0;
	color: var(--gvl-ink);
	font-size: 15px;
	line-height: 1.65;
}

.gvl-linen-audience-card__body a,
.gvl-linen-text-card a,
.gvl-linen-prose-band a {
	color: var(--gvl-navy);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.gvl-linen-list-card .gvl-checklist-widget {
	padding: 0 24px 24px;
	max-width: none !important;
	width: 100%;
}

.gvl-linen-list-card .gvl-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 14px;
}

.gvl-linen-list-card .gvl-checklist__item {
	margin: 0;
	padding: 10px 0 0;
	border-top: 1px solid var(--gvl-line);
}

.gvl-linen-promise {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

.gvl-linen-promise__box {
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
	color: var(--gvl-white);
}

.gvl-linen-promise__box h2 {
	margin: 0 0 16px;
	color: var(--gvl-white);
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.12;
}

.gvl-linen-promise__box p {
	max-width: 760px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
	line-height: 1.7;
}

.gvl-linen-why > .e-con-inner {
	align-items: flex-start;
}

.gvl-linen-why__col {
	flex: 1 1 0;
	min-width: 0;
	background: var(--gvl-white);
	border: 1px solid var(--gvl-line);
	padding: 30px;
}

.gvl-linen-why__col .gvl-checklist-widget {
	max-width: none !important;
	width: 100%;
}

.gvl-linen-why__col .gvl-prose {
	max-width: none !important;
	margin-left: 0;
	margin-right: 0;
}

/* --------------------------------------------------------------------------
   Residential laundry page
   -------------------------------------------------------------------------- */
.gvl-res-intro > .e-con-inner,
.gvl-res-prep > .e-con-inner {
	align-items: center;
}

.gvl-res-intro__copy,
.gvl-res-intro__media,
.gvl-res-prep__copy,
.gvl-res-prep__media {
	flex: 1 1 0;
	min-width: 0;
}

.gvl-res-intro__copy .gvl-prose,
.gvl-res-prep__copy .gvl-prose {
	max-width: none !important;
	margin-left: 0;
	margin-right: 0;
}

.gvl-res-intro__media img,
.gvl-res-prep__media img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--gvl-line);
}

.gvl-res-stats {
	width: 100%;
	margin-top: 14px;
}

.gvl-res-stats .elementor-widget-html {
	flex: 1 1 0;
}

.gvl-res-stat {
	height: 100%;
	padding: 18px 20px;
	background: var(--gvl-white);
	border: 1px solid var(--gvl-line);
}

.gvl-res-stat strong {
	display: block;
	color: var(--gvl-navy);
	font-size: 30px;
	line-height: 1;
	margin-bottom: 8px;
}

.gvl-res-stat span {
	display: block;
	color: var(--gvl-ink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gvl-res-service .gvl-eyebrow,
.gvl-res-standards .gvl-eyebrow {
	text-align: center;
}

.gvl-res-card-grid {
	width: 100%;
	margin-top: 18px;
}

.gvl-res-card-grid > .e-con {
	flex: 1 1 0;
	min-width: 0;
}

.gvl-res-card-grid--four > .e-con {
	flex-basis: calc(50% - 12px);
}

.gvl-res-photo-card,
.gvl-res-photo-card .elementor-widget-html,
.gvl-res-photo-card .elementor-widget-container,
.gvl-res-photo-card article {
	height: 100%;
}

.gvl-res-photo-card article {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--gvl-white);
	border: 1px solid var(--gvl-line);
}

.gvl-res-photo-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-bottom: 1px solid var(--gvl-line);
}

.gvl-res-photo-card__label {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 1;
	background: var(--gvl-navy);
	color: var(--gvl-white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	padding: 8px 10px;
	text-transform: uppercase;
}

.gvl-res-photo-card__body {
	flex: 1;
	padding: 22px;
}

.gvl-res-photo-card__body h3 {
	margin: 0 0 10px;
	color: var(--gvl-navy);
	font-size: 20px;
}

.gvl-res-photo-card__body p {
	margin: 0;
	color: var(--gvl-ink);
	font-size: 15px;
	line-height: 1.65;
}

.gvl-res-prep .gvl-checklist-widget {
	width: 100%;
	max-width: none !important;
}

.gvl-res-pricing {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

.gvl-res-pricing .elementor-widget-html {
	width: 100%;
}

.gvl-res-price-box {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	color: var(--gvl-white);
}

.gvl-res-price-box h2 {
	margin: 0 0 12px;
	color: var(--gvl-white);
	font-size: 44px;
}

.gvl-res-price-box p {
	max-width: 680px;
	margin: 0 auto 24px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
	line-height: 1.7;
}

.gvl-res-price-box .gvl-btn {
	background: var(--gvl-white);
	border-color: var(--gvl-white);
	color: var(--gvl-navy);
	text-decoration: none;
}

.gvl-res-price-box .gvl-btn:hover {
	background: #E8E8F5;
	border-color: #E8E8F5;
	color: var(--gvl-navy);
}

.gvl-res-contact > .e-con-inner {
	align-items: flex-start;
}

.gvl-res-contact__copy,
.gvl-res-contact__form {
	flex: 1 1 0;
	min-width: 0;
}

.gvl-res-contact-copy {
	color: var(--gvl-white);
}

.gvl-res-contact-copy h2 {
	margin: 0 0 24px;
	color: var(--gvl-white);
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.15;
}

.gvl-res-contact-copy a {
	color: var(--gvl-white);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.gvl-res-contact-copy p {
	margin: 0 0 12px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
	line-height: 1.65;
}

.gvl-res-contact__form {
	background: var(--gvl-white);
	border: 1px solid rgba(255, 255, 255, 0.24);
	padding: 30px;
	max-width: 620px;
}

.gvl-res-contact__form .gform_wrapper {
	margin: 0;
}

@media (max-width: 1024px) {
	.gvl-feature-card,
	.gvl-split-section__copy,
	.gvl-split-section__media {
		width: 100% !important;
		flex-basis: auto;
	}

	.gvl-green-card-grid > .e-con {
		flex-basis: calc(50% - 12px);
		width: 100% !important;
	}

	.gvl-linen-card-grid > .e-con,
	.gvl-linen-why__col {
		width: 100% !important;
		flex-basis: auto;
	}

	.gvl-res-card-grid > .e-con,
	.gvl-res-card-grid--four > .e-con {
		width: 100% !important;
		flex-basis: auto;
	}
}

@media (max-width: 767px) {
	.gvl-green-card-grid > .e-con {
		flex-basis: auto;
	}

	.gvl-green-card__body {
		padding: 20px;
	}

	.gvl-feature-card article {
		padding: 20px;
	}

	.gvl-linen-audience-card__body,
	.gvl-linen-list-card__body,
	.gvl-linen-text-card article,
	.gvl-linen-why__col {
		padding: 20px;
	}

	.gvl-linen-list-card .gvl-checklist-widget {
		padding: 0 20px 20px;
	}

	.gvl-linen-list-card .gvl-checklist {
		grid-template-columns: 1fr;
	}

	.gvl-res-stat strong,
	.gvl-res-price-box h2 {
		font-size: 34px;
	}

	.gvl-res-photo-card__body {
		padding: 18px;
	}
}
