#contentUnderMenu{padding:0!important}
#main_container{margin-top:0!important}

/* ============================================
		CLARUS MULTIMEDIA - CLEAN THEME OVERRIDE
		Complete rewrite - eliminates all conflicts
		Load this AFTER local-css-35-*.css
		============================================ */
		
/* ROOT VARIABLES - Your Specific Colors */
:root {
	/* Light Mode (Default) */
	--primary-bg: #FFFFFF;
	--secondary-bg: #F8FAFC;
	--card-bg: #F8FAFC;
	--overlay: rgba(255, 255, 255, 0.9);
	
	/* Text Colors */
	--primary-text: #1F2937;
	--secondary-text: #6B7280;
	--heading-color: #1F2937;
	--link-color: #E8711A;
	
	/* Accent Colors */
	--accent-primary: #E8711A;   /* Orange primary */
	--accent-secondary: #0EA5E9; /* Teal secondary */
	--accent-hover: #C95E10;     /* Darker orange hover */
	
	/* UI Elements */
	--border-color: #E5E7EB;
	--border-hover: #D1D5DB;
	
	/* Your specific shadow values */
	--shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	--shadow-sm: 0 0.5px 1px rgba(0, 0, 0, 0.02);
	--shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
	--text-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.03);
	
	/* Form Elements */
	--input-bg: #CCCCCC;
	--input-border: #D1D5DB;
	--input-focus: #0EA5E9;
	
	/* Homepage Hero Elements */
	--hero-text: #FFFFFF;
	--hero-text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	--hero-button-bg: #000000;
	--hero-button-text: #FFFFFF;
	--hero-button-border: #FFFFFF;
	--hero-button-hover-bg: rgba(255, 255, 255, 0.65);
	--hero-button-hover-text: #000000;
	--hero-button-hover-border: #000000;
	
	/* Button Text */
	--button-text: #FFFFFF;
	
	/* Photo Viewer */
	--photo-viewer-bg: #2D2D2D;
	--photo-viewer-text: #F1F5F9;
	
	/* Slideshow - Your preference for pure black */
	--slideshow-bg: #000000;
}
/* Dark Mode */
@media (prefers-color-scheme: dark) {
	:root {
		/* Your dark mode colors */
		--primary-bg: #091022;
		--secondary-bg: #0F172A;
		--card-bg: #091022;
		--overlay: rgba(15, 23, 42, 0.9);
		
		/* Your dark mode text colors */
		--primary-text: #F1F5F9;
		--secondary-text: #B6C0CD;
		--heading-color: #F1F5F9;
		--link-color: #F0872D;
		
		/* Dark mode accents */
		--accent-primary: #F0872D;
		--accent-secondary: #38BDF8;
		--accent-hover: #D4700F;
		
		/* Dark mode UI */
		--border-color: #0F172A;
		--border-hover: #091022;
		
		/* Your dark mode shadows */
		--shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
		--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
		--shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.4);
		--text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
		
		/* Hero elements stay same for dark mode */
		--hero-text: #FFFFFF;
		--hero-text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
		--hero-button-bg: #000000;
		--hero-button-text: #FFFFFF;
		--hero-button-border: #FFFFFF;
		--hero-button-hover-bg: rgba(255, 255, 255, 0.65);
		--hero-button-hover-text: #000000;
		--hero-button-hover-border: #000000;
		
		/* Dark mode slideshow stays black */
		--slideshow-bg: #000000;
                /* FIXED: Dark mode form elements */
                --input-bg: #1E293B;
                --input-border: #334155;
                --input-focus: #38BDF8;
	}
}
/* ============================================
		BASE ELEMENT OVERRIDES
		============================================ */
		
/* Override generated CSS from local-css-35-*.css */
html, body {
	background: var(--primary-bg) !important;
	background-color: var(--primary-bg) !important;
	color: var(--primary-text) !important;
	transition: background-color 0.3s ease, color 0.3s ease;
}
/* Text elements */
body h1, body h2, body h3, body h4, body h5, body h6 {
	color: var(--heading-color) !important;
	text-shadow: var(--text-shadow) !important;
}
body p, body span:not([class*="icon"]), body li, body td, body th {
	color: var(--primary-text) !important;
	text-shadow: none !important;
}
/* Links */
body a {
	color: var(--accent-primary) !important;
	text-shadow: none !important;
	transition: color 0.3s ease;
}
body a:hover {
	color: var(--accent-hover) !important;
}
/* Remove shadows from most elements */
body p, body a, body span, body li, body td, body th, body label,
body input, body textarea, body select {
	text-shadow: none !important;
}
/* ============================================
		BUTTONS - SINGLE DEFINITION
		============================================ */
		
.button, 
.btn, 
.tbutton,
.btn-primary,
input[type="submit"],
button[type="submit"],
input[type="button"],
button {
    background-color: var(--accent-primary) !important;
    color: var(--button-text) !important;
    border: 1px solid var(--accent-primary) !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    text-shadow: none !important;
}
.button:hover,
.btn:hover,
.tbutton:hover,
.btn-primary:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
    background-color: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: var(--button-text) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg) !important;
}
/* Secondary Buttons */
.btn-secondary {
	background-color: transparent !important;
	color: var(--accent-secondary) !important;
	border: 2px solid var(--accent-secondary) !important;
}
.btn-secondary:hover {
	background-color: var(--accent-secondary) !important;
	color: var(--button-text) !important;
}
/* ============================================
		HOMEPAGE HERO SECTIONS - CLEAN
		============================================ */
		
/* Hero section backgrounds - preserve images, only override colors */
body .contentrow.textoverlay,
body .photodiv.fixedbg,
body .photocontainerbg.photodiv.fixedbg {
    background-color: transparent !important;
    /* Don't override background-image, background-size, background-position */
}
/* Hero text overlays */
body .contentrow.textoverlay,
body .contentrow.textoverlay *:not(.tbutton):not(.btn):not(.button):not(a[class*="btn"]),
body .eto,
body .eto *:not(.tbutton):not(.btn):not(.button):not(a[class*="btn"]),
body .fixedbg .eto,
body .fixedbg .eto *:not(.tbutton):not(.btn):not(.button):not(a[class*="btn"]) {
    color: var(--hero-text) !important;
    text-shadow: var(--hero-text-shadow) !important;
    background-color: transparent !important;
}
/* Hero buttons */
body .contentrow.textoverlay .tbutton,
body .eto .tbutton,
body .fixedbg .tbutton,
body a[href*="calendly"],
body a[href*="consultation"] {
    background-color: var(--hero-button-bg) !important;
    color: var(--hero-button-text) !important;
    border: 1px solid var(--hero-button-border) !important;
    border-radius: 71px !important;
    padding: 16px !important;
    margin: 16px auto 11px !important;
    font-family: "Bree Serif" !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    max-width: 450px !important;
}
body .contentrow.textoverlay .tbutton:hover,
body .eto .tbutton:hover,
body .fixedbg .tbutton:hover,
body a[href*="calendly"]:hover,
body a[href*="consultation"]:hover {
    background-color: var(--hero-button-hover-bg) !important;
    color: var(--hero-button-hover-text) !important;
    border-color: var(--hero-button-hover-border) !important;
}
/* Secondary hero buttons (Call Us) - ONLY in hero sections */
body .contentrow.textoverlay .eb .tbutton,
body .eto a[href^="tel:"],
body .fixedbg a[href^="tel:"] {
    background-color: var(--hero-button-bg) !important;
    color: var(--hero-button-text) !important;
    border: 1px solid var(--hero-button-border) !important;
    padding: 16px !important;
    margin: 16px auto 0px !important;
}
body .contentrow.textoverlay .eb .tbutton:hover,
body .eto a[href^="tel:"]:hover,
body .fixedbg a[href^="tel:"]:hover {
    background-color: var(--hero-button-hover-bg) !important;
    color: var(--hero-button-hover-text) !important;
    border-color: var(--hero-button-hover-border) !important;
}
/* Override inline styles on hero sections */
body .contentrow.textoverlay span[style*="color: rgb(255, 255, 255)"],
body .eto span[style*="color: rgb(255, 255, 255)"],
body span.mtxt[style*="color: rgb(255, 255, 255)"] {
    color: var(--hero-text) !important;
    text-shadow: var(--hero-text-shadow) !important;
}
/* ============================================
		NAVIGATION
		============================================ */
		
body #headerAndMenu,
body #headerAndMenuInner,
body #headerContainer {
	background: var(--primary-bg) !important;
	background-color: var(--primary-bg) !important;
	border-color: var(--border-color) !important;
}
/* Logo container and image - force transparent backgrounds */
body #header,
body #header .inner,
body #header p,
body #header a,
body #header img {
	background: transparent !important;
	background-color: transparent !important;
}
body #topMainMenu {
	background: transparent !important;
	background-color: transparent !important;
}
body #topMainMenu a {
	color: var(--secondary-text) !important;
	text-shadow: none !important;
	transition: color 0.3s ease !important;
}
body #topMainMenu a:hover,
body #topMainMenu a.active {
	color: var(--accent-primary) !important;
	background: transparent !important;
	background-color: transparent !important;
}
/* Dropdown menus */
body #topMainMenu li ul,
body #topMainMenu > ul > li > ul {
	background: var(--card-bg) !important;
	background-color: var(--card-bg) !important;
	border: 1px solid var(--border-color) !important;
	box-shadow: var(--shadow-lg) !important;
}
body #topMainMenu li ul a {
	color: var(--primary-text) !important;
	background: transparent !important;
}
body #topMainMenu li ul a:hover {
	color: var(--accent-primary) !important;
	background: transparent !important;
}
/* ============================================
		MOBILE NAVIGATION
		============================================ */
		
@media (max-width: 800px) {
	body #mobilemenu {
		background: var(--secondary-bg) !important;
		background-color: var(--secondary-bg) !important;
	}
	
	body #mobilemenulinks {
		background: var(--card-bg) !important;
		background-color: var(--card-bg) !important;
	}
	
	/* Mobile menu links - stronger specificity */
	body #mobilemenulinks a,
	body #mobilemenulinks li a,
	body #mobilemenu a,
	body #mobilemenu li a,
	#mobilemenulinks a,
	#mobilemenu a {
		color: var(--primary-text) !important;
		text-shadow: none !important;
		background: transparent !important;
	}
	
	/* Mobile menu hover states */
	body #mobilemenulinks a:hover,
	body #mobilemenulinks li a:hover,
	body #mobilemenu a:hover,
	body #mobilemenu li a:hover,
	#mobilemenulinks a:hover,
	#mobilemenu a:hover {
		color: var(--accent-primary) !important;
		background: transparent !important;
	}
	
	/* Mobile submenu items */
	body #mobilemenulinks .mobilesubmenu a,
	body #mobilemenulinks ul a,
	#mobilemenulinks .mobilesubmenu a,
	#mobilemenulinks ul a {
		color: var(--primary-text) !important;
		text-shadow: none !important;
	}
}
/* ============================================
		FORMS
		============================================ */
		
body input[type="text"],
body input[type="email"],
body input[type="tel"],
body input[type="password"],
body input[type="search"],
body input[type="number"],
body input[type="date"],
body textarea,
body select {
	background-color: var(--input-bg) !important;
	border: 1px solid var(--input-border) !important;
	color: var(--primary-text) !important;
	transition: all 0.3s ease;
	text-shadow: none !important;
}
body input:focus,
body textarea:focus,
body select:focus {
	border-color: var(--input-focus) !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1) !important;
}
body label {
	color: var(--primary-text) !important;
}
/* ============================================
		GALLERY & THUMBNAILS
		============================================ */
		
body .justified-gallery {
	background: var(--primary-bg) !important;
	background-color: var(--primary-bg) !important;
}
body .justified-gallery > a,
body .justified-gallery > div {
	background: transparent !important;
}
body .justified-gallery .caption {
	background-color: rgba(0, 0, 0, 0.7) !important;
	color: #FFFFFF !important;
}
/* Thumbnail fixes */
body .styledthumbs {
	background-color: var(--secondary-bg) !important;
}
/* Gallery thumbnails */
.flexthumbnails {
    background-color: var(--secondary-bg) !important;
    color: var(--primary-text) !important;
}
/* ============================================
		PAGINATION
		============================================ */
		
#pageMenu,
.pageContent,
.pagination,
.page-navigation {
    background: transparent !important;
    color: var(--primary-text) !important;
}
/* Unselected page numbers */
#pageMenu .selectPage,
.selectPage,
.page-link,
.pagination .page-item:not(.active) a {
    background-color: var(--secondary-bg) !important;
    color: var(--primary-text) !important;
    border: 1px solid var(--border-color) !important;
    text-decoration: none !important;
    padding: 8px 12px !important;
    margin: 2px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-align: center !important;
    min-width: 16px !important;
}
/* Selected/current page */
#pageMenu .selectedPage,
.selectedPage,
.page-link.active,
.pagination .page-item.active a {
    background-color: var(--accent-primary) !important;
    color: var(--button-text) !important;
    border: 1px solid var(--accent-primary) !important;
    font-weight: bold !important;
    padding: 8px 12px !important;
    margin: 2px !important;
    border-radius: 4px !important;
    text-align: center !important;
    min-width: 16px !important;
}
/* Hover states */
#pageMenu .selectPage:hover,
.selectPage:hover,
.page-link:hover {
    background-color: var(--accent-hover) !important;
    color: var(--button-text) !important;
    border-color: var(--accent-hover) !important;
    transform: translateY(-1px) !important;
}
/* Next/Previous buttons */
.selectPage[href*="Next"],
.selectPage[href*="Previous"],
.page-link[href*="next"],
.page-link[href*="prev"] {
    background-color: var(--card-bg) !important;
    color: var(--accent-primary) !important;
    border: 1px solid var(--accent-primary) !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    margin: 2px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
}
.selectPage[href*="Next"]:hover,
.selectPage[href*="Previous"]:hover {
    background-color: var(--accent-primary) !important;
    color: var(--button-text) !important;
    border-color: var(--accent-primary) !important;
}
/* ============================================
		PHOTO VIEWER
		============================================ */
		
#photoview,
#photoviewinner,
#photoviewview,
#photoprodsinner,
#photoprods {
    background-color: var(--photo-viewer-bg) !important;
    color: var(--photo-viewer-text) !important;
}
/* Photo viewer specific elements - avoid homepage conflicts */
#photoview:not(.contentrow) *:not(.textoverlay):not(.eto):not(.fixedbg),
#photoviewview:not(.contentrow) *:not(.textoverlay):not(.eto):not(.fixedbg),
#photoviewinner:not(.contentrow) *:not(.textoverlay):not(.eto):not(.fixedbg),
#photoprodsinner:not(.contentrow) *:not(.textoverlay):not(.eto):not(.fixedbg) {
    color: var(--photo-viewer-text) !important;
}
/* ============================================
		SHOP & CART
		============================================ */
		
/* Shop menu container and inner - ensure consistent secondary background */
body .hidesmall,
div.hidesmall,
body .hidesmall #shopmenucontainer,
body .hidesmall #shopmenuinner,
body #shopmenucontainer,
body #shopmenuinner {
	background: var(--secondary-bg) !important;
	background-color: var(--secondary-bg) !important;
	color: var(--primary-text) !important;
	border-color: var(--border-color) !important;
}
body #viewcartinner {
	background: var(--card-bg) !important;
	background-color: var(--card-bg) !important;
}
/* ============================================
		CONTENT SECTIONS
		============================================ */
		
/* Portfolio gallery section */
body .contentrow.dync:not(.textoverlay),
body .dyncontent:not(.textoverlay) {
    color: var(--primary-text) !important;
    background-color: transparent !important;
}
/* Form sections */
body .dynform,
body .contentrow[data-content-type="form"]:not(.textoverlay) {
    color: var(--primary-text) !important;
    background-color: transparent !important;
}
/* Social icons section */
body .socialiconrow,
body .contentrow[data-edit-class="socialiconrow"] {
    background-color: transparent !important;
}
/* ============================================
		SLIDESHOW & LOADING
		============================================ */
		
body #sscontainerloading,
body #loadingss,
body .slideshow-loading {
	background: var(--slideshow-bg) !important;
	background-color: var(--slideshow-bg) !important;
	color: var(--photo-viewer-text) !important;
}
/* ============================================
		FOOTER
		============================================ */
		
body #footer,
body #footerinner {
	background: var(--primary-bg) !important;
	background-color: var(--primary-bg) !important;
	border: none !important;
	border-top: none !important;
	box-shadow: none !important;
}
body #footer a {
	color: var(--accent-primary) !important;
	text-decoration: none !important;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	font-weight: normal !important;
}
body #footer a:hover {
	color: var(--accent-hover) !important;
	background: transparent !important;
}
/* ============================================
		COOKIE WARNING POPUP
		============================================ */
		
#cookiewarning {
	background: var(--secondary-bg) !important;
	background-color: var(--secondary-bg) !important;
	border-top: 2px solid var(--accent-primary) !important;
	color: var(--primary-text) !important;
}
#cookiewarning .pc {
	background: transparent !important;
	color: var(--primary-text) !important;
	padding: 16px !important;
}
#cookiewarning p {
	color: var(--primary-text) !important;
	margin: 0 !important;
	display: inline !important;
}
#cookiewarning a {
	color: var(--accent-primary) !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	padding: 8px 16px !important;
	margin: 0 8px !important;
	border-radius: 4px !important;
	background: transparent !important;
	border: 1px solid var(--accent-primary) !important;
	display: inline-block !important;
}
#cookiewarning a:hover {
	background: var(--accent-primary) !important;
	color: var(--button-text) !important;
	border-color: var(--accent-primary) !important;
}
/* ============================================
		UTILITY OVERRIDES
		============================================ */
		
/* hidesmall class styling - increased specificity */
body .hidesmall,
div.hidesmall,
#headerAndMenu .hidesmall,
#shopmenucontainer.hidesmall {
	background: var(--secondary-bg) !important;
	background-color: var(--secondary-bg) !important;
	border-color: var(--border-color) !important;
}
/* gallerypopup class styling */
.gallerypopup {
	background: var(--secondary-bg) !important;
	background-color: var(--secondary-bg) !important;
}
/* Gift card styling */
#giftcard {
	background: var(--accent-primary) !important;
	background-color: var(--accent-primary) !important;
	color: var(--button-text) !important;
}
/* Icons should use current color */
body .the-icons,
body [class*="icon-"] {
	color: currentColor !important;
}
/* Override any remaining problematic selectors */
body div:not([class*="photo"]):not([id*="photo"]):not(.textoverlay):not(.eto) {
	color: inherit;
}
/* ============================================
		SEARCH FUNCTIONALITY
		============================================ */
		
/* Search submit buttons */
.gallerysearchsubmit,
.searchform input[type="submit"],
.searchform button[type="submit"],
input[type="submit"][value*="search" i],
button[type="submit"]:not(.searchlink) {
    background-color: var(--accent-primary) !important;
    color: var(--button-text) !important;
    border: 1px solid var(--accent-primary) !important;
    text-shadow: none !important;
    font-weight: 600 !important;
}
.gallerysearchsubmit:hover,
.searchform input[type="submit"]:hover,
.searchform button[type="submit"]:hover {
    background-color: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: var(--button-text) !important;
    transform: translateY(-1px) !important;
    box-shadow: var(--shadow) !important;
}
/* Search input fields */
.gallerysearchinput,
.searchform input[type="text"],
.searchform input[type="search"],
input[name="q"] {
    background-color: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
    color: var(--primary-text) !important;
    text-shadow: none !important;
}
.gallerysearchinput:focus,
.searchform input[type="text"]:focus,
.searchform input[type="search"]:focus,
input[name="q"]:focus {
    border-color: var(--input-focus) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1) !important;
}
/* Enhanced fix for your specific HTML structure */
#clientGalleries .text p img,
#clientGalleries .text table img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
}
/* Additional table-specific rules */
#clientGalleries .text table {
    margin: 0 auto !important;
    width: auto !important;
}
#clientGalleries .text table td {
    text-align: center !important;
    vertical-align: middle !important;
}
#clientGalleries .text table td img {
    display: block !important;
    margin: 0 auto !important;
}
/* Target any images that might be direct children of table cells */
#clientGalleries table tbody tr td img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
}
/* ============================================
   GALLERY BUTTONS THEME FIX
   ============================================ */
/* Include gallery buttons in theme styling */
.gallerybuttons,
.gallerybuttonsmenu .gallerybuttons,
a.gallerybuttons {
    background-color: var(--accent-primary) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--accent-primary) !important;
    text-decoration: none !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}
/* Gallery button hover states */
.gallerybuttons:hover,
.gallerybuttonsmenu .gallerybuttons:hover,
a.gallerybuttons:hover {
    background-color: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}
/* Ensure icons in gallery buttons use current color */
.gallerybuttons [class*="icon-"],
.gallerybuttons::before {
    color: currentColor !important;
}
/* ============================================
   CALL US BUTTON STYLES
   Professional CTA buttons for phone contact
   ============================================ */
/* Primary Call Button - Orange accent */
.call-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--accent-primary);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    
}
.call-us-btn:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 113, 26, 0.3);
}
.call-us-btn:active {
    transform: translateY(0);
}
.call-us-btn .phone-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
/* Secondary Style - Outlined */
.call-us-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: transparent;
    color: var(--accent-primary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
    cursor: pointer;
   
}
.call-us-btn-secondary:hover {
    background-color: var(--accent-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 113, 26, 0.3);
}
.call-us-btn-secondary:active {
    transform: translateY(0);
}
.call-us-btn-secondary .phone-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
/* Compact/Small Size */
.call-us-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--accent-primary);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}
.call-us-btn-small:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 113, 26, 0.3);
}
.call-us-btn-small .phone-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
/* Large/CTA Size */
.call-us-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background-color: var(--accent-primary);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    
}
.call-us-btn-large:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(232, 113, 26, 0.4);
}
.call-us-btn-large .phone-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
/* Teal/Cyan Variant */
.call-us-btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--accent-secondary);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--accent-secondary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    
}
.call-us-btn-teal:hover {
    background-color: #0891C2;
    border-color: #0891C2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.call-us-btn-teal .phone-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
/* Fixed/Floating Button */
.call-us-btn-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background-color: var(--accent-primary);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1000;
  
}
.call-us-btn-fixed:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(232, 113, 26, 0.3);
}
.call-us-btn-fixed .phone-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    animation: ring 2s ease-in-out infinite;
}
/* Phone ring animation for fixed button */
@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .call-us-btn, .call-us-btn-secondary, .call-us-btn-teal {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .call-us-btn-large {
        padding: 16px 32px;
        font-size: 17px;
    }
    
    .call-us-btn-fixed {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .call-us-btn, .call-us-btn-secondary, .call-us-btn-teal {
        width: 100%;
        justify-content: center;
    }
    
    .call-us-btn-fixed {
        padding: 12px 20px;
        font-size: 14px;
    }
}
/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .call-us-btn:hover {
        box-shadow: 0 4px 12px rgba(240, 135, 45, 0.4);
    }
    
    .call-us-btn-teal:hover {
        box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
    }
    
    .call-us-btn-fixed {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .call-us-btn-fixed:hover {
        box-shadow: 0 6px 24px rgba(240, 135, 45, 0.5);
    }
}
.livestream-container {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 0 20px;
}
.livestream-wrapper {
	display: flex;
	gap: 75px;
	max-width: 2000px;
	width: 100%;
}
.livestream-content {
	flex: 1;
	min-width: 0; /* Important for flex shrinking */
	max-width: 750px;
}
.livestream-form-column {
	flex: 0 0 600px;
	max-width: 750px;
	position: sticky;
	top: 20px;
	align-self: flex-start;
}
.livestream-image {
	width: 100%;
	max-width: 750px;
	margin-top: 30px;
}
.livestream-image img {
	width: 100%;
	height: auto;
	display: block;
}
/* Tablet adjustments */
@media (max-width: 1200px) {
	.livestream-wrapper {
		gap: 40px;
		padding: 0 20px;
	}
	
	.livestream-form-column {
		flex: 0 0 450px;
	}
}
/* Mobile - Stack vertically */
@media (max-width: 968px) {
	.livestream-container {
		padding: 0 15px;
	}
	
	.livestream-wrapper {
		flex-direction: column;
		gap: 30px;
		padding: 0;
	}
	
	.livestream-content {
		min-width: 100%;
		max-width: 100%;
	}
	
	.livestream-form-column {
		flex: 1;
		min-width: 100%;
		max-width: 100%;
		position: static; /* Remove sticky on mobile */
	}
	
	.livestream-image {
		max-width: 100%;
	}
}
/* Extra small mobile */
@media (max-width: 480px) {
	.livestream-container {
		padding: 0 10px;
	}
	
	.livestream-wrapper {
		gap: 20px;
	}
}


/* ============================================================
   CLARUS MULTIMEDIA - Homepage Fixes FINAL v4
   Based on template-2026-cmg-new-260304085643.php
   Append to BOTTOM of clarus-theme-override-6.css.
   Replace any previous version of this block entirely.
   ============================================================ */


/* ?? 0. HERO CAROUSEL — Full Viewport Width ??????????????????
   #rand-979225 is the outer contentrow.ssto container.
   Its inner slideshow div (#rand-588818) already has class
   "width100vw" but is constrained by the parent's width.
   Applying the same 100vw breakout as the Trusted By bar and
   footer fixes the right-side gap.
   position: relative is preserved so .eto text overlays
   (absolutely positioned within this container) still work.
   ???????????????????????????????????????????????????????????? */

body #rand-979225.contentrow {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}


/* ?? 1. GEOGRAPHY TEXT (#rand-989255) ???????????????????????*/

body #rand-989255 .mtxt,
body #rand-989255 .mtxt span {
    color: #FFFFFF !important;
    background-color: transparent !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7) !important;
}


/* ?? 2. HERO HEADLINE — orange <em> (#rand-828189) ??????????*/

body #rand-828189 .mtxt {
    color: #FFFFFF !important;
}

body #rand-828189 .mtxt em {
    color: #E8711A !important;
    font-style: italic !important;
}

@media (prefers-color-scheme: dark) {
    body #rand-828189 .mtxt em {
        color: #F0872D !important;
    }
}


/* ?? 3. SUBHEAD (#rand-939535) ??????????????????????????????*/

body #rand-939535 .mtxt {
    color: #FFFFFF !important;
}


/* ?? 4. TRUSTED BY BAR — Background + Full Width ????????????
   Light mode: #DDE3EA — soft steel-slate.
   Dark mode:  #1A2840 — deep navy, clearly distinct from
               both the page bg (#091022) and a mid-navy.
               Darkened from v3's #283346 which read too light.
   Selector: html body ID.class to maximize specificity over
   the ".contentrow { background: var(--card-bg) }" rules
   present in BOTH local-css and clarus-theme-override-6.css.
   ???????????????????????????????????????????????????????????? */

html body #rand-439829.contentrow {
    background:       #DDE3EA !important;
    background-color: #DDE3EA !important;
    border-top:    1px solid rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06) !important;
    /* 100vw breakout */
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
}

@media (prefers-color-scheme: dark) {
    html body #rand-439829.contentrow {
        background:       #1A2840 !important;
        background-color: #1A2840 !important;
        border-top:    1px solid rgba(255,255,255,0.07) !important;
        border-bottom: 1px solid rgba(255,255,255,0.07) !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.35) !important;
    }
}

/* Inner containers — strip padding so content fills edge-to-edge */
body #rand-439829 .fullrow.bp,
body #rand-439829 #rand-80962,
body #rand-439829 .ea.ba {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    box-sizing: border-box !important;
}


/* ?? 5. TRUSTED BY: Layout & Spacing ????????????????????????*/

body #rand-439829 p.logo-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 22px 48px !important;
    min-height: 68px !important;
    box-sizing: border-box !important;
}


/* ?? 6. TRUSTED BY: Label ???????????????????????????????????*/

body #rand-439829 .logo-bar-label {
    background-color: transparent !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    padding-right: 36px !important;
    color: #4A5568 !important;
}

@media (prefers-color-scheme: dark) {
    body #rand-439829 .logo-bar-label {
        color: rgba(138,154,176,0.80) !important;
    }
}


/* ?? 7. TRUSTED BY: Client names — spans AND anchor tags ????*/

body #rand-439829 .client-logo,
body #rand-439829 a.client-logo,
body #rand-439829 a.client-logo:visited {
    background-color: transparent !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    margin: 0 28px !important;
    text-decoration: none !important;
    color: #1E3A5F !important;
    transition: color 0.2s ease, opacity 0.2s ease !important;
}

body #rand-439829 a.client-logo:hover {
    color: #E8711A !important;
    text-decoration: none !important;
}

@media (prefers-color-scheme: dark) {
    body #rand-439829 .client-logo,
    body #rand-439829 a.client-logo,
    body #rand-439829 a.client-logo:visited {
        color: rgba(255,255,255,0.55) !important;
    }
    body #rand-439829 a.client-logo:hover {
        color: #F0872D !important;
    }
}


/* ?? 8. CREDIBILITY INTRO (#rand-833253) ?????????????????????
   Structure:
     p.credibility-inner  — eyebrow / kicker label
     h2                   — main headline
     p > strong           — body copy with bold highlights
   Container uses .maxwidth1200 so content is already centered
   and constrained — no width breakout needed here.
   ???????????????????????????????????????????????????????????? */

/* Wrapper — center everything */
body #rand-833253 #rand-790178 {
    text-align: center !important;
}

/* Eyebrow / kicker — "About Clarus Multimedia Group" */
body #rand-833253 p.credibility-inner {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 4.5px !important;
    text-transform: uppercase !important;
    color: #E8711A !important;
    background-color: transparent !important;
    margin: 0 auto 20px auto !important;
    padding: 0 !important;
    text-shadow: none !important;
    line-height: 1 !important;
    text-align: center !important;
}

/* Section headline */
body #rand-833253 h2 {
    font-family: 'DM Serif Text', serif !important;
    font-size: 40px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.3px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    text-shadow: none !important;
    margin: 0 auto 36px auto !important;
    width: 100% !important;
    max-width: 820px !important;
    text-align: center !important;
}

/* Body copy paragraphs (not the eyebrow) */
body #rand-833253 #rand-790178 > p:not(.credibility-inner) {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    color: #4B5563 !important;
    background-color: transparent !important;
    text-shadow: none !important;
    margin: 0 auto 18px auto !important;
    max-width: 760px !important;
    text-align: center !important;
}

/* Bold highlights within body copy */
body #rand-833253 #rand-790178 > p strong {
    color: #1F2937 !important;
    font-weight: 700 !important;
}

/* ?? Dark mode ????????????????????????????????????????????? */
@media (prefers-color-scheme: dark) {
    body #rand-833253 p.credibility-inner {
        color: #F0872D !important;
    }
    body #rand-833253 h2 {
        color: #F1F5F9 !important;
    }
    body #rand-833253 #rand-790178 > p:not(.credibility-inner) {
        color: #9AABB8 !important;
    }
    body #rand-833253 #rand-790178 > p strong {
        color: #E2EAF0 !important;
    }
}

/* ?? Mobile ???????????????????????????????????????????????? */
@media (max-width: 1024px) {
    body #rand-833253 h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    body #rand-833253 h2 {
        font-size: 26px !important;
        margin-bottom: 24px !important;
    }
    body #rand-833253 #rand-790178 > p:not(.credibility-inner) {
        font-size: 15px !important;
    }
}

/* ?? END HOMEPAGE FIXES FINAL v4 ??????????????????????????? */



/* ============================================================
   SERVICE PAGES — SHARED COMPONENTS
   Append to clarus-theme-override-6.css
   Covers: All service pages using the .cmg-svc- prefix
   ============================================================ */

/* ?? OUTER WRAPPER ??????????????????????????????????????? */
.cmg-svc {
	font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 0 0;
	color: var(--primary-text);
}

/* ?? SECTION BANDS ?????????????????????????????????????????
   Each section is a full-width band with its own background.
   Inner padding aligns content to a consistent 48px gutter.
   ?????????????????????????????????????????????????????????? */
.cmg-svc-section {
	padding: 56px 48px;
}
.cmg-svc-section--intro   { background: transparent; }
.cmg-svc-section--cards   { background: var(--secondary-bg); }
.cmg-svc-section--sports  { background: transparent; padding-top: 0; padding-bottom: 0; }
.cmg-svc-section--persona { background: transparent; }
.cmg-svc-section--workflow {
	background: var(--card-bg);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.cmg-svc-section--delivers { background: var(--secondary-bg); }
.cmg-svc-section--cta      { background: transparent; padding-top: 40px; }

/* ?? EYEBROW / SECTION LABELS ???????????????????????????? */
.cmg-svc-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-primary);
	margin-bottom: 10px;
	display: block;
}
.cmg-svc-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent-primary);
	text-transform: uppercase;
	margin-bottom: 20px;
	display: block;
}
.cmg-svc-section--delivers .cmg-svc-label,
.cmg-svc-section--persona .cmg-svc-label {
	color: var(--accent-secondary);
}

/* ?? INTRO TWO-COLUMN ???????????????????????????????????? */
.cmg-svc-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: start;
}
.cmg-svc-intro h2 {
	font-family: 'DM Serif Text', Georgia, serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--heading-color);
	margin-bottom: 16px;
}
.cmg-svc-intro p {
	color: var(--secondary-text);
	font-size: 16px;
	line-height: 1.78;
	margin-bottom: 14px;
	font-weight: 300;
}
.cmg-svc-proof {
	margin-top: 20px;
	padding: 14px 18px;
	background: var(--card-bg);
	border-left: 3px solid var(--accent-primary);
}
.cmg-svc-proof p   { font-size: 14px; color: var(--secondary-text); margin: 0; line-height: 1.6; }
.cmg-svc-proof strong { color: var(--primary-text); font-weight: 600; }

/* ?? SECTION HEADER (centered label above cards/workflow) ?? */
.cmg-svc-section-hdr {
	text-align: center;
	margin-bottom: 40px;
}
.cmg-svc-section-hdr .cmg-svc-label { margin-bottom: 0; }

/* ?? FEATURE CARDS GRID ?????????????????????????????????? */
.cmg-svc-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.cmg-svc-card {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	padding: 28px 24px;
	transition: border-color 0.2s, transform 0.2s;
}
.cmg-svc-card:hover {
	border-color: var(--accent-primary);
	transform: translateY(-3px);
}
.cmg-svc-card:nth-child(even):hover {
	border-color: var(--accent-secondary);
}
.cmg-svc-card-icon {
	width: 42px;
	height: 42px;
	background: rgba(232, 113, 26, 0.1);
	border: 1px solid rgba(232, 113, 26, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.cmg-svc-card:nth-child(even) .cmg-svc-card-icon {
	background: rgba(14, 165, 233, 0.08);
	border-color: rgba(14, 165, 233, 0.2);
}
.cmg-svc-card-icon svg { width: 18px; height: 18px; fill: var(--accent-primary); }
.cmg-svc-card:nth-child(even) .cmg-svc-card-icon svg { fill: var(--accent-secondary); }
.cmg-svc-card h3 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--primary-text);
	margin-bottom: 10px;
}
.cmg-svc-card p {
	font-size: 15px;
	color: var(--secondary-text);
	line-height: 1.65;
	font-weight: 300;
	margin: 0;
}

/* ?? SPORT TAGS STRIP ???????????????????????????????????? */
.cmg-svc-sports {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding: 40px 48px;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.cmg-svc-sport-tag {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-text);
	transition: border-color 0.2s, color 0.2s;
}
.cmg-svc-sport-tag:hover {
	border-color: var(--accent-secondary);
	color: var(--accent-secondary);
}
.cmg-svc-sport-dot {
	width: 7px;
	height: 7px;
	background: var(--accent-secondary);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ?? WORKFLOW BLOCK ?????????????????????????????????????? */
.cmg-svc-workflow h3 {
	font-family: 'DM Serif Text', Georgia, serif;
	font-size: 26px;
	font-weight: 400;
	color: var(--heading-color);
	margin-bottom: 40px;
	text-align: center;
}
.cmg-svc-workflow-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.cmg-svc-step {
	padding-left: 20px;
	border-left: 3px solid var(--accent-primary);
}
.cmg-svc-step-num {
	font-size: 36px;
	font-weight: 700;
	color: var(--accent-primary);
	opacity: 0.3;
	line-height: 1;
	margin-bottom: 8px;
	font-family: 'DM Serif Text', Georgia, serif;
}
.cmg-svc-step h4 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--primary-text);
	margin-bottom: 8px;
}
.cmg-svc-step p {
	font-size: 15px;
	color: var(--secondary-text);
	line-height: 1.62;
	font-weight: 300;
	margin: 0;
}

/* ?? PERSONA BLOCK ??????????????????????????????????????? */
.cmg-svc-persona {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-left: 4px solid var(--accent-secondary);
	padding: 32px 36px;
	display: flex;
	gap: 24px;
	align-items: flex-start;
}
.cmg-svc-persona-icon {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid rgba(14, 165, 233, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.cmg-svc-persona-icon svg { width: 22px; height: 22px; fill: var(--accent-secondary); }
.cmg-svc-persona h3 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	color: var(--accent-secondary);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.cmg-svc-persona p {
	font-size: 16px;
	color: var(--secondary-text);
	line-height: 1.75;
	font-weight: 300;
	margin: 0;
}

/* ?? DELIVERABLES LIST ??????????????????????????????????? */
.cmg-svc-del-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 3px solid var(--accent-secondary);
	padding-top: 8px;
}
.cmg-svc-del-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: var(--secondary-text);
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
	font-weight: 300;
	line-height: 1.5;
}
.cmg-svc-del-item::before {
	content: '';
	width: 5px;
	height: 5px;
	background: var(--accent-secondary);
	border-radius: 50%;
	margin-top: 7px;
	flex-shrink: 0;
}

/* ?? CTA BAR ????????????????????????????????????????????? */
.cmg-svc-cta {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-left: 4px solid var(--accent-primary);
	padding: 32px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.cmg-svc-cta h3 {
	font-family: 'DM Serif Text', Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	color: var(--heading-color);
	margin-bottom: 6px;
}
.cmg-svc-cta p { font-size: 15px; color: var(--secondary-text); margin: 0; font-weight: 300; }
.cmg-svc-cta-btn {
	background: var(--accent-primary);
	color: #ffffff !important;
	text-decoration: none !important;
	display: inline-block;
	font-family: 'DM Sans', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 14px 32px;
	border: 2px solid var(--accent-primary);
	transition: background 0.2s, border-color 0.2s;
	white-space: nowrap;
}
.cmg-svc-cta-btn:hover {
	background: var(--accent-hover) !important;
	border-color: var(--accent-hover) !important;
}

/* ?? BRAND FOOTER STRIP ?????????????????????????????????? */
.cmg-svc-footer {
	border-top: 1px solid var(--border-color);
	padding: 24px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.cmg-svc-footer-brand { font-family: 'DM Serif Text', Georgia, serif; font-size: 16px; color: var(--primary-text); }
.cmg-svc-footer-brand span { color: var(--accent-primary); }
.cmg-svc-footer-tagline { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--secondary-text); }

/* ?? RESPONSIVE ?????????????????????????????????????????? */
@media (max-width: 900px) {
	.cmg-svc-section     { padding: 40px 24px; }
	.cmg-svc-sports      { padding: 32px 24px; }
	.cmg-svc-footer      { padding: 24px; }
	.cmg-svc-intro       { grid-template-columns: 1fr; gap: 24px; }
	.cmg-svc-cards       { grid-template-columns: 1fr 1fr; }
	.cmg-svc-workflow-steps { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
	.cmg-svc-section     { padding: 32px 16px; }
	.cmg-svc-cards       { grid-template-columns: 1fr; }
	.cmg-svc-del-grid    { grid-template-columns: 1fr; }
	.cmg-svc-persona     { flex-direction: column; }
	.cmg-svc-cta         { flex-direction: column; }
	.cmg-svc-cta-btn     { width: 100%; text-align: center; }
}

/* ?? RESPONSIVE BILLBOARD ??????????????????????????????????
   vw-based height preserves image composition as page narrows.
   ?????????????????????????????????????????????????????????? */
.contentrow.ssto .fullrow.sshow {
	height: 52vw !important;
	max-height: 80vh !important;
	min-height: 280px !important;
}
@media (max-width: 1024px) { .contentrow.ssto .fullrow.sshow { height: 56vw !important; } }
@media (max-width: 768px)  { .contentrow.ssto .fullrow.sshow { height: 62vw !important; } }
@media (max-width: 480px)  { .contentrow.ssto .fullrow.sshow { height: 70vw !important; min-height: 240px !important; } }

/* ?? SEE OUR WORK STRIP ????????????????????????????????????
   Portfolio link band between deliverables and CTA form.
   Sits in its own section with a subtle accent treatment.
   ?????????????????????????????????????????????????????????? */
.cmg-svc-section--portfolio {
	background: var(--card-bg);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.cmg-svc-portfolio {
	text-align: center;
}
.cmg-svc-portfolio h3 {
	font-family: 'DM Serif Text', Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	color: var(--heading-color);
	margin-bottom: 8px;
}
.cmg-svc-portfolio p {
	font-size: 15px;
	color: var(--secondary-text);
	margin-bottom: 28px;
	font-weight: 300;
}
.cmg-svc-portfolio-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.cmg-svc-portfolio-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 24px;
	border: 1px solid var(--accent-primary);
	color: var(--accent-primary) !important;
	text-decoration: none !important;
	font-family: 'DM Sans', Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.2s, color 0.2s;
}
.cmg-svc-portfolio-link:hover {
	background: var(--accent-primary) !important;
	color: #ffffff !important;
}
.cmg-svc-portfolio-link svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}
@media (max-width: 600px) {
	.cmg-svc-portfolio-links {
		flex-direction: column;
		align-items: center;
	}
	.cmg-svc-portfolio-link {
		width: 100%;
		justify-content: center;
		max-width: 320px;
	}
}

/* ?? TIME-LAPSE PORTFOLIO VIDEO GRID ???????????????????????
   2-column Vimeo embed grid for the time-lapse portfolio page
   ?????????????????????????????????????????????????????????? */
.cmg-tl-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.cmg-tl-item {
	display: flex;
	flex-direction: column;
	gap: 0;
}
/* 16:9 responsive Vimeo embed */
.cmg-tl-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
}
.cmg-tl-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.cmg-tl-meta {
	padding: 16px 0 0;
}
.cmg-tl-category {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-primary);
	display: block;
	margin-bottom: 6px;
}
.cmg-tl-title {
	font-family: 'DM Serif Text', Georgia, serif;
	font-size: 20px;
	font-weight: 400;
	color: var(--heading-color);
	margin-bottom: 8px;
	line-height: 1.3;
}
.cmg-tl-desc {
	font-size: 14px;
	color: var(--secondary-text);
	line-height: 1.65;
	font-weight: 300;
	margin: 0;
}
@media (max-width: 768px) {
	.cmg-tl-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

/* ?? TIME-LAPSE PORTFOLIO — meta spacing refinement ????????
   Tighter padding below video, better visual rhythm
   ?????????????????????????????????????????????????????????? */
.cmg-tl-meta {
	padding: 14px 0 0;
	border-top: 2px solid var(--accent-primary);
	margin-top: 0;
}

/* ?? SECTION HEADER GRID SAFETY ????????????????????????????
   Ensures the section label never gets captured as a grid
   item if Sytist reorganizes the DOM on render.
   ?????????????????????????????????????????????????????????? */
.cmg-svc-section-hdr {
	grid-column: 1 / -1;
	width: 100%;
}

/* ?? GLOBAL FOOTER BRAND TAGLINE ???????????????????????????
   "One Partner. One Vision." centered above footer content.
   Uses full-width breakout to escape Sytist footer container.
   Append to clarus-theme-override-6.css
   ?????????????????????????????????????????????????????????? */
.cmg-footer-tagline-global {
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
	clear: both;
	float: none;
	text-align: center;
	padding: 36px 24px 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 20px;
	box-sizing: border-box;
}
.cmg-footer-brand-name {
	font-family: 'DM Serif Text', Georgia, serif;
	font-size: 28px;
	font-weight: 400;
	color: var(--primary-text);
	letter-spacing: 0.02em;
	margin-bottom: 8px;
	text-align: center;
	display: block;
}
.cmg-footer-brand-name span {
	color: var(--primary-text);
}
.cmg-footer-brand-tagline {
	font-family: 'DM Sans', Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--secondary-text);
	text-align: center;
	display: block;
}

/* ??? CORPORATE EVENTS: Incentive Travel Callout ?????????????????
   Add to clarus-theme-override-6.css
   ??????????????????????????????????????????????????????????????? */

.cmg-svc-section--callout {
  background: rgba(232, 113, 26, 0.06);
  border-top: 1px solid rgba(232, 113, 26, 0.2);
  border-bottom: 1px solid rgba(232, 113, 26, 0.2);
  padding: 52px 60px;
}

.cmg-svc-callout {
  max-width: 820px;
}

.cmg-svc-callout h3 {
  margin: 10px 0 18px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.cmg-svc-callout p {
  margin-bottom: 14px;
  opacity: 0.85;
}

.cmg-svc-callout-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--orange, #E8711A);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 113, 26, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.cmg-svc-callout-link:hover {
  color: var(--orange-dk, #C95E10);
  border-color: var(--orange-dk, #C95E10);
}

   HOMEPAGE v4 COMPONENTS
   Added April 2026 — homepage redesign
   All variables map to existing theme system
   ============================================ */
    
/* Additional root variables needed for homepage components */
:root {
  --navy:        #0d1b2e;
  --navy-mid:    #162236;
  --navy-card:   #12202f;
  --navy-light:  #1e3050;
  --navy-deep:   #080f1a;
  --off-white:   #f4f4f0;
  --gray:        #8a9ab0;
  --border-dark: rgba(255,255,255,0.07);
  --orange-lgt:  #F0872D;  /* dark mode orange alias */
}

/* ─── LOGO / TRUSTED BY BAR ──────────────────────────────────
   Sytist placement: content row above credibility section    */
.logo-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.logo-bar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--secondary-text);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
  border-right: 1px solid var(--border-dark);
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.logo-bar-sep { display: none; }
.logo-bar-track-outer {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.logo-bar-track-outer::before,
.logo-bar-track-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.logo-bar-track-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--primary-bg), transparent);
}
.logo-bar-track-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--primary-bg), transparent);
}
.logo-bar-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-run 40s linear infinite;
}
.logo-bar-track:hover { animation-play-state: paused; }
.logo-bar-dot {
  color: var(--accent-primary);
  opacity: 0.3;
  font-size: 14px;
  flex-shrink: 0;
  padding: 0 12px;
}
.client-logo {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
  transition: color 0.2s;
}
.client-logo:hover { color: rgba(255,255,255,0.8) !important; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.section-headline {
  font-family: 'Bree Serif', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  font-size: 15px;
  color: var(--secondary-text);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ─── CREDIBILITY INTRO SECTION ──────────────────────────────
   Sytist placement: contentrow below Trusted By bar          */
.credibility {
  background: var(--secondary-bg);
  padding: 90px 48px;
  text-align: center;
}
.credibility-inner {
  max-width: 820px;
  margin: 0 auto;
}
.credibility h2 {
  font-family: 'Bree Serif', serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 36px;
  color: var(--heading-color) !important;
}
.credibility p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--secondary-text) !important;
  margin-bottom: 20px;
  font-weight: 300;
}
.credibility p strong {
  color: var(--primary-text) !important;
  font-weight: 600;
}

/* ─── SERVICES GRID ──────────────────────────────────────────
   Sytist placement: content row / custom HTML block          */
.services {
  background: var(--primary-bg);
  padding: 90px 48px 0;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-tile {
  background: #edf0f5;
  padding: 38px 32px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.service-tile:hover {
  background: #d0d5e0;
  border-color: rgba(232,113,26,0.2);
}
.service-tile:hover::after { transform: scaleX(1); }
.service-tile.featured {
  background: #dde2eb;
  border-color: rgba(232,113,26,0.3);
}
.service-tile.featured::after { transform: scaleX(1); }
.tile-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent-primary);
  opacity: 0.55;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-icon-box {
  width: 46px; height: 46px;
  margin-bottom: 18px;
  background: rgba(232,113,26,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.service-tile h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px;
  color: #ffffff !important;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.25;
  text-shadow: none !important;
}
.service-tile p {
  font-size: 13.5px !important;
  line-height: 1.72;
  color: rgba(255,255,255,0.6) !important;
  font-weight: 300;
  margin-bottom: 20px;
  text-shadow: none !important;
}
.service-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange-lgt) !important;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.service-link::after { content: '→'; }
.service-link:hover { color: var(--accent-primary) !important; }
.new-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent-primary);
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  text-transform: uppercase;
}

/* ─── MARQUEE STRIP ──────────────────────────────────────────
   Sytist placement: content row below services grid          */
.marquee-wrap {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 52px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.marquee-label {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-primary);
  padding: 0 22px;
  border-right: 1px solid var(--border-dark);
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}
.marquee-track-outer {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.marquee-track-outer::before,
.marquee-track-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}
.marquee-track-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--secondary-bg), transparent);
}
.marquee-track-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--secondary-bg), transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-run 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-run {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.m-item {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(220,232,245,0.7);
  padding: 0 18px;
  transition: color 0.2s;
  cursor: default;
}
.m-item:hover { color: var(--orange-lgt) !important; }
.m-dot {
  color: var(--accent-primary);
  opacity: 0.4;
  font-size: 16px;
}
.marquee-cta-btn {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-lgt) !important;
  padding: 0 22px;
  border-left: 1px solid var(--border-dark);
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  transition: background 0.2s;
}
.marquee-cta-btn:hover { background: rgba(255,255,255,0.03); }

/* ─── WHY CLARUS — LIGHT BACKGROUND SECTION ─────────────────
   Sytist placement: contentrow after services/marquee        */
.why-clarus {
  background: var(--secondary-bg);
  padding: 5.5rem 2.5rem;
  border-top: 1px solid var(--border-color);
}
.why-clarus > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-clarus .section-eyebrow { color: var(--accent-primary); }
.why-headline {
  font-family: 'Bree Serif', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy) !important;
  margin-bottom: 52px;
  text-shadow: none !important;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #dddddd;
  border: 1px solid #dddddd;
}
.proof-card {
  background: #edf0f5;
  padding: 44px 32px;
  text-align: center;
}
.proof-stat {
  font-family: 'Bree Serif', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--navy) !important;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: none !important;
}
.proof-stat span {
  font-size: 26px;
  color: var(--accent-primary) !important;
}
.proof-card h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  color: var(--navy) !important;
  margin-bottom: 14px;
  text-transform: uppercase;
  line-height: 1.35;
  text-shadow: none !important;
}
.proof-card p {
  font-size: 13.5px !important;
  line-height: 1.7;
  color: #555555 !important;
  font-weight: 400;
  text-shadow: none !important;
}

/* ─── PUBLISHED IN STRIP ─────────────────────────────────────
   Sytist placement: contentrow / text row                    */
.published-strip {
  background: var(--navy-light);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 32px 48px;
  text-align: center;
}
.pub-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pub-name {
  font-family: 'Bree Serif', serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.5) !important;
  letter-spacing: 1px;
  transition: color 0.2s;
  text-shadow: none !important;
}
.pub-name:hover { color: rgba(255,255,255,0.85) !important; }
.pub-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-primary);
  opacity: 0.4;
  display: inline-block;
}

/* ─── QUOTE / CONTACT SECTION ────────────────────────────────
   Sytist placement: contentrow with two-column layout        */
.quote-section {
  background: var(--secondary-bg);
  padding: 90px 48px;
  position: relative;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,113,26,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.quote-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: start;
}
.quote-title {
  font-family: 'Bree Serif', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--heading-color) !important;
  margin-bottom: 18px;
  text-shadow: none !important;
}
.quote-body {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--secondary-text) !important;
  margin-bottom: 28px;
  font-weight: 300;
}
.creds-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  padding: 0;
}
.creds-list li {
  font-size: 13.5px;
  color: var(--primary-text) !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-shadow: none !important;
}
.creds-list li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: 700;
  flex-shrink: 0;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  border: 1px solid rgba(232,113,26,0.4) !important;
  color: var(--orange-lgt) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 22px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none !important;
  text-shadow: none !important;
}
.btn-call:hover {
  border-color: var(--accent-primary) !important;
  background: rgba(232,113,26,0.08) !important;
}
.quote-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45) !important;
  text-transform: uppercase;
  text-shadow: none !important;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #ffffff !important;
  font-size: 13.5px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary) !important;
}
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-radio {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}
.form-radio label {
  font-size: 13px;
  color: rgba(255,255,255,0.65) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-shadow: none !important;
}
.form-submit {
  width: 100%;
  background: var(--accent-primary) !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px;
  border: none !important;
  cursor: pointer;
  transition: background 0.2s;
  text-shadow: none !important;
}
.form-submit:hover { background: var(--accent-hover) !important; }

/* ─── SCROLL REVEAL ANIMATION ────────────────────────────────
   Applied via IntersectionObserver JS on homepage            */
.reveal {
  animation: revealUp 0.65s ease forwards;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { animation-delay: 0.08s; }
.reveal-delay-2 { animation-delay: 0.16s; }
.reveal-delay-3 { animation-delay: 0.24s; }
.reveal-delay-4 { animation-delay: 0.32s; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── CORPORATE EVENTS: Incentive Travel Callout ─────────────
   Drop-in section for body-corporate-events.html             */
.cmg-svc-section--callout {
  background: rgba(232, 113, 26, 0.06);
  border-top: 1px solid rgba(232, 113, 26, 0.2);
  border-bottom: 1px solid rgba(232, 113, 26, 0.2);
  padding: 52px 60px;
}
.cmg-svc-callout { max-width: 820px; }
.cmg-svc-callout h3 {
  margin: 10px 0 18px;
  font-size: 1.45rem;
  line-height: 1.25;
}
.cmg-svc-callout p {
  margin-bottom: 14px;
  opacity: 0.85;
}
.cmg-svc-callout-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--accent-primary) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(232, 113, 26, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.cmg-svc-callout-link:hover {
  color: var(--accent-hover) !important;
  border-color: var(--accent-hover);
}

/* ─── RESPONSIVE — Homepage components ──────────────────────*/
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .logo-bar { padding: 16px 20px; }
  .logo-bar-logos { gap: 20px; }
  .credibility { padding: 60px 24px; }
  .services { padding: 60px 24px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .marquee-wrap { height: auto; min-height: 52px; flex-wrap: wrap; }
  .why-clarus { padding: 60px 24px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .published-strip { padding: 28px 24px; }
  .quote-section { padding: 60px 24px; }
  .quote-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cmg-svc-section--callout { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr; }
  .pub-row { gap: 20px; }
}

/* ============================================================
		HOMEPAGE FIXES — APPEND TO END OF CSSFILE-TOEDIT.css
		Resolves 6 issues identified May 2026
		Each fix is labelled. These override earlier rules.
		============================================================ */
		

/* ─── FIX 1: DOUBLE ARROW ON SERVICE LINKS ──────────────────
		Root cause: CSS ::after adds '→' but HTML already has '→'
		Fix: Empty the ::after content
		─────────────────────────────────────────────────────────── */
.service-link::after {
	content: '' !important;
}


/* ─── FIX 2: CONSOLIDATOR ADVANTAGE — DARK CARD STYLES ──────
		Root cause: CSS had old light-bg stats version
		Fix: Replace with v3 dark card styling
		Also adds proof-icon / proof-title / proof-body classes
		which the template uses but were never in the CSS file
		─────────────────────────────────────────────────────────── */
.why-clarus {
	background: var(--navy-mid) !important;
	padding: 5.5rem 2.5rem !important;
	border-top: 1px solid var(--border-dark) !important;
}
.why-clarus .section-eyebrow {
	color: var(--orange-lgt) !important;
}
.why-headline {
	font-family: 'Bree Serif', serif !important;
	font-size: clamp(26px, 3vw, 38px) !important;
	font-weight: 900 !important;
	color: #ffffff !important;
	margin-bottom: 12px !important; /* FIX 6 also: was 52px, skipped section-sub */
	text-shadow: none !important;
}
.section-sub {
	color: rgba(220,232,245,0.7) !important;
}
.proof-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 2rem !important;
	margin-top: 3rem !important;
	background: transparent !important; /* was #dddddd */
	border: none !important;            /* was 1px solid #dddddd */
}
.proof-card {
	background: var(--navy-card) !important; /* was #ffffff */
	padding: 1.8rem 1.4rem !important;
	border: 1.5px solid rgba(255,255,255,0.07) !important;
	text-align: left !important;            /* was center */
	transition: border-color 0.25s !important;
}
.proof-card:hover {
	border-color: var(--accent-primary) !important;
}
/* proof-icon div — orange glow square with emoji */
.proof-icon {
	width: 36px;
	height: 36px;
	margin-bottom: 1rem;
	background: rgba(232,113,26,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}
/* proof-title div — card heading */
.proof-title {
	font-family: 'DM Serif Text', serif;
	font-size: 1.05rem !important;
	color: #ffffff !important;
	margin-bottom: 0.5rem !important;
	font-weight: 400 !important;
	text-shadow: none !important;
}
/* proof-body div — card body text */
.proof-body {
	font-size: 0.84rem !important;
	color: rgba(220,232,245,0.7) !important;
	font-weight: 300 !important;
	line-height: 1.6 !important;
	text-shadow: none !important;
}
/* Kill old stat styles — not used by v3 template */
.proof-stat { display: none !important; }
/* Kill old h3/p overrides that fight the new div classes */
.proof-card h3 {
	display: none !important;
}
.proof-card p {
	display: none !important;
}


/* ─── FIX 3: CONTACT FORM — REMOVE BAD GRID FROM quote-inner ─
		Root cause: quote-inner had grid-template-columns: 400px 1fr
		but it only wraps the LEFT column copy (w1 is 35% wide).
		The Sytist form lives in w2, not inside quote-inner.
		Fix: Make quote-inner a plain block
		─────────────────────────────────────────────────────────── */
.quote-inner {
	display: block !important;
	grid-template-columns: unset !important;
	gap: unset !important;
}
/* Keep the quote copy text colors correct */
.quote-title {
	color: #ffffff !important;
	text-shadow: none !important;
}
.quote-body {
	color: rgba(220,232,245,0.7) !important;
}
.creds-list li {
	color: rgba(220,232,245,0.85) !important;
	text-shadow: none !important;
}
/* Sytist form container alignment */
.w1.nofloatsmall,
.w2.nofloatsmall {
	vertical-align: top !important;
}


/* ─── FIX 4: CTA SECTION — LET'S TALK ───────────────────────
		Root cause: .cta-section and related classes were never
		added to the CSS file — only existed in the mockup
		─────────────────────────────────────────────────────────── */
.cta-section {
	text-align: center;
	padding: 3rem 2rem;
}
.cta-headline {
	font-family: 'Bree Serif', serif;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 900;
	color: #ffffff !important;
	margin-bottom: 0.75rem;
	line-height: 1.2;
	text-shadow: none !important;
}
.cta-body {
	font-size: 1rem;
	color: rgba(255,255,255,0.8) !important;
	font-weight: 300;
	max-width: 520px;
	margin: 0 auto 2rem;
	line-height: 1.65;
	text-shadow: none !important;
}
.cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
/* btn-primary and btn-secondary inside cta on fixedbg image */
.cta-section .btn-primary {
	background: var(--accent-primary) !important;
	color: #ffffff !important;
	border: 1px solid var(--accent-primary) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	padding: 14px 32px !important;
	text-decoration: none !important;
	display: inline-block !important;
	text-shadow: none !important;
	border-radius: 0 !important;
}
.cta-section .btn-primary:hover {
	background: var(--accent-hover) !important;
	border-color: var(--accent-hover) !important;
	transform: translateY(-1px) !important;
}
.cta-section .btn-secondary {
	background: transparent !important;
	color: rgba(255,255,255,0.85) !important;
	border: 1.5px solid rgba(255,255,255,0.35) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	padding: 14px 32px !important;
	text-decoration: none !important;
	display: inline-block !important;
	text-shadow: none !important;
	border-radius: 0 !important;
}
.cta-section .btn-secondary:hover {
	border-color: rgba(255,255,255,0.7) !important;
	background: rgba(255,255,255,0.08) !important;
}


/* ─── FIX 5: BROKEN COMMENT BLOCK ───────────────────────────
		Root cause: line ~1976 in file is missing its /* opener
		No action needed here (CSS still parses) but the raw text
		"HOMEPAGE v4 COMPONENTS / Added April 2026..." appears as
		an invalid rule the browser ignores. Low priority.
		─────────────────────────────────────────────────────────── */
		

/* ─── FIX 6: why-headline MARGIN (included in Fix 2 above) ──
		was: margin-bottom: 52px
		now: margin-bottom: 12px  (already set in Fix 2 block)
		─────────────────────────────────────────────────────────── */
		

/* ─── BONUS: Dark section text color protection ──────────────
		The global body p/span rule uses var(--primary-text) which
		in light mode is #1F2937. Dark sections need these overrides
		to keep text readable against navy backgrounds.
		─────────────────────────────────────────────────────────── */
.why-clarus p,
.why-clarus span,
.why-clarus li {
	color: rgba(220,232,245,0.7) !important;
	text-shadow: none !important;
}
.credibility p {
	color: rgba(220,232,245,0.75) !important;
	text-shadow: none !important;
}
.credibility p strong {
	color: #ffffff !important;
}
.service-tile p {
	color: rgba(255,255,255,0.6) !important;
	text-shadow: none !important;
}
.service-tile h3 {
	color: #ffffff !important;
	text-shadow: none !important;
}
.logo-bar-label,
.logo-bar span {
	color: rgba(255,255,255,0.4) !important;
	text-shadow: none !important;
}


/* ─── RESPONSIVE FIXES ───────────────────────────────────────*/
@media (max-width: 1024px) {
	.proof-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
	.proof-grid { grid-template-columns: 1fr !important; }
	.cta-actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   PARALLAX / PHOTO OVERLAY SECTIONS
   All content inside .eto divs over fixed-background photos.
   ═══════════════════════════════════════════════════════════ */
.eto .parallax-section {
  position: static;
  min-height: auto;
  display: block;
  overflow: visible;
}
.eto .parallax-bg { display: none; }
.eto .parallax-overlay { display: none; }
.eto .parallax-content {
  position: static;
  display: block;
  padding: 40px 48px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  z-index: 2;
}
#rand-91126 {
  text-align: left !important;
  width: 100% !important;
}
.eto .parallax-content .section-eyebrow { color: var(--accent-primary) !important; font-size: 12px !important; }
.eto .parallax-content h2 {
  font-family: 'Bree Serif', serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  color: #ffffff !important;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}
.eto .parallax-content p {
  font-size: clamp(14px, 1.1vw, 16.5px);
  color: rgba(255,255,255,0.88) !important;
  font-weight: 400;
  max-width: 640px;
  margin-bottom: 24px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.eto .parallax-content .btn-primary,
.eto .parallax-content .btn-secondary {
  display: inline-block !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  text-decoration: none !important;
  text-shadow: none !important;
  border-radius: 0 !important;
}
.eto .parallax-content .btn-primary {
  background: var(--accent-primary) !important;
  color: #ffffff !important;
  border: none !important;
}
.eto .parallax-content .btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.6) !important;
}

/* Overlay dark boxes on photo sections — unified styling across all 3 parallax rows */
/* Sports sections — left-aligned box anchored to left within the eto container */
#rand-91126 .parallax-content,
#rand-428334 .parallax-content {
  background-color: rgba(0,0,0,0.50) !important;
  padding: 44px 52px !important;
  max-width: 860px !important;
  box-sizing: border-box !important;
  display: block !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}
/* CTA / Consolidation section — centered composition */
#rand-933893 .cta-section {
  background-color: rgba(0,0,0,0.50) !important;
  padding: 44px 52px !important;
  max-width: 860px !important;
  box-sizing: border-box !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}


/* Hero billboard content box — centered within tomw1024's existing 1024px container */
/* NOTE: .tomw1024 already does left:50%; margin-left:-512px centering — don't override left! */
#rand-890424 .parallax-content {
  background-color: rgba(0,0,0,0.50) !important;
  padding: 44px 52px !important;
  max-width: 860px !important;
  box-sizing: border-box !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}

/* Hero billboard headline — larger display size + DM Serif Text */
#rand-890424 .parallax-content h2 {
  font-family: 'DM Serif Text', serif !important;
  font-size: clamp(40px, 5.5vw, 75px) !important;
  letter-spacing: 2px !important;
  line-height: 1.05 !important;
  margin-bottom: 20px !important;
}
#rand-890424 .parallax-content p:not(.section-eyebrow) {
  font-size: clamp(16px, 1.3vw, 20px) !important;
  max-width: 700px !important;
}
/* Sports Photography button — orange */
#rand-428334 .parallax-content .btn-secondary {
  background: var(--accent-primary) !important;
  color: #ffffff !important;
  border: none !important;
}
#rand-428334 .parallax-content .btn-secondary:hover {
  background: var(--accent-hover) !important;
}

/* Let's Talk — View Our Portfolio navy */
#rand-933893 .cta-section .btn-secondary {
  background: #1e3050 !important;
  color: #ffffff !important;
  border: 1.5px solid #2a4270 !important;
}
#rand-933893 .cta-section .btn-secondary:hover {
  background: #253d62 !important;
}

/* CTA text weight */
#rand-933893 .cta-body,
#rand-933893 p {
  font-weight: 500 !important;
  font-size: clamp(15px, 1.1vw, 17px) !important;
  -webkit-font-smoothing: antialiased !important;
}

/* ═══════════════════════════════════════════════════════════
   TWO-COLUMN CONTACT FORM LAYOUT
   ═══════════════════════════════════════════════════════════ */
.cmg-contact-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 145px;
  padding: 0 40px;
  box-sizing: border-box;
}
.cmg-contact-col-text {
  flex: 0 0 35%;
  max-width: 400px;
}
.cmg-contact-col-form {
  flex: 1 1 auto;
  min-width: 0;
}
.cmg-contact-col-form .contentrow {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.cmg-contact-col-form .rowbackground {
  padding: 0 !important;
}
@media (max-width: 800px) {
  .cmg-contact-row {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }
  .cmg-contact-col-text {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   WHY CLARUS — LIGHT/DARK MODE FIXES (inside textoverlay)
   ═══════════════════════════════════════════════════════════ */
#rand-625941 .why-clarus {
  background-color: var(--secondary-bg) !important;
}
#rand-625941 .proof-card {
  background-color: #edf0f5 !important;
  border-color: rgba(0,0,0,0.07) !important;
}
#rand-625941 .why-clarus > .section-eyebrow {
  color: var(--accent-primary) !important;
  text-shadow: none !important;
}
#rand-625941 .why-clarus > .section-headline {
  color: var(--heading-color) !important;
  text-shadow: none !important;
}
#rand-625941 .why-clarus > .section-sub {
  color: var(--secondary-text) !important;
  text-shadow: none !important;
}
.proof-title {
  font-family: 'DM Serif Text', serif;
  font-size: 1.15rem;
  color: var(--heading-color) !important;
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-shadow: none !important;
}
.proof-body {
  font-size: clamp(13.5px, 0.95vw, 15.5px);
  color: var(--secondary-text) !important;
  font-weight: 400;
  line-height: 1.65;
  text-shadow: none !important;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM TEXT — unconditional (no media query)
   ═══════════════════════════════════════════════════════════ */
#rand-625941 .cmg-contact-col-text,
#rand-625941 .cmg-contact-col-text * {
  text-shadow: none !important;
}
#rand-625941 .quote-title {
  color: var(--heading-color) !important;
  text-shadow: none !important;
}
#rand-625941 .quote-body {
  color: var(--secondary-text) !important;
  text-shadow: none !important;
}
#rand-625941 .creds-list li {
  color: var(--primary-text) !important;
  text-shadow: none !important;
}
#rand-625941 .btn-call {
  color: var(--accent-primary) !important;
}
#rand-144179 h2,
#rand-144179 h2 span {
  color: var(--heading-color) !important;
  text-shadow: none !important;
}

/* Form labels */
#rand-625941 .dyncontent .pc,
#rand-625941 .dyncontent .pc.bold,
#rand-625941 .dyncontent label,
#rand-625941 .dyncontent .formcolinner,
#rand-625941 .dyncontent .formcol1,
#rand-625941 .dyncontent .formcol2 {
  color: var(--primary-text) !important;
  text-shadow: none !important;
}
#rand-625941 .dyncontent .bold {
  font-weight: 600 !important;
}

/* Please Select dropdown */
#rand-625941 select,
#rand-625941 .dyncontent select,
#rand-113254 select {
  color: var(--primary-text) !important;
  background-color: var(--input-bg) !important;
  text-shadow: none !important;
}

/* Send button */
#rand-625941 input[type="submit"],
#rand-625941 .submit,
#rand-113254 input[type="submit"],
#rand-113254 .submit {
  background-color: var(--accent-primary) !important;
  color: #ffffff !important;
  border: 1px solid var(--accent-primary) !important;
  text-shadow: none !important;
  font-weight: 700 !important;
}
#rand-625941 input[type="submit"]:hover,
#rand-625941 .submit:hover {
  background-color: var(--accent-hover) !important;
}

/* Form inputs — use #1e3050 navy bg matching featured tile */
html body .dyncontent input[type="text"],
html body .dyncontent input[type="email"],
html body .dyncontent input[type="tel"],
html body .dyncontent input[type="number"],
html body .dyncontent textarea,
html body .dyncontent select,
html body .cmg-contact-col-form input[type="text"],
html body .cmg-contact-col-form input[type="email"],
html body .cmg-contact-col-form input[type="tel"],
html body .cmg-contact-col-form textarea,
html body .cmg-contact-col-form select {
  background-color: #1e3050 !important;
  border: 1px solid #2a4270 !important;
  color: #ffffff !important;
}
html body .dyncontent input:focus,
html body .dyncontent textarea:focus,
html body .dyncontent select:focus {
  border-color: var(--accent-primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(232,113,26,0.2) !important;
}

/* ═══════════════════════════════════════════════════════════
   EYEBROW ORANGE — ALL SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section-eyebrow {
  color: var(--accent-primary) !important;
  font-size: 12px !important;
}
.credibility .section-eyebrow,
.credibility-inner .section-eyebrow,
.services .section-eyebrow,
.services-inner .section-eyebrow {
  color: var(--accent-primary) !important;
  text-shadow: none !important;
}
#rand-625941 .section-eyebrow,
#rand-144179 .section-eyebrow,
#rand-830342 .section-eyebrow {
  color: var(--accent-primary) !important;
  text-shadow: none !important;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE TILE — dark text on grey background
   ═══════════════════════════════════════════════════════════ */
.service-tile h3 {
  color: var(--heading-color) !important;
  text-shadow: none !important;
}
.service-tile p {
  color: var(--secondary-text) !important;
  text-shadow: none !important;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION (Let's Talk / Ready to Consolidate)
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-color-scheme: dark) {
  .proof-card {
    background: #1e3050 !important;
    border-color: rgba(255,255,255,0.07) !important;
  }
  .proof-title { color: #ffffff !important; }
  .proof-body { color: rgba(220,232,245,0.8) !important; }
  #rand-625941 .proof-card {
    background-color: #1e3050 !important;
    border-color: rgba(255,255,255,0.07) !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   DARK MODE OVERRIDES — service tiles navy, text white
   ═══════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  .service-tile {
    background: #1e3050 !important;
    border-color: rgba(255,255,255,0.06) !important;
  }
  .service-tile.featured {
    background: #162236 !important;
  }
  .service-tile h3 {
    color: #ffffff !important;
    text-shadow: none !important;
  }
  .service-tile p {
    color: rgba(220,232,245,0.75) !important;
    text-shadow: none !important;
  }
  .service-tile:hover {
    background: #253d62 !important;
  }
  .tile-num { color: var(--accent-primary) !important; }
  .service-link { color: var(--orange-lgt) !important; }
}

/* ═══════════════════════════════════════════════════════════
   PROOF CARDS LIGHT MODE — kill ghost text-shadow, dark text
   ═══════════════════════════════════════════════════════════ */
.proof-card,
#rand-625941 .proof-card {
  border: 1.5px solid rgba(0,0,0,0.08) !important;
}
.proof-title,
#rand-625941 .proof-title {
  color: var(--heading-color) !important;
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased;
}
.proof-body,
#rand-625941 .proof-body {
  color: var(--secondary-text) !important;
  text-shadow: none !important;
}
.proof-icon { text-shadow: none !important; }

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY — responsive clamp() sizing, font-weight 400
   Applied to all major body text elements
   ═══════════════════════════════════════════════════════════ */
.credibility p {
  font-size: clamp(15px, 1.15vw, 17px) !important;
  line-height: 1.85 !important;
  font-weight: 400 !important;
}
.section-sub {
  font-size: clamp(14px, 1.05vw, 16px) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}
.service-tile p {
  font-size: clamp(13px, 0.95vw, 15px) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}
.proof-body {
  font-size: clamp(13.5px, 0.95vw, 15.5px) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}
.quote-body {
  font-size: clamp(14px, 1vw, 16px) !important;
  font-weight: 400 !important;
  line-height: 1.8 !important;
}
.eto .parallax-content p {
  font-size: clamp(14px, 1.1vw, 16.5px) !important;
  font-weight: 400 !important;
}
.cta-body {
  font-size: clamp(15px, 1.1vw, 17px) !important;
  font-weight: 400 !important;
}
.creds-list li {
  font-size: clamp(13px, 0.95vw, 15px) !important;
  font-weight: 400 !important;
}

/* Global font-weight reset — V4 has font-weight:300 in many places */
.credibility p,
.credibility-inner p,
.services-inner p,
.proof-body,
.quote-body,
.creds-list li,
.eto .parallax-content p,
.cmg-contact-col-text p,
.cta-body,
.cta-section p {
  font-weight: 400 !important;
}

/* ═══════════════════════════════════════════════════════════
   DARK MODE PROOF CARDS — ensure white text (re-confirm)
   ═══════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  .proof-title,
  #rand-625941 .proof-title {
    color: #ffffff !important;
    text-shadow: none !important;
  }
  .proof-body,
  #rand-625941 .proof-body {
    color: rgba(220,232,245,0.8) !important;
    text-shadow: none !important;
  }
}


/* ─── KILL TEXT-SHADOW IN LIGHT CONTENT SECTIONS ──────────────
   Sytist's hero-text-shadow (2px 2px 4px rgba(0,0,0,0.8)) leaks
   into .credibility and .services paragraphs in light mode.
   Using compound selectors to beat specificity (0,1,1).
   ────────────────────────────────────────────────────────────── */
.credibility p,
.credibility p strong,
.credibility p em,
.credibility-inner p,
.credibility-inner * {
  text-shadow: none !important;
  color: var(--secondary-text) !important;
}
.credibility p strong {
  color: var(--primary-text) !important;
}
.services .section-sub,
.services-inner .section-sub,
.services-inner p {
  text-shadow: none !important;
  color: var(--secondary-text) !important;
}
.section-headline,
.credibility h2 {
  text-shadow: none !important;
}

/* ─── LIGHT MODE TILE HOVER — stays grey, not navy ─────────── */
@media (prefers-color-scheme: dark) {
  .service-tile:hover {
    background: #253d62 !important;
  }
}

/* ─── DROPDOWN — lighter grey background ───────────────────── */
#rand-625941 select,
#rand-625941 .dyncontent select,
#rand-113254 select,
html body .dyncontent select,
html body .cmg-contact-col-form select {
  background-color: #f0f2f5 !important;
  color: var(--primary-text) !important;
  border: 1px solid #d0d5de !important;
  text-shadow: none !important;
}
@media (prefers-color-scheme: dark) {
  #rand-625941 select,
  #rand-625941 .dyncontent select,
  #rand-113254 select,
  html body .dyncontent select,
  html body .cmg-contact-col-form select {
    background-color: #1e3050 !important;
    color: #ffffff !important;
    border: 1px solid #2a4270 !important;
  }
}