/* ============================================
   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 0 0;        /* no side padding — grid goes edge-to-edge */
}
.services-inner {
  max-width: 1400px;        /* match Trusted By bar width */
  margin: 0 auto;
  padding: 0 48px;
}
.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(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  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 0 0; }
  .services-inner { max-width: 1400px; padding: 0 24px; }
  .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: #edf0f5;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: #1e3050;
}
/* 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: 15px !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: 15px !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;
}



/* ─── HERO OVERLAY — MOBILE FIX ──────────────────────────────
   On small screens the overlay overflows the slideshow container
   and bleeds into the Trusted By bar. Shrink text + box,
   hide body copy, keep headline only.
   ─────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  #rand-890424 .parallax-content {
    padding: 24px 24px !important;
    max-width: 100% !important;
  }
  #rand-890424 .parallax-content h2 {
    font-size: clamp(22px, 5.5vw, 30px) !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 0 !important;
    line-height: 1.15 !important;
  }
  /* Hide subtitle paragraph on mobile — headline only */
  #rand-890424 .parallax-content p:not(.section-eyebrow) {
    display: none !important;
  }
  /* Also hide eyebrow label on very small screens */
  #rand-890424 .parallax-content .section-eyebrow {
    display: 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;
}




/* ═══════════════════════════════════════════════════════════
   CATEGORY / SERVICES PAGE — MAX-WIDTH + CARD REDESIGN
   Works WITH Sytist's placeonphoto() JS layout engine.
   We style the cards visually without fighting JS-set widths.
   ═══════════════════════════════════════════════════════════ */

/* Page container constraint */
#pageContentContainer.categorycontent {
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  display: block !important;
  box-sizing: border-box;
  padding: 0 40px !important;
}

/* Page title */
#pageContentContainer.categorycontent .pc.title {
  padding: 20px 0 8px !important;
}
#pageContentContainer.categorycontent .pc.title h1 a {
  color: var(--accent-primary) !important;
}

/* ─── Card visual styling — inline-block for centering ─── */
#listing-onphoto {
  text-align: center !important;
}
#listing-onphoto .preview {
  display: inline-block !important;
  float: none !important;
  vertical-align: top !important;
  background: #1e3050 !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  cursor: pointer !important;
  transition: border-color 0.25s !important;
  /* Sytist JS sets width/height inline — we keep those */
}
#listing-onphoto .preview:hover {
  border-color: var(--accent-primary) !important;
}

/* Photo: shown (Sytist hides it via .onphotophoto { display:none }),
   we restore it and make it fill the card */
#listing-onphoto .preview .onphotophoto {
  display: block !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.35s ease !important;
}
#listing-onphoto .preview:hover .onphotophoto {
  transform: scale(1.04) !important;
}

/* The anchor wrapping the photo needs to fill the card too */
#listing-onphoto .preview > a:first-child {
  display: block !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Title overlay — dark gradient + orange text */
#listing-onphoto .preview .text {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  padding: 36px 16px 14px !important;
  background: linear-gradient(to top, rgba(10,18,40,0.95) 55%, transparent) !important;
  box-sizing: border-box !important;
  z-index: 2 !important;
}
#listing-onphoto .preview .text .headline {
  padding: 0 !important;
}
#listing-onphoto .preview .text .headline h2 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  text-shadow: none !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
#listing-onphoto .preview .text .headline h2 a {
  color: var(--accent-primary) !important;
  text-decoration: none !important;
}
#listing-onphoto .preview .text .headline h2 a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Orange bottom bar on hover */
#listing-onphoto .preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  z-index: 3;
}
#listing-onphoto .preview:hover::after {
  transform: scaleX(1);
}

@media (max-width: 600px) {
  #pageContentContainer.categorycontent {
    padding: 0 20px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   GALLERY / PORTFOLIO PAGE MAX-WIDTH + PADDING
   Portfolio pages use #galleries instead of #standardPage
   ═══════════════════════════════════════════════════════════ */
#galleries {
  max-width: 1400px;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}
#galleries .title,
#galleries .categories,
#galleries .share,
#galleries .text {
  padding-left: 40px !important;
  padding-right: 40px !important;
  box-sizing: border-box;
}
#galleries .title {
  padding-top: 8px !important;
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE MAX-WIDTH + TITLE PADDING
   Constrains standard inner pages (Contact, About, Services, etc.)
   to 1400px centered. Homepage full-width breakout sections still
   work because they use 100vw / viewport-relative math.
   ═══════════════════════════════════════════════════════════ */
#standardPage {
  max-width: 1400px;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}
#standardPage .title {
  padding: 20px 40px 0 !important;
  box-sizing: border-box;
}
#standardPage .text {
  padding: 0 40px !important;
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════
   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;
  }
}

/* ─── HERO OVERLAY MOBILE — placed AFTER desktop rules to win cascade ─── */
@media (max-width: 800px) {
  #rand-890424 .parallax-content {
    padding: 16px 20px !important;
    max-width: 100% !important;
    display: inline-block !important;
    margin-top: 60px !important;
    vertical-align: top !important;
    background-color: rgba(0,0,0,0.18) !important;
  }
  #rand-890424 .parallax-content h2 {
    font-size: 18px !important;
    letter-spacing: 0.3px !important;
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
  }
  #rand-890424 .parallax-content p:not(.section-eyebrow) {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-top: 10px !important;
    max-width: 100% !important;
    opacity: 0.85;
  }
  #rand-890424 .parallax-content .section-eyebrow {
    display: none !important;
  }
}

/* ─── MOBILE SCROLL PERFORMANCE ─────────────────────────────
   background-attachment: fixed causes severe scroll lag on iOS
   Safari — it repaints on every frame. Disable on mobile.
   Also add will-change and touch optimizations site-wide.
   ─────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  /* Disable fixed parallax backgrounds on mobile */
  .fixedbg,
  body .photodiv.fixedbg,
  body .photocontainerbg.photodiv.fixedbg {
    background-attachment: scroll !important;
    background-size: cover !important;
  }

  /* Promote parallax sections to GPU layer */
  .contentrow.ssto,
  #rand-91126,
  #rand-428334,
  #rand-625941,
  #rand-933893 {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* Smooth momentum scrolling on iOS */
  body {
    -webkit-overflow-scrolling: touch;
  }
}

/* ─── MOBILE: MARQUEE SPEED + MORE SERVICES STRIP ───────────*/
@media (max-width: 800px) {
  /* Speed up Trusted By bar on mobile */
  .logo-bar-track {
    animation-duration: 20s !important;
  }

  /* Hide More Services marquee strip on mobile — keep View All button */
  .marquee-wrap .marquee-label,
  .marquee-wrap .marquee-track-outer {
    display: none !important;
  }
  .marquee-wrap {
    justify-content: center !important;
    border-top: none !important;
    border-bottom: none !important;
    background: transparent !important;
    height: auto !important;
    padding: 12px 0 !important;
  }
  .marquee-cta-btn {
    border-left: none !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    padding: 10px 24px !important;
    border: 1px solid var(--accent-primary) !important;
    border-radius: 2px !important;
  }
}

/* ─── MOBILE: FIX MARQUEE RESET ON TOUCH ────────────────────
   On iOS, touch = hover. The hover-pause rule restarts the
   animation from 0 every time the user lifts their finger.
   Disable pause-on-hover for both marquees on mobile.
   ─────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  .logo-bar-track:hover,
  .marquee-track:hover {
    animation-play-state: running !important;
  }
}


/* Hide stray page title on template-view pages */
.content-3208 #standardPage .title { display: none; }

/* Services listing - fix image fill/positioning */
#listing-onphoto .preview {
	position: relative;
	overflow: hidden;
}

#listing-onphoto .preview > a {
	display: block;
	width: 100%;
	height: 100%;
}

#listing-onphoto .onphotophoto {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	margin: 0 !important;
}

/* Services listing - correct 4-column fix */
/* margin: 14px in local CSS = 28px total horizontal per card */

/* 4 columns when enough room (~1280px+ viewport) */
@media (min-width: 1280px) {
	html body #listing-onphoto .preview {
		width: calc(22% - 22px) !important;
		margin: 14px !important;
	}
}

/* 3 columns between 900-1279px */
@media (max-width: 1279px) and (min-width: 900px) {
	html body #listing-onphoto .preview {
		width: calc(30% - 24px) !important;
		margin: 14px !important;
	}
}

/* 2 columns on tablet */
@media (max-width: 899px) and (min-width: 549px) {
	html body #listing-onphoto .preview {
		width: calc(80% - 28px) !important;
		margin: 14px !important;
	}
}

/* 1 column mobile */
@media (max-width: 539px) {
	html body #listing-onphoto .preview {
		width: calc(100% - 28px) !important;
		margin: 14px !important;
	}
}

/* Fix portfolio buttons not centering on mobile */
@media (max-width: 600px) {
	.cmg-svc-portfolio-links {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		width: 100% !important;
	}
	
	.cmg-svc-portfolio-link {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		width: 100% !important;
		max-width: 360px !important;
		box-sizing: border-box !important;
		text-align: center !important;
	}
}

/* =====================================================
	MOBILE SERVICE PAGE FIXES
	===================================================== */
	
/* 1. Hide stray page title on template-view service pages.
	On desktop the hero's negative margin covers it visually.
	On mobile the collapsed header is too short, so it peeks through. */
@media (max-width: 800px) {
	#contentcontainer ~ #standardPage .title {
	display: none !important;
	}
}

/* 2. Commercial page hero - wrapper has -168px margin-top which
	over-pulls the hero on mobile where the header is shorter.
	Reset to -85px to match the other service pages. */
@media (max-width: 800px) {
	.content-3203 #rand-10623 {
	margin-top: -85px !important;
	}
}

/* Light mode form input background - match dropdown light grey */
html[data-theme="light"] {
	--input-bg: #F3F4F6;
	--input-border: #D1D5DB;
}

/* Form inputs - light mode default */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
	background-color: #F3F4F6 !important;
	color: #1E293B !important;
	border: 1px solid #D1D5DB !important;
}

/* Form inputs - dark mode */
@media (prefers-color-scheme: dark) {
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="number"],
	textarea {
		background-color: #1E293B !important;
		color: #F1F5F9 !important;
		border: 1px solid #334155 !important;
	}
}


/* Menu link colors - hardcoded to avoid CSS variable color scheme conflicts */
body #topMainMenu a {
	color: #1F2937 !important;
}

@media (prefers-color-scheme: dark) {
	body #topMainMenu a {
		color: #B6C0CD !important;
	}
}

/* =====================================================
		CONTACT PAGE — left column text visibility
		(mirrors #rand-625941 rules but scoped to contact page)
		===================================================== */
.cmg-contact-col-text .quote-title {
	color: var(--heading-color) !important;
	text-shadow: none !important;
}
.cmg-contact-col-text .quote-body,
.cmg-contact-col-text p {
	color: var(--secondary-text) !important;
	text-shadow: none !important;
}
.cmg-contact-col-text .creds-list li {
	color: var(--primary-text) !important;
	text-shadow: none !important;
}

/* =====================================================
		FORM INPUTS — light mode override for hardcoded #1e3050
		===================================================== */
@media not (prefers-color-scheme: dark) {
	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 .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 {
		background-color: #F3F4F6 !important;
		border: 1px solid #D1D5DB !important;
		color: #1F2937 !important;
	}
}

/* Override transparent background forced on all textoverlay children —
		specifically restores correct input colors inside homepage hero sections */
@media not (prefers-color-scheme: dark) {
	body .contentrow.textoverlay input[type="text"],
	body .contentrow.textoverlay input[type="email"],
	body .contentrow.textoverlay input[type="tel"],
	body .contentrow.textoverlay input[type="number"],
	body .contentrow.textoverlay textarea {
		background-color: #F3F4F6 !important;
		color: #1F2937 !important;
		border: 1px solid #D1D5DB !important;
	}
}

@media (prefers-color-scheme: dark) {
	body .contentrow.textoverlay input[type="text"],
	body .contentrow.textoverlay input[type="email"],
	body .contentrow.textoverlay input[type="tel"],
	body .contentrow.textoverlay input[type="number"],
	body .contentrow.textoverlay textarea {
		background-color: #1E293B !important;
		color: #F1F5F9 !important;
		border: 1px solid #334155 !important;
	}
}


/* =====================================================
		FORM INPUTS — override textoverlay transparent wildcard
		CMG-CSS-V5.css line 202 forces background:transparent
		on ALL .contentrow.textoverlay children, including
		form inputs inside rand-625941 on the homepage.
		===================================================== */
@media not (prefers-color-scheme: dark) {
	body .contentrow.textoverlay input[type="text"],
	body .contentrow.textoverlay input[type="email"],
	body .contentrow.textoverlay input[type="tel"],
	body .contentrow.textoverlay input[type="number"],
	body .contentrow.textoverlay textarea,
	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 {
		background-color: #F3F4F6 !important;
		color: #1F2937 !important;
		border: 1px solid #D1D5DB !important;
	}
}

@media (prefers-color-scheme: dark) {
	body .contentrow.textoverlay input[type="text"],
	body .contentrow.textoverlay input[type="email"],
	body .contentrow.textoverlay input[type="tel"],
	body .contentrow.textoverlay input[type="number"],
	body .contentrow.textoverlay textarea,
	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 {
		background-color: #1E293B !important;
		color: #F1F5F9 !important;
		border: 1px solid #334155 !important;
	}
}

/* Sports sponsor tag strip — constrain width to prevent orphan wrap */
.cmg-svc-sports {
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

/* ============================================
	CMG STORE & E-COMMERCE THEME CONSOLIDATION
	Append to clarus-theme-override-6.css
	Replaces all hardcoded legacy greys in the
	Sytist store views with brand CSS variables:
	#4F4F4F/#404040/#BABABA cards
	#242424/#2B2B2B/#C2C2C2 primary buttons
	#454545/#575757/#666666 option pills/disabled
	#302B2B popups, #171717 thumb borders
	============================================ */
	
/* --------------------------------------------
	1. ORDER VIEW & CART PAGE
	(view=order, view=orders, view=cart)
	-------------------------------------------- */
#orderitems .item,
#viewcart .cartitem {
	background-color: var(--card-bg) !important;
	border: 1px solid var(--border-color) !important;
	color: var(--primary-text) !important;
	box-shadow: var(--shadow-sm) !important;
	border-radius: 4px !important;
}
#orderitems .item a,
#viewcart .cartitem a {
	color: var(--accent-primary) !important;
}
#orderitems .item a:hover,
#viewcart .cartitem a:hover {
	color: var(--accent-hover) !important;
}
/* Per-photo Download buttons */
#orderitems .icon-download {
	background: var(--accent-primary) !important;
	border: 1px solid var(--accent-primary) !important;
	color: #FFFFFF !important;
	text-shadow: none !important;
	border-radius: 4px !important;
}
#orderitems .icon-download a,
#orderitems .icon-download a:hover {
	color: #FFFFFF !important;
	text-decoration: none !important;
}
#orderitems .icon-download:hover {
	background: var(--accent-hover) !important;
	border-color: var(--accent-hover) !important;
}
/* Kill stray secondary-bg boxes behind price/qty columns
	(caused by the broad body .hidesmall rule earlier in this file) */
#orderitems .hidesmall,
#viewcart .hidesmall,
#pageContentContainer .pc .hidesmall {
	background: transparent !important;
	background-color: transparent !important;
}
/* Thumbnails: replace near-black #171717 borders */
#viewcart .cartitem .thumbnail .thumb,
#orderitems .item img.thumb {
	border: 1px solid var(--border-color) !important;
}

/* --------------------------------------------
	2. PRODUCT ROWS, LISTINGS & INFO CARDS
	(buy-photo product list, presell, listings)
	-------------------------------------------- */
.photoprod .underline,
.photoprod .underline:hover,
.syv2products li,
.presellproductrow,
.presellproductrow:hover,
.customerphotosproductrow,
.customerphotosproductrow:hover,
#listing-standard .preview,
#regguestbook .preview,
#ebmessage,
#stackedThumbnails .styled,
#photoGallery .styled,
#photoGallery .thumbContainer,
.viewfaq,
.faqs,
#photoCartLogin {
	background: var(--card-bg) !important;
	background-color: var(--card-bg) !important;
	border-color: var(--border-color) !important;
	color: var(--primary-text) !important;
	filter: none !important;
}
.photoprod .underline a,
.syv2products li a,
.presellproductrow a,
#listing-standard .preview a,
#photoGallery .thumbContainer a {
	color: var(--accent-primary) !important;
}
.photoprod .underline a:hover,
.syv2products li a:hover,
.presellproductrow a:hover,
#listing-standard .preview a:hover,
#photoGallery .thumbContainer a:hover {
	color: var(--accent-hover) !important;
}
/* Price grouping header bars in the buy-photo window */
.pricegroupingtitle {
	background: var(--secondary-bg) !important;
	border: 1px solid var(--border-color) !important;
	color: var(--heading-color) !important;
}
/* Product names/prices inside rows keep readable heading color */
.photoprod .underline h3,
.photoprod .underline h4,
.customerproductname {
	color: var(--heading-color) !important;
}

/* --------------------------------------------
	3. CART FLYOUT, TOASTS & STORE POPUPS
	-------------------------------------------- */
/* Top cart flyout */
#viewcarttop {
	background-color: var(--card-bg) !important;
	border: 1px solid var(--border-color) !important;
	color: var(--primary-text) !important;
}
#viewcarttop h3 { color: var(--heading-color) !important; }
#viewcartinner a { color: var(--accent-primary) !important; }
#viewcartinner a:hover { color: var(--accent-hover) !important; }
#viewcartminilinks a {
	background: var(--accent-primary) !important;
	border: 1px solid var(--accent-primary) !important;
	color: #FFFFFF !important;
}
#viewcartminilinks a:hover {
	background: var(--accent-hover) !important;
	border-color: var(--accent-hover) !important;
	color: #FFFFFF !important;
}
/* "Added to cart" notice toast */
.cartnotice {
	background: var(--card-bg) !important;
	color: var(--primary-text) !important;
	border: 1px solid var(--border-color) !important;
}
.cartnoticecontent li a,
.cartnoticecontent li a:visited {
	background: var(--accent-primary) !important;
	color: #FFFFFF !important;
}
.cartnoticecontent li a:hover {
	background: var(--accent-hover) !important;
}
/* Gallery customer windows & bottom action bars */
.customerwindows,
#useractions,
#productactions {
	background: var(--card-bg) !important;
	color: var(--primary-text) !important;
	border-color: var(--border-color) !important;
}
/* Content popups (terms, splash, store item, package editor) */
#termsandconditions,
#afftermsandconditions,
#splashcontainer,
#storeitemcontainer,
#packageitemwindow,
#passwordSite {
	background: var(--card-bg) !important;
	color: var(--primary-text) !important;
	border-color: var(--border-color) !important;
}
/* Photo-context popups: keep photo-viewer treatment for
	consistency with #photoprods (crop + package windows) */
#photocrop,
#photopackagecontainer,
.photoviewnameclose,
.viewimageshoppingcart {
	background: var(--photo-viewer-bg) !important;
	color: var(--photo-viewer-text) !important;
}
/* Photo hover preview tooltips */
#photo-preview,
#package-photo-preview {
	background-color: var(--card-bg) !important;
	border-color: var(--border-color) !important;
	color: var(--primary-text) !important;
}

/* --------------------------------------------
	4. PRIMARY ACTION BUTTONS
	(old #242424 grey family -> brand orange)
	-------------------------------------------- */
.checkout,
a.checkout,
a.checkout:visited,
.checkoutcart,
a.checkoutcart,
a.checkoutcart:visited,
.addtocart,
#addtocart,
.preregaddtocart,
.addcartbutton,
.addproducttocart,
.loadMore,
#addonephoto,
.backtoproductlist a {
	background: var(--accent-primary) !important;
	border: 1px solid var(--accent-primary) !important;
	color: #FFFFFF !important;
	text-shadow: none !important;
	border-radius: 4px !important;
}
.checkout:hover,
a.checkout:hover,
.checkoutcart:hover,
a.checkoutcart:hover,
.addtocart:hover,
#addtocart:hover,
.preregaddtocart:hover,
.addcartbutton:hover,
.loadMore:hover,
#addonephoto:hover,
.backtoproductlist a:hover {
	background: var(--accent-hover) !important;
	border-color: var(--accent-hover) !important;
	color: #FFFFFF !important;
}
/* Icons inside these buttons follow button text */
.checkout .the-icons,
.checkoutcart .the-icons,
.addtocart .the-icons,
.preregaddtocart .the-icons,
#addonephoto .the-icons,
#addtocart .the-icons {
	color: #FFFFFF !important;
	text-shadow: none !important;
}
/* Order items also route button text through this fix */
#orderitems .item a.checkout,
#orderitems .item a.checkoutcart,
#orderitems .item a.checkout:visited,
#orderitems .item a.checkoutcart:visited {
	color: #FFFFFF !important;
}

/* --------------------------------------------
	5. OPTION PILLS, TABS & TOGGLES
	(old #454545 unselected / #242424 selected)
	-------------------------------------------- */
ul.productoption li,
ul.productoptionselect li,
ul.proofbutton li,
#grouptabs .tab,
#croptabs .tab,
#specialdateselect .tab,
#navstock .tab {
	background: var(--secondary-bg) !important;
	border: 1px solid var(--border-color) !important;
	color: var(--primary-text) !important;
	border-radius: 4px !important;
}
ul.productoption li:hover,
ul.productoptionselect li:hover,
ul.proofbutton li:hover,
#grouptabs .tab:hover,
#croptabs .tab:hover,
#specialdateselect .tab:hover,
#navstock .tab:hover {
	background: var(--accent-hover) !important;
	border-color: var(--accent-hover) !important;
	color: #FFFFFF !important;
}
/* Selected states */
.productoption .on,
.productoptionselect .on,
#grouptabs .tabon,
#croptabs .tabon,
#specialdateselect .tabon {
	background: var(--accent-primary) !important;
	border: 1px solid var(--accent-primary) !important;
	color: #FFFFFF !important;
	box-shadow: var(--shadow-sm) !important;
}

/* --------------------------------------------
	6. DISABLED & PROGRESS STATES
	-------------------------------------------- */
#addtocartdisabled,
.disabledinput,
.nobutton,
#navstock .tabdisabled,
#useractions .disabledbutton,
#productactions .disabledbutton {
	background: var(--secondary-bg) !important;
	border: 1px solid var(--border-color) !important;
	color: var(--secondary-text) !important;
	opacity: 0.6 !important;
}
/* Checkout progress indicators */
.checkoutprogressdone {
	background: var(--accent-primary) !important;
	border: 1px solid var(--accent-primary) !important;
	color: #FFFFFF !important;
}
.checkoutprogress {
	background: var(--secondary-bg) !important;
	border: 1px solid var(--border-color) !important;
	color: var(--secondary-text) !important;
}

/* ============================================
	SALES ACCOUNT MINI MENU — CONTEXT SCOPED
	Hidden on business pages, shown on sales
	galleries + store/account views via JS flag
	============================================ */
#shopmenucontainer {
	display: none !important;
}
html.cmg-sales-context #shopmenucontainer {
	display: block !important;
}

/* ============================================
	BUY-PHOTO WINDOW FIX — always-dark context
	Desktop panel (#photoprods/#photoprodsinner) +
	mobile panel (#photoproductsnexttophoto).
	The photo viewer forces light text on all
	children in BOTH modes — never use --card-bg
	(mode-dependent) inside these containers.
	============================================ */
#photoprods .photoprod .underline,
#photoprodsinner .photoprod .underline,
#photoproductsnexttophoto .photoprod .underline,
#photoprods .syv2products li,
#photoprodsinner .syv2products li,
#photoproductsnexttophoto .syv2products li {
	background: #091022 !important;   /* navy card, both modes */
	border: 1px solid rgba(241, 245, 249, 0.15) !important;
	color: #F1F5F9 !important;
}
#photoprods .pricegroupingtitle,
#photoprodsinner .pricegroupingtitle,
#photoproductsnexttophoto .pricegroupingtitle {
	background: #0F1A38 !important;
	border: 1px solid rgba(241, 245, 249, 0.15) !important;
	color: #F1F5F9 !important;
}

/* Product tabs (Downloads / Products / Specialty Products) */
#photoprods .tab,
#photoprodsinner .tab,
#photoproductsnexttophoto .tab {
	background: rgba(241, 245, 249, 0.08) !important;
	border: 1px solid rgba(241, 245, 249, 0.25) !important;
	color: #F1F5F9 !important;
	border-radius: 4px !important;
}
#photoprods .tab:hover,
#photoprodsinner .tab:hover,
#photoproductsnexttophoto .tab:hover {
	background: var(--accent-hover) !important;
	border-color: var(--accent-hover) !important;
	color: #FFFFFF !important;
}
#photoprods .tabon,
#photoprodsinner .tabon,
#photoproductsnexttophoto .tabon {
	background: var(--accent-primary) !important;
	border: 1px solid var(--accent-primary) !important;
	color: #FFFFFF !important;
}

/* Inputs inside the panel: "Add a Car" fields, qty boxes.
	Global input rules give these a light bg in light mode
	while panel text is forced light — fix to dark inputs */
#photoprods input[type="text"],
#photoprodsinner input[type="text"],
#photoproductsnexttophoto input[type="text"],
#photoprods input[type="number"],
#photoprodsinner input[type="number"],
#photoproductsnexttophoto input[type="number"],
#photoprods .qty,
#photoprodsinner .qty,
#photoproductsnexttophoto .qty,
#photoprods select,
#photoprodsinner select,
#photoproductsnexttophoto select,
#photoprods textarea,
#photoprodsinner textarea,
#photoproductsnexttophoto textarea {
	background-color: #1E293B !important;
	border: 1px solid #334155 !important;
	color: #F1F5F9 !important;
}

/* Mobile panel shell stays dark in both modes */
#photoproductsnexttophoto,
#photoproductsnexttophoto .inner {
	background: var(--photo-viewer-bg) !important;
	color: var(--photo-viewer-text) !important;
}

/* ============================================
   BUY-PHOTO PANEL FIX v2 — .photoviewproducts
   This viewer renders products in
   #photobuycontainer / .photoviewproducts,
   NOT #photoprods — v1 selectors never matched.
   Always-dark context: never mode-dependent
   variables for backgrounds in here.
   ============================================ */
/* Panel shell: dark in both modes */
div.photoviewproducts {
    background: var(--photo-viewer-bg) !important;
    color: #F1F5F9 !important;
}
.photoviewproducts #photobuycontainer,
.photoviewproducts #photobuyproducts,
.photoviewproducts .productscontainer,
.photoviewproducts .prodgroups,
.photoviewproducts .syv2products {
    background: transparent !important;
    background-color: transparent !important;
}

/* Product cards + list rows: navy, both modes */
.photoviewproducts .photoprod .underline,
#photobuycontainer .photoprod .underline,
.photoviewproducts .syv2products li,
#photobuycontainer .syv2products li {
    background: #091022 !important;
    background-color: #091022 !important;
    border: 1px solid rgba(241, 245, 249, 0.15) !important;
    color: #F1F5F9 !important;
}

/* Tabs: Downloads / Products / Specialty Products */
.photoviewproducts #grouptabs .tab,
#photobuycontainer #grouptabs .tab,
.photoviewproducts .pricegrouptoptabs .tab {
    background: rgba(241, 245, 249, 0.08) !important;
    border: 1px solid rgba(241, 245, 249, 0.25) !important;
    color: #F1F5F9 !important;
    border-radius: 4px !important;
}
.photoviewproducts #grouptabs .tab:hover,
#photobuycontainer #grouptabs .tab:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: #FFFFFF !important;
}
.photoviewproducts #grouptabs .tabon,
#photobuycontainer #grouptabs .tabon,
.photoviewproducts .pricegrouptoptabs .tabon {
    background: var(--accent-primary) !important;
    border: 1px solid var(--accent-primary) !important;
    color: #FFFFFF !important;
}

/* Inputs: Add a Car fields, qty boxes — dark, both modes */
#photobuycontainer input[type="text"],
#photobuycontainer input[type="number"],
#photobuycontainer .qty,
#photobuycontainer select,
#photobuycontainer textarea,
.photoviewproducts input[type="text"],
.photoviewproducts input[type="number"],
.photoviewproducts .qty,
.photoviewproducts select,
.photoviewproducts textarea {
    background-color: #1E293B !important;
    border: 1px solid #334155 !important;
    color: #F1F5F9 !important;
}
