:root {
    --color-ink: #102535;
    --color-muted: #5d7180;
    --color-navy: #10425f;
    --color-teal: #0f9f9a;
    --color-green: #2f8b73;
    --color-amber: #f2b84b;
    --color-coral: #d85c5c;
    --color-mint: #e9f7f4;
    --color-soft: #f6fbfa;
    --color-border: #dce9e7;
    --color-white: #ffffff;
    --shadow-soft: 0 20px 50px rgba(16, 66, 95, 0.12);
    --shadow-card: 0 14px 34px rgba(16, 66, 95, 0.1);
    --radius: 8px;
    --section-padding: 5rem;
}

* {
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    color: var(--color-ink);
    background: var(--color-white);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

a {
    color: var(--color-teal);
    text-decoration: none;
}

a:hover {
    color: var(--color-green);
}

:focus-visible {
    outline: 3px solid rgba(242, 184, 75, 0.95);
    outline-offset: 3px;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1100;
    transform: translateY(-150%);
    background: var(--color-ink);
    color: var(--color-white);
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
}

.skip-link:focus {
    transform: translateY(0);
    color: var(--color-white);
}

.topbar {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    padding: 0.6rem 0;
}

.topbar-notice,
.topbar-link,
.social-strip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.topbar-link {
    color: rgba(255, 255, 255, 0.9);
}

.topbar-link:hover {
    color: var(--color-amber);
}

.notice-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--color-amber);
    box-shadow: 0 0 0 4px rgba(242, 184, 75, 0.18);
}

.social-strip {
    gap: 0.35rem;
}

.social-link {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: inherit;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
    color: var(--color-amber);
    border-color: var(--color-amber);
    transform: translateY(-2px);
}

.main-nav {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 233, 231, 0.8);
    box-shadow: 0 8px 26px rgba(16, 66, 95, 0.06);
    backdrop-filter: blur(14px);
}

.main-nav.is-scrolled {
    box-shadow: 0 12px 30px rgba(16, 66, 95, 0.12);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    max-width: calc(100% - 4.5rem);
}

.navbar-brand img {
    width: auto;
    height: 3.4rem;
    object-fit: contain;
    border-radius: 6px;
}

.brand-text {
    display: grid;
    gap: 0;
    color: var(--color-navy);
    font-weight: 800;
    line-height: 1.15;
    min-width: 0;
}

.brand-text small {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.nav-link {
    color: var(--color-ink);
    font-weight: 700;
    padding: 0.75rem 0.8rem !important;
}

.nav-link.active,
.nav-link:hover {
    color: var(--color-teal);
}

.navbar-toggler {
    margin-left: auto;
    border-color: rgba(16, 66, 95, 0.22);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(242, 184, 75, 0.25);
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    --bs-btn-bg: var(--color-teal);
    --bs-btn-border-color: var(--color-teal);
    --bs-btn-hover-bg: var(--color-green);
    --bs-btn-hover-border-color: var(--color-green);
    --bs-btn-active-bg: var(--color-navy);
    --bs-btn-active-border-color: var(--color-navy);
    box-shadow: 0 12px 24px rgba(15, 159, 154, 0.22);
}

.btn-outline-primary {
    --bs-btn-color: var(--color-navy);
    --bs-btn-border-color: rgba(16, 66, 95, 0.35);
    --bs-btn-hover-bg: var(--color-navy);
    --bs-btn-hover-border-color: var(--color-navy);
    --bs-btn-hover-color: var(--color-white);
}

.btn-nav {
    white-space: nowrap;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 4.75rem 0 3.5rem;
    background:
        linear-gradient(125deg, rgba(246, 251, 250, 0.97) 0%, rgba(233, 247, 244, 0.94) 55%, rgba(255, 255, 255, 0.98) 100%),
        url("../images/medical-banner.jpg") center/cover no-repeat;
}

.hero-copy {
    max-width: 45rem;
}

.eyebrow {
    color: var(--color-green);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.hero-copy h1,
.page-hero h1 {
    color: var(--color-navy);
    font-size: 3.9rem;
    line-height: 1.02;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.hero-lead,
.page-hero p,
.section-lead {
    color: var(--color-muted);
    font-size: 1.12rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.4rem 0 1.8rem;
    max-width: 100%;
}

.hero-tags span,
.mini-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    color: var(--color-ink);
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(16, 66, 95, 0.05);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-portrait {
    position: relative;
    margin: 0;
    padding: 0.85rem;
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.hero-portrait img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
    border-radius: 6px;
}

.hero-portrait figcaption {
    margin-top: 0.85rem;
    padding: 0.9rem;
    border-left: 4px solid var(--color-amber);
    background: var(--color-soft);
    border-radius: 6px;
}

.hero-portrait strong,
.hero-portrait span {
    display: block;
}

.hero-portrait span {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.hero-stat-panel {
    margin-top: 3rem;
}

.stat-card {
    height: 100%;
    padding: 1.2rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.stat-card strong {
    display: block;
    color: var(--color-teal);
    font-size: 2rem;
    line-height: 1;
}

.stat-card span {
    display: block;
    color: var(--color-navy);
    font-weight: 900;
    margin-top: 0.35rem;
}

.stat-card small {
    display: block;
    color: var(--color-muted);
    margin-top: 0.35rem;
}

.section {
    padding: var(--section-padding) 0;
}

.section-soft {
    background: var(--color-soft);
}

.section-heading {
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.section-heading h2,
.content-panel h2,
.sticky-copy h2 {
    color: var(--color-navy);
    font-size: 2.35rem;
    line-height: 1.14;
    font-weight: 900;
    margin-bottom: 1rem;
}

.content-panel {
    max-width: 100%;
}

.content-panel p,
.sticky-copy p {
    color: var(--color-muted);
}

.image-stack {
    position: relative;
    margin: 0;
    min-height: 23rem;
}

.image-stack .main-image,
.rounded-media,
.profile-card img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.image-stack .main-image {
    aspect-ratio: 4 / 3;
}

.image-stack .accent-image {
    position: absolute;
    right: -1rem;
    bottom: -1.25rem;
    width: 9rem;
    height: 9rem;
    object-fit: cover;
    border: 8px solid var(--color-white);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.service-card,
.feature-card,
.process-card,
.contact-card,
.research-card,
.testimonial-card,
.profile-card,
.appointment-form,
.content-panel {
    border-radius: var(--radius);
}

.service-card,
.feature-card,
.process-card,
.contact-card,
.research-card,
.testimonial-card,
.appointment-form {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.service-card {
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 159, 154, 0.35);
    box-shadow: 0 18px 40px rgba(16, 66, 95, 0.14);
}

.service-media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.04);
}

.service-body,
.feature-card,
.process-card,
.contact-card,
.research-card,
.appointment-form {
    padding: 1.35rem;
}

.service-body h3,
.feature-card h3,
.process-card h3,
.timeline-item h3 {
    color: var(--color-navy);
    font-size: 1.18rem;
    font-weight: 900;
    margin: 0.85rem 0 0.55rem;
}

.service-body p,
.feature-card p,
.process-card p,
.research-card p,
.contact-card p {
    color: var(--color-muted);
    margin-bottom: 0;
}

.icon-pill,
.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    color: var(--color-teal);
    background: var(--color-mint);
    border-radius: 50%;
}

.feature-card,
.process-card,
.contact-card {
    height: 100%;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.process-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 159, 154, 0.35);
}

.specialization-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.specialization-list.compact {
    margin-top: 0.75rem;
}

.specialization-item,
.contact-list li,
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.specialization-item {
    padding: 0.85rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-weight: 800;
}

.specialization-item .icon {
    color: var(--color-green);
    margin-top: 0.2rem;
}

.rounded-media {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.process-card {
    position: relative;
    min-height: 100%;
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    color: rgba(16, 66, 95, 0.14);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.treatments-section {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-mint) 100%);
}

.sticky-copy {
    position: sticky;
    top: 7rem;
}

.treatment-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 4.25rem;
    padding: 1rem 1.1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-ink);
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(16, 66, 95, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.treatment-link:hover {
    color: var(--color-teal);
    border-color: rgba(15, 159, 154, 0.38);
    transform: translateY(-3px);
}

.testimonial-card {
    max-width: 46rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card blockquote {
    color: var(--color-ink);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.testimonial-card figcaption {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.avatar {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: var(--color-navy);
    background: #fff4d7;
}

.testimonial-card small {
    display: block;
    color: var(--color-muted);
}

.carousel-indicators [data-bs-target] {
    background-color: var(--color-teal);
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background-color: var(--color-navy);
    background-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    margin: 0;
    min-height: 18rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--color-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.faq-accordion {
    --bs-accordion-border-color: var(--color-border);
    --bs-accordion-border-radius: var(--radius);
    --bs-accordion-inner-border-radius: var(--radius);
    --bs-accordion-active-bg: var(--color-mint);
    --bs-accordion-active-color: var(--color-navy);
    box-shadow: var(--shadow-card);
}

.accordion-button {
    font-weight: 900;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(242, 184, 75, 0.28);
}

.contact-preview {
    background: var(--color-white);
}

.contact-list,
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.contact-list li {
    margin-bottom: 0.85rem;
    color: var(--color-muted);
}

.contact-list .icon,
.footer-contact .icon {
    color: var(--color-teal);
    margin-top: 0.2rem;
}

.map-frame {
    min-height: 26rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 26rem;
    border: 0;
}

.page-hero {
    position: relative;
    padding: 5rem 0;
    color: var(--color-white);
    background:
        linear-gradient(90deg, rgba(16, 66, 95, 0.88) 0%, rgba(16, 66, 95, 0.72) 52%, rgba(47, 139, 115, 0.62) 100%),
        var(--page-hero-image) center/cover no-repeat;
}

.page-hero-content {
    max-width: 48rem;
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
    color: var(--color-white);
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .breadcrumb-item.active,
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.72);
}

.profile-card {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.profile-card img {
    border-radius: 0;
    aspect-ratio: 4 / 3;
}

.profile-card figcaption {
    padding: 1.25rem;
}

.timeline {
    position: relative;
    display: grid;
    gap: 1.2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.9rem;
}

.timeline-item > div {
    padding: 1.2rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(16, 66, 95, 0.06);
}

.timeline-item p {
    color: var(--color-muted);
    margin-bottom: 0;
}

.timeline-dot {
    z-index: 1;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 1.35rem;
    border-radius: 50%;
    background: var(--color-amber);
    border: 4px solid var(--color-white);
    box-shadow: 0 0 0 3px rgba(242, 184, 75, 0.25);
}

.research-card {
    height: 100%;
    border-left: 4px solid var(--color-teal);
}

.research-card > span {
    display: inline-flex;
    color: var(--color-amber);
    font-size: 0.88rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.research-card h2 {
    color: var(--color-navy);
    font-weight: 900;
}

.appointment-form .form-control {
    min-height: 3rem;
    border-color: var(--color-border);
    border-radius: var(--radius);
}

.appointment-form .form-control:focus {
    border-color: var(--color-teal);
    box-shadow: 0 0 0 0.25rem rgba(15, 159, 154, 0.16);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.blog-article h1 {
    color: var(--color-navy);
    font-weight: 900;
}

.appointment-strip {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 3rem 0;
}

.appointment-strip .eyebrow,
.appointment-strip h2,
.appointment-strip p {
    color: var(--color-white);
}

.appointment-strip-inner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.site-footer {
    color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(rgba(16, 37, 53, 0.94), rgba(16, 37, 53, 0.94)),
        url("../images/footer-clinic.jpg") center/cover no-repeat;
    padding: 4rem 0 1.5rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-weight: 900;
    font-size: 1.2rem;
}

.footer-brand img {
    width: auto;
    height: 3.2rem;
    border-radius: 6px;
}

.footer-text {
    max-width: 34rem;
}

.footer-title {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
    margin-top: 0;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-amber);
}

.footer-contact {
    display: grid;
    gap: 0.85rem;
    margin-top: 0;
}

.footer-social .social-link {
    color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
    display: flex;
    flex-column;
    gap: 0.4rem;
    justify-content: space-between;
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-teal);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

html.js .reveal {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .footer-bottom,
    .appointment-strip-inner {
        grid-template-columns: 1fr auto;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 6rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 991.98px) {
    .brand-text small {
        display: none;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 3rem;
    }

    .navbar-collapse {
        padding: 1rem 0 0.25rem;
    }

    .btn-nav {
        margin-top: 0.5rem;
        width: 100%;
    }

    .sticky-copy {
        position: static;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 3.75rem;
    }

    .topbar {
        font-size: 0.86rem;
    }

    .navbar-brand img {
        height: 2.8rem;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .hero-section {
        padding: 3.75rem 0 2.75rem;
    }

    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.45rem;
    }

    .hero-lead,
    .page-hero p,
    .section-lead {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        white-space: normal;
    }

    .hero-tags {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-tags span {
        justify-content: center;
        min-width: 0;
    }

    .section-heading h2,
    .content-panel h2,
    .sticky-copy h2 {
        font-size: 2rem;
    }

    .image-stack {
        min-height: auto;
    }

    .image-stack .accent-image {
        position: static;
        width: 7rem;
        height: 7rem;
        margin-top: 0.75rem;
        border-width: 4px;
    }

    .stat-card strong {
        font-size: 1.7rem;
    }

    .gallery-item,
    .gallery-item img {
        min-height: 15rem;
    }

    .testimonial-card {
        padding: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .brand-text {
        display: none;
    }
}

@media (max-width: 420px) {
    .navbar-brand {
        gap: 0.5rem;
    }

    .brand-text {
        max-width: 10rem;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.1rem;
    }

    .section-heading h2,
    .content-panel h2,
    .sticky-copy h2 {
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    html.js .reveal {
        opacity: 1;
        transform: none;
    }
}
