/* Dynamic values are injected as CSS variables from the admin settings. */
body,
.site-header {
    background: var(--cream);
}

body {
    color: var(--body-text);
    font-family: var(--font-sans);
}

h1,
h2,
h3,
blockquote {
    color: var(--ink);
    font-family: var(--font-serif);
}

.hero {
    background: var(--hero-bg);
    color: var(--hero-text);
}

/* Override the original theme's hard-coded white hero text. */
.hero .hero-content,
.hero .hero-content h1,
.hero .hero-content p,
.hero .hero-content .hero-trust,
.hero .hero-content .hero-trust span,
.hero .hero-content .eyebrow {
    color: var(--hero-text) !important;
}

.hero-image {
    background-image: var(--hero-image) !important;
}

.promise-section h2,
.page-hero h1,
.detail-hero h1,
.aftercare-section h2,
footer h4 {
    color: inherit;
}

.primary {
    background: var(--coral);
    color: var(--ink);
}

.eyebrow,
.intro-grid span {
    color: var(--teal);
}

footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

footer p,
footer a,
.footer-bottom {
    color: inherit;
}

.appointment-form select,
.appointment-form input {
    min-height: 42px;
}

@media (max-width: 600px) {
    .intro-grid p {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 10px;
        align-items: center;
        text-align: left;
    }
}
