:root {
			--brand-primary: #7a9e87;
			--brand-primary-hover: color-mix(in srgb, var(--brand-primary) 92%, black);
			--brand-on-primary: #ffffff; /* auto-set by JS — do not edit */
			--brand-primary-light: #eaf2ec;
			--brand-primary-glow: color-mix(in srgb, var(--brand-primary) 15%, transparent);

			--brand-secondary: #e8cfc4;
			--brand-secondary-hover: color-mix(in srgb, var(--brand-secondary) 80%, black);
			--brand-secondary-light: color-mix(in srgb, var(--brand-secondary) 25%, #ffffff);
			--brand-secondary-glow: rgba(212,168,154,.3);

			--color-dark: #4a3728;
			--color-surface: #fefcfa;
			--color-border: #ede5df;
			--color-muted: #9a8880;
			--color-white: #ffffff;

			--font-heading: 'Bodoni Moda', Georgia, serif;
			--font-body: 'Jost', sans-serif;

			--r-sm: 6px;
			--r-md: 18px;
			--r-lg: 30px;
			--r-xl: 48px;
		}

		html {
			scroll-behavior: smooth;
		}

		*, *::before, *::after {
			box-sizing: border-box;
		}

		body {
			font-family: var(--font-body);
			color: var(--color-dark);
			background: var(--color-surface);
			-webkit-font-smoothing: antialiased;
			overflow-x: hidden;
		}

		h1, h2, h3, h4, h5, h6 {
			font-family: var(--font-heading);
		}

		/* NAV */
		.navbar {
			background: var(--color-surface);
			border-bottom: 1px solid var(--color-border);
			padding: 1rem 0;
		}

		.navbar-brand {
			font-family: var(--font-heading);
			font-weight: 500;
			font-size: 1.35rem;
			color: var(--color-dark) !important;
			letter-spacing: .04em;
			display: flex;
			align-items: center;
			gap: .7rem;
		}

        .nav-logo {
            max-width: 290px;
            height: auto;
        }

			.navbar-brand img {
				max-height: 90px;
				border-radius: 50%;
				object-fit: contain;
				padding: 2px;
			}

		.nav-link {
			font-family: var(--font-body);
			font-weight: 500;
			font-size: .82rem;
			letter-spacing: .1em;
			text-transform: uppercase;
			color: var(--color-muted) !important;
			padding: .4rem .9rem !important;
			transition: color .2s;
		}

			.nav-link:hover {
				color: var(--brand-primary) !important;
			}

		.btn-nav {
			background: var(--brand-primary);
			color: var(--brand-on-primary, #ffffff) !important;
			border-radius: 100px;
			padding: .45rem 1.3rem !important;
			font-size: .78rem;
			font-weight: 600;
			letter-spacing: .08em;
			text-transform: uppercase;
			transition: background .2s,transform .15s;
			box-shadow: 0 4px 14px var(--brand-primary-glow);
		}

			.btn-nav:hover {
				background: var(--brand-primary-hover);
				color: var(--brand-on-primary, #ffffff) !important;
				transform: translateY(-1px);
			}

		/* HERO — full-bleed with soft overlay, large serif headline */
		.hero {
			position: relative;
			min-height: 95vh;
			display: flex;
			align-items: center;
			overflow: hidden;
			background: var(--color-dark);
		}

		.hero-img {
			position: absolute;
			inset: 0;			
			opacity: .45;
		}

		/* soft vignette */
		.hero-vignette {
			position: absolute;
			inset: 0;
			background: radial-gradient(ellipse at 60% 50%, transparent 40%, rgba(74,55,40,.65) 100%);
			pointer-events: none;
		}

		/* petal texture overlay */
		.hero-tint {
			position: absolute;
			inset: 0;
			background: linear-gradient(135deg, rgba(232,207,196,.12) 0%, transparent 60%);
			pointer-events: none;
		}

		.hero-inner {
			position: relative;
			z-index: 2;
		}

		.hero-logo-pill {
			display: inline-flex;
			align-items: center;
			gap: .6rem;
			background: rgba(255,255,255,.12);
			border: 1px solid rgba(255,255,255,.2);
			backdrop-filter: blur(12px);
			border-radius: 100px;
			padding: .4rem 1rem .4rem .4rem;
			margin-bottom: 1.6rem;
		}

			.hero-logo-pill img {
				height: 28px;
				width: 28px;
				border-radius: 50%;
				object-fit: contain;
				background: rgba(255,255,255,.9);
				padding: 3px;
			}

			.hero-logo-pill span {
				font-size: .72rem;
				font-weight: 600;
				letter-spacing: .12em;
				text-transform: uppercase;
				color: rgba(255,255,255,.8);
			}

		.hero h1 {
			font-size: clamp(3rem,7vw,5.8rem);
			font-weight: 400;
			color: var(--color-white);
			line-height: 1.08;
			margin-bottom: 1.4rem;
			max-width: 700px;
		}

			.hero h1 em {
				font-style: italic;
				color: color-mix(in srgb, var(--brand-primary) 45%, #ffffff);
			}

		.hero-sub {
			font-size: 1rem;
			color: rgba(255,255,255,.65);
			font-weight: 300;
			max-width: 440px;
			line-height: 1.9;
			letter-spacing: .02em;
			margin-bottom: 2.2rem;
		}

		.hero-btns {
			display: flex;
			gap: .85rem;
			flex-wrap: wrap;
		}

		.btn-blush {
			background: var(--brand-primary);
			color: var(--brand-on-primary, #ffffff);
			border: none;
			border-radius: 100px;
			padding: .85rem 2rem;
			font-family: var(--font-body);
			font-weight: 600;
			font-size: .82rem;
			letter-spacing: .1em;
			text-transform: uppercase;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			gap: .55rem;
			transition: background .2s,transform .15s;
			box-shadow: 0 6px 20px var(--brand-secondary-glow);
		}

			.btn-blush:hover {
				background: var(--brand-primary-hover);
				transform: translateY(-2px);
				color: var(--brand-on-primary, #ffffff);
			}

		.btn-outline-soft {
			background: transparent;
			color: rgba(255,255,255,.8);
			border: 1px solid rgba(255,255,255,.3);
			border-radius: 100px;
			padding: .83rem 2rem;
			font-family: var(--font-body);
			font-weight: 500;
			font-size: .82rem;
			letter-spacing: .1em;
			text-transform: uppercase;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			gap: .55rem;
			transition: border-color .2s,color .2s,transform .15s;
		}

			.btn-outline-soft:hover {
				border-color: var(--brand-primary);
				color: var(--brand-primary);
				transform: translateY(-2px);
			}

		/* floating service pills */
		.hero-pills {
			display: flex;
			gap: .65rem;
			flex-wrap: wrap;
			margin-top: 2.5rem;
		}

		.hero-pill {
			background: rgba(255,255,255,.1);
			border: 1px solid rgba(255,255,255,.18);
			backdrop-filter: blur(8px);
			border-radius: 100px;
			padding: .35rem .9rem;
			font-size: .72rem;
			font-weight: 500;
			letter-spacing: .07em;
			text-transform: uppercase;
			color: rgba(255,255,255,.75);
		}

		/* SHARED */
		.sec-pad {
			padding: 96px 0;
		}

		.sec-kicker {
			font-family: var(--font-body);
			font-size: .68rem;
			font-weight: 600;
			letter-spacing: .2em;
			text-transform: uppercase;
			color: var(--brand-primary);
			margin-bottom: .6rem;
			display: flex;
			align-items: center;
			gap: .5rem;
		}

			.sec-kicker::before {
				content: '';
				width: 18px;
				height: 1px;
				background: var(--brand-primary);
			}

		.sec-title {
			font-family: var(--font-heading);
			font-size: clamp(2rem,4.5vw,3.2rem);
			font-weight: 400;
			color: var(--color-dark);
			line-height: 1.15;
		}

		.sec-body {
			font-size: .98rem;
			color: var(--color-muted);
			font-weight: 300;
			max-width: 540px;
			line-height: 1.9;
			letter-spacing: .01em;
		}

		/* SERVICES */
		.svc-section {
			background: var(--brand-secondary-light);
		}

		.svc-card {
			background: var(--color-white);
			border: 1px solid var(--color-border);
			border-radius: var(--r-lg);
			padding: 2rem;
			height: 100%;
			transition: border-color .25s,box-shadow .25s,transform .22s;
			text-align: center;
		}

			.svc-card:hover {
				border-color: var(--brand-secondary-hover);
				box-shadow: 0 16px 48px rgba(212,168,154,.15);
				transform: translateY(-4px);
			}

		.svc-num {
			font-family: var(--font-heading);
			font-size: 2.2rem;
			font-style: italic;
			font-weight: 400;
			color: var(--color-border);
			line-height: 1;
			margin-bottom: .5rem;
		}

		.svc-icon {
			width: 56px;
			height: 56px;
			border-radius: 50%;
			background: var(--brand-secondary-light);
			color: var(--brand-secondary-hover);
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 1.2rem;
			margin: 0 auto 1rem;
			transition: background .25s,color .25s;
		}

		.svc-card:hover .svc-icon {
			background: var(--brand-primary);
			color: var(--brand-on-primary, #ffffff);
		}

		.svc-card h5 {
			font-family: var(--font-heading);
			font-size: 1.1rem;
			font-weight: 500;
			color: var(--color-dark);
			margin-bottom: .5rem;
		}

		.svc-card p {
			font-size: .85rem;
			color: var(--color-muted);
			margin: 0;
			line-height: 1.75;
		}

		/* ABOUT */
		.about-section {
			background: var(--color-surface);
		}

		.about-img {
			width: 100%;
			object-fit: cover;
			display: block;
			border-radius: var(--r-xl);
			aspect-ratio: 3/4;
			box-shadow: 0 24px 64px rgba(74,55,40,.12);
		}

		.about-img-wrap {
			position: relative;
		}

		.about-badge {
			position: absolute;
			bottom: 2rem;
			right: -1.5rem;
			background: var(--brand-primary);
			color: var(--brand-on-primary, #ffffff);
			border-radius: var(--r-md);
			padding: 1.1rem 1.4rem;
			text-align: center;
			box-shadow: 0 10px 28px var(--brand-primary-glow);
			min-width: 100px;
		}

		.ab-num {
			font-family: var(--font-heading);
			font-size: 2.4rem;
			font-weight: 500;
			line-height: 1;
		}

		.ab-lbl {
			font-family: var(--font-body);
			font-size: .62rem;
			font-weight: 600;
			letter-spacing: .1em;
			text-transform: uppercase;
			opacity: .85;
			margin-top: .25rem;
		}

		.about-divider {
			display: flex;
			align-items: center;
			gap: 1rem;
			margin: 1.5rem 0;
		}

		.about-divider-line {
			flex: 1;
			height: 1px;
			background: var(--color-border);
		}

		.about-divider-dot {
			width: 6px;
			height: 6px;
			border-radius: 50%;
			background: var(--brand-secondary-hover);
		}

		.feat-pills {
			display: flex;
			flex-wrap: wrap;
			gap: .6rem;
			margin-bottom: 2rem;
		}

		.feat-pill {
			background: var(--brand-primary-light);
			color: var(--brand-primary);
			border-radius: 100px;
			padding: .4rem 1rem;
			font-size: .78rem;
			font-weight: 600;
			letter-spacing: .04em;
			display: flex;
			align-items: center;
			gap: .4rem;
		}

			.feat-pill i {
				font-size: .7rem;
			}

		.btn-sage {
			background: var(--brand-primary);
			color: var(--brand-on-primary, #ffffff);
			border: none;
			border-radius: 100px;
			padding: .85rem 1.8rem;
			font-family: var(--font-body);
			font-weight: 600;
			font-size: .82rem;
			letter-spacing: .08em;
			text-transform: uppercase;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			gap: .55rem;
			transition: background .2s,transform .15s;
			box-shadow: 0 4px 16px var(--brand-primary-glow);
		}

			.btn-sage:hover {
				background: var(--brand-primary-hover);
				transform: translateY(-1px);
				color: var(--brand-on-primary, #ffffff);
			}

		/* TESTIMONIALS */
		.testi-section {
			background: var(--color-dark);
			position: relative;
			overflow: hidden;
		}

		.testi-bg-circle {
			position: absolute;
			top: -20%;
			right: -10%;
			width: 60%;
			aspect-ratio: 1;
			border-radius: 50%;
			background: radial-gradient(circle,rgba(232,207,196,.07) 0%,transparent 70%);
			pointer-events: none;
		}

		.testi-section .sec-kicker {
			color: var(--brand-secondary);
		}

			.testi-section .sec-kicker::before {
				background: var(--brand-secondary);
			}

		.testi-section .sec-title {
			color: var(--color-white);
		}

		.testi-section .sec-body {
			color: rgba(255,255,255,.45);
		}

		.pull-quote {
			background: rgba(255,255,255,.05);
			border: 1px solid rgba(232,207,196,.2);
			border-radius: var(--r-xl);
			padding: 3rem 3.5rem;
			margin-bottom: 2rem;
			position: relative;
			overflow: hidden;
		}

		.pq-deco {
			position: absolute;
			top: -1rem;
			right: 2rem;
			font-family: var(--font-heading);
			font-size: 12rem;
			color: rgba(232,207,196,.08);
			line-height: 1;
			pointer-events: none;
		}

		.pq-text {
			font-family: var(--font-heading);
			font-style: italic;
			font-size: clamp(1.3rem,2.5vw,1.9rem);
			font-weight: 400;
			color: var(--color-white);
			line-height: 1.55;
			margin-bottom: 1.5rem;
			position: relative;
			z-index: 1;
			max-width: 680px;
		}

		.pq-stars {
			color: var(--brand-secondary);
			font-size: .78rem;
			margin-bottom: .4rem;
		}

		.pq-name {
			font-family: var(--font-heading);
			font-weight: 500;
			color: var(--brand-secondary);
			font-size: .98rem;
		}

		.pq-role {
			font-size: .75rem;
			color: rgba(255,255,255,.45);
			font-family: var(--font-body);
		}

		.mini-t {
			background: rgba(255,255,255,.05);
			border: 1px solid rgba(255,255,255,.08);
			border-radius: var(--r-md);
			padding: 1.6rem;
			height: 100%;
			transition: background .25s,border-color .25s,transform .2s;
		}

			.mini-t:hover {
				background: rgba(255,255,255,.09);
				border-color: rgba(232,207,196,.3);
				transform: translateY(-3px);
			}

		.mt-stars {
			color: var(--brand-secondary);
			font-size: .75rem;
			margin-bottom: .7rem;
		}

		.mt-text {
			font-family: var(--font-heading);
			font-style: italic;
			font-size: .95rem;
			color: rgba(255,255,255,.78);
			line-height: 1.75;
			margin-bottom: 1.2rem;
		}

		.mt-name {
			font-family: var(--font-heading);
			font-size: .9rem;
			font-weight: 500;
			color: var(--color-white);
		}

		.mt-role {
			font-size: .73rem;
			color: rgba(255,255,255,.4);
			font-family: var(--font-body);
		}

		/* CONTACT */
		.contact-section {
			background: var(--brand-secondary-light);
		}

		.contact-card {
			background: var(--color-white);
			border-radius: var(--r-xl);
			padding: 2.8rem;
			box-shadow: 0 16px 48px rgba(74,55,40,.08);
		}

			.contact-card h4 {
				font-family: var(--font-heading);
				font-size: 1.7rem;
				font-weight: 500;
				color: var(--color-dark);
				margin-bottom: 1.6rem;
			}

		.form-label {
			font-family: var(--font-body);
			font-size: .7rem;
			font-weight: 600;
			letter-spacing: .12em;
			text-transform: uppercase;
			color: var(--color-muted);
			margin-bottom: .4rem;
		}

		.form-control, .form-select {
			border: 1px solid var(--color-border);
			border-radius: var(--r-sm);
			padding: .75rem 1rem;
			font-family: var(--font-body);
			font-size: .92rem;
			color: var(--color-dark);
			background: var(--color-surface);
			transition: border-color .2s,box-shadow .2s;
		}

			.form-control:focus, .form-select:focus {
				border-color: var(--brand-primary);
				box-shadow: 0 0 0 3px var(--brand-primary-glow);
				outline: none;
			}

			.form-control::placeholder {
				color: var(--color-muted);
				font-style: italic;
			}

		textarea.form-control {
			resize: vertical;
			min-height: 140px;
		}

		.btn-submit {
			background: var(--brand-primary);
			color: var(--brand-on-primary, #ffffff);
			border: none;
			border-radius: 100px;
			padding: .85rem 2rem;
			font-family: var(--font-body);
			font-weight: 600;
			font-size: .82rem;
			letter-spacing: .08em;
			text-transform: uppercase;
			cursor: pointer;
			display: inline-flex;
			align-items: center;
			gap: .6rem;
			transition: background .2s,transform .15s;
			box-shadow: 0 4px 16px var(--brand-primary-glow);
		}

			.btn-submit:hover {
				background: var(--brand-primary-hover);
				transform: translateY(-1px);
			}

		.ci-item {
			display: flex;
			align-items: flex-start;
			gap: 1rem;
			padding: .9rem 0;
			border-bottom: 1px solid var(--color-border);
		}

			.ci-item:last-of-type {
				border-bottom: none;
			}

		.ci-ico {
			width: 40px;
			height: 40px;
			min-width: 40px;
			border-radius: 50%;
			background: var(--brand-primary-light);
			color: var(--brand-primary);
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: .85rem;
		}

		.ci-lbl {
			font-family: var(--font-body);
			font-size: .68rem;
			font-weight: 600;
			letter-spacing: .1em;
			text-transform: uppercase;
			color: var(--color-muted);
			margin-bottom: .2rem;
		}

		.ci-val {
			font-size: .88rem;
			color: var(--color-dark);
			margin: 0;
			line-height: 1.65;
		}

		.contact-photo {
			width: 100%;
			object-fit: cover;
			aspect-ratio: 16/9;
			display: block;
			border-radius: var(--r-md);
			margin-top: auto;
		}

		/* FOOTER */
		footer {
			background: var(--color-dark);
			padding: 1.8rem 0;
		}

		.footer-copy {
			font-size: .8rem;
			color: rgba(255,255,255,.35);
			font-family: var(--font-body);
		}

			.footer-copy a {
				color: rgba(255,255,255,.5);
				text-decoration: none;
			}

				.footer-copy a:hover {
					color: var(--brand-secondary);
				}

		.footer-social {
			display: flex;
			gap: .4rem;
		}

			.footer-social a {
				width: 34px;
				height: 34px;
				border-radius: 50%;
				background: rgba(255,255,255,.07);
				color: rgba(255,255,255,.4);
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: .8rem;
				text-decoration: none;
				transition: background .2s,color .2s;
			}

				.footer-social a:hover {
					background: var(--brand-primary);
					color: var(--brand-on-primary, #ffffff);
				}

		@keyframes fadeUp {
			from {
				opacity: 0;
				transform: translateY(20px)
			}

			to {
				opacity: 1;
				transform: translateY(0)
			}
		}

		.hero-logo-pill {
			animation: fadeUp .5s ease both;
		}

		.hero h1 {
			animation: fadeUp .6s .15s ease both;
		}

		.hero-sub {
			animation: fadeUp .6s .28s ease both;
		}

		.hero-btns {
			animation: fadeUp .6s .38s ease both;
		}

		.hero-pills {
			animation: fadeUp .6s .5s ease both;
		}

		@media(max-width:991.98px) {
			.about-badge {
				right: .5rem;
				bottom: .5rem;
			}
		}

		@media(max-width:767.98px) {
			.hero {
				min-height: 85vh;
			}

			.sec-pad {
				padding: 64px 0;
			}

			.about-badge {
				display: none;
			}
		}

/* =========================================================
   THEME READABILITY OVERRIDES
   Controlled by <body data-theme="light|dark">
   Keep this block at the bottom of the CSS file.
   ========================================================= */

/* Light mode safety */
.singlepage-site[data-theme="light"] {
    color-scheme: light;
}

/* Dark mode base safety */
.singlepage-site[data-theme="dark"] {
    color-scheme: dark;
    background: var(--color-dark, var(--color-ink, #111827));
    color: var(--color-white, #ffffff);
}

/* Navigation readability */
.singlepage-site[data-theme="dark"] .navbar {
    background: var(--color-dark, var(--color-ink, #111827));
    border-bottom-color: rgba(255,255,255,.1);
}

.singlepage-site[data-theme="dark"] .navbar-brand,
.singlepage-site[data-theme="dark"] .navbar-brand span {
    color: var(--color-white, #ffffff) !important;
}

.singlepage-site[data-theme="dark"] .nav-link:not(.btn-nav) {
    color: rgba(255,255,255,.74) !important;
}

.singlepage-site[data-theme="dark"] .nav-link:not(.btn-nav):hover {
    color: color-mix(in srgb, var(--brand-primary) 45%, #ffffff) !important;
    background: rgba(255,255,255,.08);
}


.singlepage-site[data-theme="light"] .navbar {
    background: var(--color-white, #ffffff);
    border-bottom-color: var(--color-border, #e5e7eb);
}

.singlepage-site[data-theme="light"] .navbar-brand,
.singlepage-site[data-theme="light"] .navbar-brand span {
    color: var(--color-dark, var(--color-ink, #111827)) !important;
}

.singlepage-site[data-theme="light"] .nav-link:not(.btn-nav) {
    color: var(--color-muted, #6b7280) !important;
}

.singlepage-site[data-theme="light"] .nav-link:not(.btn-nav):hover {
    color: var(--brand-primary) !important;
    background: color-mix(in srgb, var(--brand-primary) 10%, transparent);
}


/* Hero readability */
.singlepage-site[data-theme="dark"] .hero h1,
.singlepage-site[data-theme="dark"] .hero h2,
.singlepage-site[data-theme="dark"] .hero h3,
.singlepage-site[data-theme="dark"] .hero-sub,
.singlepage-site[data-theme="dark"] .hero-eyebrow,
.singlepage-site[data-theme="dark"] .hero-label,
.singlepage-site[data-theme="dark"] .hero-brandmark-text {
    color: var(--color-white, #ffffff);
}

.singlepage-site[data-theme="dark"] .hero-sub {
    color: rgba(255,255,255,.74);
}

/* Dark section readability */
.singlepage-site[data-theme="dark"] .sec-pad,
.singlepage-site[data-theme="dark"] .svc-section,
.singlepage-site[data-theme="dark"] .services-section,
.singlepage-site[data-theme="dark"] .about-section,
.singlepage-site[data-theme="dark"] .testimonial-section,
.singlepage-site[data-theme="dark"] .testimonials-section,
.singlepage-site[data-theme="dark"] .faq-section,
.singlepage-site[data-theme="dark"] .contact-section,
.singlepage-site[data-theme="dark"] .cta-section {
    background: var(--color-dark, var(--color-ink, #111827));
    color: var(--color-white, #ffffff);
}

.singlepage-site[data-theme="dark"] h1,
.singlepage-site[data-theme="dark"] h2,
.singlepage-site[data-theme="dark"] h3,
.singlepage-site[data-theme="dark"] h4,
.singlepage-site[data-theme="dark"] h5,
.singlepage-site[data-theme="dark"] h6,
.singlepage-site[data-theme="dark"] .section-title,
.singlepage-site[data-theme="dark"] .sec-title,
.singlepage-site[data-theme="dark"] .section-heading {
    color: var(--color-white, #ffffff);
}

.singlepage-site[data-theme="dark"] p,
.singlepage-site[data-theme="dark"] .section-sub,
.singlepage-site[data-theme="dark"] .sec-sub,
.singlepage-site[data-theme="dark"] .text-muted,
.singlepage-site[data-theme="dark"] .lead {
    color: rgba(255,255,255,.72) !important;
}

/* Dark card/readability safety */
.singlepage-site[data-theme="dark"] .card,
.singlepage-site[data-theme="dark"] .svc-card,
.singlepage-site[data-theme="dark"] .service-card,
.singlepage-site[data-theme="dark"] .feature-card,
.singlepage-site[data-theme="dark"] .why-card,
.singlepage-site[data-theme="dark"] .testimonial-card,
.singlepage-site[data-theme="dark"] .faq-item,
.singlepage-site[data-theme="dark"] .contact-card,
.singlepage-site[data-theme="dark"] .info-card,
.singlepage-site[data-theme="dark"] .trust-item,
.singlepage-site[data-theme="dark"] .cred-item {
    background: var(--color-dark-soft, rgba(255,255,255,.06));
    color: var(--color-white, #ffffff);
    border-color: rgba(255,255,255,.12);
}

.singlepage-site[data-theme="dark"] .card p,
.singlepage-site[data-theme="dark"] .svc-card p,
.singlepage-site[data-theme="dark"] .service-card p,
.singlepage-site[data-theme="dark"] .feature-card p,
.singlepage-site[data-theme="dark"] .why-card p,
.singlepage-site[data-theme="dark"] .testimonial-card p,
.singlepage-site[data-theme="dark"] .faq-item p,
.singlepage-site[data-theme="dark"] .contact-card p,
.singlepage-site[data-theme="dark"] .info-card p {
    color: rgba(255,255,255,.72) !important;
}

/* Form field contrast safety outside locked form markup */
.singlepage-site[data-theme="dark"] input,
.singlepage-site[data-theme="dark"] textarea,
.singlepage-site[data-theme="dark"] select {
    background: rgba(255,255,255,.08);
    color: var(--color-white, #ffffff);
    border-color: rgba(255,255,255,.18);
}

.singlepage-site[data-theme="dark"] input::placeholder,
.singlepage-site[data-theme="dark"] textarea::placeholder {
    color: rgba(255,255,255,.5);
}



/* CTA/buttons keep each template's original hover and text-color behavior.
   This avoids forcing white text onto light brand colors like gold, blush, or pale accents. */

/* Ghost/outline button readability */
.singlepage-site[data-theme="dark"] .btn-secondary,
.singlepage-site[data-theme="dark"] .btn-ghost-white,
.singlepage-site[data-theme="dark"] .btn-hero-ghost,
.singlepage-site[data-theme="dark"] .btn-outline-brass,
.singlepage-site[data-theme="dark"] .btn-outline-coral,
.singlepage-site[data-theme="dark"] .btn-outline-soft {
    color: rgba(255,255,255,.9) !important;
    border-color: rgba(255,255,255,.32);
}

/* Contact form submit button safety */
.singlepage-site form button[type="submit"],
.singlepage-site form input[type="submit"],
.singlepage-site form .btn-primary {
    background: var(--brand-primary) !important;
    color: var(--brand-on-primary, #ffffff) !important;
    border-color: var(--brand-primary) !important;
}

.singlepage-site form button[type="submit"]:hover,
.singlepage-site form input[type="submit"]:hover,
.singlepage-site form .btn-primary:hover {
    background: var(--brand-primary-hover, var(--brand-primary)) !important;
    color: var(--brand-on-primary, #ffffff) !important;
    border-color: var(--brand-primary-hover, var(--brand-primary)) !important;
}

/* Footer readability */
.singlepage-site[data-theme="dark"] footer,
.singlepage-site[data-theme="dark"] .footer {
    background: var(--color-dark, var(--color-ink, #111827));
    color: rgba(255,255,255,.72);
    border-color: rgba(255,255,255,.1);
}

.singlepage-site[data-theme="dark"] footer a,
.singlepage-site[data-theme="dark"] .footer a {
    color: rgba(255,255,255,.82);
}

.singlepage-site[data-theme="dark"] footer a:hover,
.singlepage-site[data-theme="dark"] .footer a:hover {
    color: color-mix(in srgb, var(--brand-primary) 45%, #ffffff);
}

/* Contact info panel — override inline white background in dark mode */
.singlepage-site[data-theme="dark"] #contact .d-flex.flex-column.gap-0 {
    background: rgba(255,255,255,.06) !important;
    border-color: rgba(255,255,255,.1) !important;
    box-shadow: none !important;
}
.singlepage-site[data-theme="dark"] #contact .ci-lbl {
    color: rgba(255,255,255,.48) !important;
}
.singlepage-site[data-theme="dark"] #contact .ci-val {
    color: rgba(255,255,255,.82) !important;
}

/* Section kicker dark mode */
.singlepage-site[data-theme="dark"] .sec-kicker {
    color: color-mix(in srgb, var(--brand-primary) 45%, #ffffff);
}
/* Trust bar (inline styled div after hero) dark mode */
.singlepage-site[data-theme="dark"] .hero + div[style*="background:var(--color-white)"] {
    background: var(--color-dark, #4a3728) !important;
    border-color: rgba(255,255,255,.1) !important;
}
.singlepage-site[data-theme="dark"] .hero + div[style*="background:var(--color-white)"] div[style*="color:var(--color-dark)"] {
    color: var(--color-white, #ffffff) !important;
}
.singlepage-site[data-theme="dark"] .hero + div[style*="background:var(--color-white)"] div[style*="color:var(--color-muted)"] {
    color: rgba(255,255,255,.55) !important;
}

.singlepage-site .contact-card button[type="submit"],
.singlepage-site .contact-card input[type="submit"],
.singlepage-site .contact-card .btn,
.singlepage-site .contact-card .btn-primary {
    background: var(--brand-primary) !important;
    color: var(--brand-on-primary, #ffffff) !important;
    border-color: var(--brand-primary) !important;
}

.singlepage-site .contact-card button[type="submit"]:hover,
.singlepage-site .contact-card input[type="submit"]:hover,
.singlepage-site .contact-card .btn:hover,
.singlepage-site .contact-card .btn-primary:hover {
    background: var(--brand-primary-hover, var(--brand-primary)) !important;
    color: var(--brand-on-primary, #ffffff) !important;
    border-color: var(--brand-primary-hover, var(--brand-primary)) !important;
}
