/* Homepage scaffold styles for the landing page shell and its animated hero stage. */

:root {
    --page: #f4f0e7;
    --surface: #fbf7ec;
    --surface-strong: #f5eedf;
    --ink: #241a14;
    --muted: #665c51;
    --line: rgba(36, 26, 20, 0.12);
    --moss-walnut: #33291f;
    --cedar-green: #27452c;
    --leaf: #4f7f2a;
    --sage: #a6b585;
    --cedar-brown: #9a7655;
    --cream-accent: #f3e9d7;
    --sand: #e8d9b8;
    --stone: #c7b08a;
    --gold: #e0ad22;
    --shadow: 0 24px 60px rgba(36, 26, 20, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(245, 238, 223, 0.86), transparent 34%),
        radial-gradient(circle at 15% 100%, rgba(154, 118, 85, 0.18), transparent 30%),
        linear-gradient(180deg, #fbf7ec 0%, #f5eedf 50%, #e7d4bc 100%);
    color: var(--ink);
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
}

.homepage-page {
    position: relative;
    overflow: clip;
    min-height: 100svh;
}

main {
    position: relative;
}

a {
    color: inherit;
}

/* Pixabay-style top bar: integrated at rest, then sticky/floating once scrolling begins. */
.site-nav-wrap {
    position: sticky;
    top: 0;
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 8px clamp(18px, 3vw, 30px);
    z-index: 50;
    pointer-events: auto;
    background: var(--surface);
    overflow: hidden;
    transition:
        background-color 220ms ease,
        padding 220ms ease;
}

.site-nav-wrap.is-floating {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(251, 247, 236, 0);
    overflow: visible;
}

.site-nav {
    width: 100%;
    margin: 0 auto;
    min-height: 56px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    pointer-events: auto;
    transform-origin: top center;
    transition:
        width 220ms ease,
        padding 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        border-radius 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease,
        backdrop-filter 220ms ease;
}

.site-nav.is-floating {
    width: min(1180px, 100%);
    padding: 6px 10px;
    border-color: rgba(51, 41, 31, 0.12);
    border-radius: 999px;
    background: rgba(251, 247, 236, 0.92);
    box-shadow: 0 18px 46px rgba(36, 26, 20, 0.16);
    backdrop-filter: blur(14px);
    animation: site-nav-pop 680ms cubic-bezier(0.18, 0.9, 0.22, 1.18) both;
}

/* The pop happens when scroll promotes the integrated bar into a floating nav. */
@keyframes site-nav-pop {
    0% {
        opacity: 0.86;
        transform: translateY(-18px) scale(0.94);
        box-shadow: 0 0 0 rgba(36, 26, 20, 0);
    }

    64% {
        opacity: 1;
        transform: translateY(4px) scale(1.025);
        box-shadow: 0 22px 54px rgba(36, 26, 20, 0.2);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 0 14px 36px rgba(36, 26, 20, 0.12);
    }
}

.site-brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    flex: 1 1 280px;
    min-width: 0;
    text-decoration: none;
}

.site-brand-mark {
    width: 84px;
    height: 80px;
    flex: 0 0 auto;
    overflow: visible;
    background: transparent;
}

.site-brand-logo {
    display: block;
    width: 100%;
    height: 100%;
}

.site-brand-logo {
    object-fit: contain;
}

.site-nav-links {
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.site-nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.site-brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.site-brand-copy strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 700;
}

.site-brand-copy small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav-cta,
.btn-pill,
.site-footer-column a,
.site-footer-bottom a {
    text-decoration: none;
}

.site-nav-cta:hover,
.site-nav-cta:focus-visible,
.btn-pill:hover,
.btn-pill:focus-visible,
.site-footer-column a:hover,
.site-footer-column a:focus-visible,
.site-footer-bottom a:hover,
.site-footer-bottom a:focus-visible {
    color: var(--ink);
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
    background: rgba(36, 26, 20, 0.05);
    border-color: rgba(36, 26, 20, 0.16);
}

.site-nav-cta,
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-align: center;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.site-nav-cta,
.btn-pill-solid {
    background: var(--cedar-green);
    color: var(--surface);
}

.site-nav-cta:hover,
.site-nav-cta:focus-visible,
.btn-pill-solid:hover,
.btn-pill-solid:focus-visible {
    background: #1f3524;
    color: var(--surface);
}

/* The hero follows the Pixabay shape: one fitted rounded picture box, no extra frame around it. */
.hero-shell {
    min-height: auto;
    display: grid;
    align-items: stretch;
    padding: 0 clamp(18px, 3vw, 30px) 28px;
    background: var(--surface);
}

.hero-grid {
    display: grid;
    place-items: stretch;
    width: 100%;
    height: clamp(430px, 72svh, 700px);
    margin: 0;
    padding-inline: 0;
}

.hero-media-shell {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 13px;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.hero-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: transparent;
    padding: 0;
}

/* Middle homepage sections use full-width bands so the page stays open instead of becoming a card stack. */
.content-band {
    position: relative;
    padding: clamp(64px, 8vw, 112px) 0;
}

.content-band-intro {
    background: linear-gradient(180deg, var(--surface) 0%, var(--page) 100%);
}

.content-band-safety {
    color: var(--surface-strong);
    background:
        linear-gradient(135deg, rgba(51, 41, 31, 0.98) 0%, rgba(39, 69, 44, 0.98) 100%);
}

.content-band-offerings {
    background:
        linear-gradient(180deg, #f4f0e7 0%, #f3e9d7 100%);
}

.content-band-testimonials {
    background: var(--cream-bright, #fbf7ec);
}

.content-band-faq {
    background:
        linear-gradient(180deg, #fbf7ec 0%, #f5eedf 100%);
}

.content-band-contact {
    color: var(--surface-strong);
    background:
        linear-gradient(135deg, rgba(39, 69, 44, 0.98) 0%, rgba(51, 41, 31, 0.98) 100%);
}

.section-heading {
    max-width: 680px;
}

.section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.section-kicker {
    margin: 0 0 12px;
    color: var(--cedar-green);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.content-band-safety .section-kicker,
.content-band-contact .section-kicker {
    color: var(--sand);
}

.section-heading h1,
.section-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4.9rem);
    line-height: 0.95;
    font-weight: 700;
}

.section-heading p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 1.75;
}

.content-band-safety .section-heading p,
.content-band-contact .section-heading p {
    color: rgba(245, 238, 223, 0.78);
}

.service-pathway {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.6vw, 26px);
    margin-top: clamp(34px, 5vw, 56px);
}

.section-panel {
    min-height: 260px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(51, 41, 31, 0.1);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.72);
    box-shadow: 0 18px 48px rgba(36, 26, 20, 0.08);
}

.service-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
}

.service-panel span,
.offering-item span,
.contact-methods span,
.social-links span {
    color: var(--cedar-brown);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-panel h2,
.testimonial-panel h3,
.offering-item h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1;
    font-weight: 700;
}

.service-panel p,
.testimonial-panel p,
.offering-item p,
.faq-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.safety-layout,
.offerings-layout,
.faq-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 82px);
    align-items: start;
}

.safety-notes {
    display: grid;
    gap: 14px;
}

.safety-notes p {
    margin: 0;
    padding: 20px 22px;
    border: 1px solid rgba(245, 238, 223, 0.14);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.07);
    color: rgba(245, 238, 223, 0.84);
    line-height: 1.7;
}

.offering-list {
    display: grid;
    gap: 18px;
}

.offering-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(51, 41, 31, 0.16);
}

.offering-item:first-child {
    padding-top: 0;
}

.offering-item h3 {
    margin-bottom: 8px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 28px);
    margin-top: clamp(34px, 5vw, 54px);
}

.testimonial-panel {
    min-height: 210px;
    background:
        linear-gradient(180deg, rgba(245, 238, 223, 0.9) 0%, rgba(251, 247, 236, 0.82) 100%);
}

.testimonial-panel h3 {
    margin-bottom: 18px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(51, 41, 31, 0.12);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.75);
    overflow: hidden;
}

.faq-item summary {
    min-height: 64px;
    padding: 20px 22px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
    list-style-position: outside;
}

.faq-item p {
    padding: 0 22px 22px;
}

.contact-panel {
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid rgba(245, 238, 223, 0.14);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.08);
}

.contact-methods,
.social-links {
    display: grid;
    gap: 12px;
}

.social-links {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(245, 238, 223, 0.14);
}

.contact-methods a,
.social-links a {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    justify-content: space-between;
    align-items: center;
    min-height: 58px;
    padding: 16px 18px;
    border: 1px solid rgba(245, 238, 223, 0.14);
    border-radius: 8px;
    color: var(--surface-strong);
    text-decoration: none;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
    background: rgba(251, 247, 236, 0.1);
    border-color: rgba(245, 238, 223, 0.3);
    transform: translateY(-1px);
}

.contact-methods strong,
.social-links strong {
    color: var(--surface);
    font-size: 1rem;
}

/* Footer keeps the reference page's lead-in and column rhythm, minus Catalog. */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 60px 0 24px;
    color: var(--surface-strong);
    background:
        linear-gradient(180deg, rgba(51, 41, 31, 0.96) 0%, rgba(39, 69, 44, 0.98) 100%);
    border-top: 1px solid rgba(245, 238, 223, 0.14);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(245, 238, 223, 0.14);
}

.site-footer-eyebrow {
    margin: 0;
    color: var(--cream-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-footer-text {
    margin: 0;
    max-width: 60ch;
    color: rgba(245, 238, 223, 0.82);
    line-height: 1.7;
}

.site-footer-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(245, 238, 223, 0.18);
    border-radius: 999px;
    background: rgba(251, 247, 236, 0.06);
    color: var(--surface-strong);
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.site-footer-phone:hover,
.site-footer-phone:focus-visible {
    background: rgba(251, 247, 236, 0.12);
    border-color: rgba(245, 238, 223, 0.3);
    color: var(--surface);
    transform: translateY(-1px);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.3fr) minmax(150px, 0.7fr) minmax(230px, 1fr);
    gap: 24px 28px;
    align-items: start;
    padding-top: 28px;
    border-top: 1px solid rgba(245, 238, 223, 0.14);
}

.site-footer-column h2 {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
}

.site-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-newsletter {
    max-width: 620px;
}

.site-footer-links {
    justify-self: center;
}

.site-footer-newsletter p {
    margin: 0;
    color: rgba(245, 238, 223, 0.82);
    line-height: 1.7;
}

.site-footer-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding: 6px;
    border: 1px solid rgba(245, 238, 223, 0.18);
    border-radius: 999px;
    background: rgba(251, 247, 236, 0.1);
}

.site-footer-newsletter-form input {
    min-width: 0;
    flex: 1 1 190px;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    background: rgba(251, 247, 236, 0.92);
    color: var(--ink);
    font: inherit;
}

.site-footer-newsletter-form input::placeholder {
    color: rgba(36, 26, 20, 0.58);
}

.site-footer-newsletter-form input:focus {
    outline: 3px solid rgba(224, 173, 34, 0.38);
    outline-offset: 2px;
}

.site-footer-newsletter-form button {
    flex: 0 0 auto;
    min-height: 46px;
    border: 1px solid rgba(245, 238, 223, 0.16);
    border-radius: 999px;
    padding: 0 18px;
    background: var(--surface-strong);
    color: var(--ink);
    font: inherit;
    font-weight: 900;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.site-footer-newsletter-form button:hover,
.site-footer-newsletter-form button:focus-visible {
    background: var(--surface);
    border-color: rgba(36, 26, 20, 0.18);
    transform: translateY(-1px);
}

.site-footer-newsletter-helper,
.site-footer-newsletter-status {
    margin-top: 10px !important;
    font-size: 0.88rem;
}

.site-footer-newsletter-status {
    color: var(--surface) !important;
    font-weight: 800;
}

.site-footer-newsletter-messages {
    display: grid;
    gap: 0.35rem;
}

.site-footer-newsletter-status--error {
    color: #f5c6b4 !important;
}

.site-footer-column li + li {
    margin-top: 12px;
}

.site-footer-column a,
.site-footer-contact span,
.site-footer-contact strong {
    color: rgba(245, 238, 223, 0.84);
}

.site-footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.site-footer-contact li {
    display: grid;
    gap: 4px;
}

.site-footer-contact strong {
    font-size: 1rem;
    font-weight: 700;
}

.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.site-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(232, 217, 184, 0.44);
    border-radius: 999px;
    background: rgba(232, 217, 184, 0.14);
    color: var(--sand);
    text-decoration: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus-visible {
    background: rgba(232, 217, 184, 0.24);
    border-color: rgba(232, 217, 184, 0.7);
    color: var(--surface);
    transform: translateY(-1px);
}

.site-footer-social svg {
    display: block;
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.site-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 238, 223, 0.14);
    color: rgba(245, 238, 223, 0.72);
    font-size: 0.94rem;
}

.site-footer-bottom p {
    margin: 0;
}

@media (max-width: 991.98px) {
    .site-nav {
        align-items: flex-start;
    }

    .site-nav-links {
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .service-pathway,
    .testimonial-grid,
    .safety-layout,
    .offerings-layout,
    .faq-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .section-heading-centered {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .site-nav-wrap {
        min-height: 64px;
        padding: 8px 14px;
    }

    .site-nav {
        gap: 12px;
        min-height: 48px;
    }

    .site-brand-mark {
        width: 62px;
        height: 60px;
    }

    .site-brand-copy strong {
        font-size: 1.25rem;
    }

    .site-brand-copy small {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .site-nav-links a {
        min-height: 34px;
        padding-inline: 10px;
        font-size: 0.8rem;
    }

    .site-nav-cta {
        min-height: 40px;
        padding-inline: 14px;
        font-size: 0.82rem;
    }

    .hero-shell {
        padding: 0 14px 18px;
    }

    .hero-grid {
        height: clamp(340px, 70svh, 540px);
    }

    .site-footer-intro {
        align-items: flex-start;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer-newsletter-form {
        flex-direction: column;
        align-items: stretch;
        border-radius: 8px;
    }

    .site-footer-newsletter-form input,
    .site-footer-newsletter-form button {
        width: 100%;
    }

    .content-band {
        padding: 54px 0;
    }

    .section-panel,
    .contact-panel {
        padding: 22px;
    }

    .offering-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-methods a,
    .social-links a {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-nav,
    .comparison-nav {
        animation: none;
        opacity: 1;
        transform: none;
        transition:
            background-color 220ms ease,
            border-color 220ms ease,
            box-shadow 220ms ease;
    }

    .comparison-support-card,
    .comparison-services-menu summary::after,
    .comparison-account-menu summary,
    .comparison-account-menu summary::after,
    .comparison-mobile-drawer,
    .comparison-mobile-drawer-backdrop,
    .comparison-mobile-drawer-close,
    .comparison-mobile-menu-toggle,
    .comparison-mobile-schedule,
    .comparison-auth-sign-in,
    .comparison-button-secondary,
    .comparison-nav-cta,
    .comparison-button-primary,
    .comparison-nav-cta::before,
    .comparison-button-primary::before,
    .comparison-button-secondary::after {
        transition: none;
    }

    .comparison-button-secondary:hover,
    .comparison-button-secondary:focus-visible,
    .comparison-support-card:hover,
    .comparison-support-card:focus-visible,
    .comparison-auth-sign-in:hover,
    .comparison-auth-sign-in:focus-visible,
    .comparison-account-menu summary:hover,
    .comparison-account-menu summary:focus-visible,
    .comparison-nav-cta:hover,
    .comparison-nav-cta:focus-visible,
    .comparison-button-primary:hover,
    .comparison-button-primary:focus-visible {
        transform: none;
    }

    .comparison-support-card:hover,
    .comparison-support-card:focus-visible {
        min-height: 42px;
        padding-inline: 14px;
    }
}

/* The selected homepage owns the public landing-page shell. */
.comparison-shell {
    background: var(--page);
}

.comparison-page {
    min-height: 100svh;
    overflow: clip;
    color: var(--ink);
}

.comparison-page a {
    color: inherit;
}

.comparison-anchor {
    position: relative;
    top: -92px;
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.comparison-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 220;
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 8px clamp(18px, 3vw, 30px);
    background: transparent;
    overflow: visible;
    transition:
        background-color 220ms ease,
        padding 220ms ease;
}

.comparison-nav-wrap.is-floating {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(251, 247, 236, 0);
    overflow: visible;
}

.comparison-nav {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: space-between;
    align-items: center;
    width: min(1480px, 100%);
    min-height: 62px;
    margin: 0 auto;
    padding: 8px 12px;
    border: 1px solid rgba(51, 41, 31, 0.1);
    border-radius: 32px;
    background: rgba(251, 247, 236, 0.88);
    box-shadow: 0 10px 30px rgba(36, 26, 20, 0.12);
    backdrop-filter: blur(12px);
    transform-origin: top center;
    transition:
        width 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        padding 320ms ease,
        background-color 320ms ease,
        border-color 320ms ease,
        border-radius 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 360ms ease,
        transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        backdrop-filter 320ms ease;
}

.comparison-nav.is-floating {
    width: min(1320px, 100%);
    padding: 8px 14px;
    border-color: rgba(36, 26, 20, 0.12);
    border-radius: 999px;
    background: rgba(251, 247, 236, 0.92);
    box-shadow: 0 18px 48px rgba(36, 26, 20, 0.18);
    backdrop-filter: blur(14px);
    animation: comparison-nav-pop 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes comparison-nav-pop {
    0% {
        opacity: 0.94;
        transform: translateY(-8px) scaleX(0.985) scaleY(0.98);
        box-shadow: 0 8px 24px rgba(36, 26, 20, 0.1);
    }

    70% {
        opacity: 1;
        transform: translateY(1px) scaleX(1.004) scaleY(1.002);
        box-shadow: 0 20px 52px rgba(36, 26, 20, 0.18);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 0 18px 48px rgba(36, 26, 20, 0.18);
    }
}

.comparison-homepage .comparison-nav:not(.is-floating) {
    border-color: rgba(245, 238, 223, 0.2);
    background: rgba(251, 247, 236, 0.86);
    box-shadow: 0 14px 40px rgba(16, 12, 9, 0.22);
}

.comparison-brand {
    display: inline-flex;
    flex: 1 1 290px;
    gap: 12px;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.comparison-brand-logo {
    width: 76px;
    height: 72px;
    flex: 0 0 auto;
    object-fit: contain;
}

.comparison-brand span {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.comparison-brand strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.42rem;
    line-height: 1;
}

.comparison-brand small,
.comparison-kicker,
.comparison-panel span,
.comparison-timeline-step span,
.comparison-process-item span,
.comparison-contact-links span {
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.comparison-brand small {
    color: var(--muted);
}

.comparison-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.comparison-nav-actions {
    display: inline-flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.comparison-nav-links a,
.comparison-services-menu summary,
.comparison-auth-sign-in,
.comparison-nav-cta,
.comparison-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.comparison-nav-links a,
.comparison-services-menu summary,
.comparison-auth-sign-in {
    border: 1px solid transparent;
    color: var(--muted);
    font-size: 0.86rem;
}

.comparison-nav-links a:hover,
.comparison-nav-links a:focus-visible,
.comparison-services-menu summary:hover,
.comparison-services-menu summary:focus-visible,
.comparison-auth-sign-in:hover,
.comparison-auth-sign-in:focus-visible {
    background: rgba(36, 26, 20, 0.06);
    border-color: rgba(36, 26, 20, 0.14);
}

/* The Services item is a real disclosure so touch and keyboard users can open it without JavaScript. */
.comparison-services-menu {
    position: relative;
    z-index: 20;
}

.comparison-services-menu summary {
    cursor: pointer;
    list-style: none;
}

.comparison-services-menu summary::-webkit-details-marker {
    display: none;
}

.comparison-services-menu summary::after {
    content: "";
    width: 0.48em;
    height: 0.48em;
    margin-left: 4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
}

.comparison-services-menu[open] summary::after {
    transform: translateY(1px) rotate(225deg);
}

.comparison-services-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 30;
    display: grid;
    gap: 4px;
    width: min(86vw, 360px);
    padding: 12px;
    border: 1px solid rgba(232, 217, 184, 0.48);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(251, 247, 236, 0.98) 0%, rgba(232, 217, 184, 0.96) 100%);
    box-shadow: 0 28px 68px rgba(16, 12, 9, 0.28);
    transform: translateX(-50%);
}

.comparison-services-dropdown a {
    justify-content: flex-start;
    min-height: 42px;
    border-radius: 8px;
    padding-inline: 12px;
    color: var(--ink);
}

.comparison-services-dropdown a:hover,
.comparison-services-dropdown a:focus-visible {
    border-color: rgba(39, 69, 44, 0.18);
    background: rgba(39, 69, 44, 0.1);
    color: var(--cedar-green);
}

/* Account controls sit beside the CTA so public and private destinations share the same edge. */
.comparison-auth-sign-in {
    border-color: rgba(39, 69, 44, 0.18);
    background: rgba(251, 247, 236, 0.72);
    color: var(--cedar-green);
    box-shadow: inset 0 0 0 1px rgba(251, 247, 236, 0.36);
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.comparison-auth-sign-in:hover,
.comparison-auth-sign-in:focus-visible {
    background: rgba(245, 238, 223, 0.96);
    box-shadow: 0 10px 24px rgba(16, 12, 9, 0.12);
    color: var(--ink);
    transform: translateY(-1px);
}

.comparison-account-menu {
    position: relative;
    z-index: 20;
}

.comparison-account-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(39, 69, 44, 0.18);
    border-radius: 999px;
    background: rgba(251, 247, 236, 0.76);
    box-shadow: inset 0 0 0 1px rgba(251, 247, 236, 0.34);
    color: var(--cedar-green);
    cursor: pointer;
    list-style: none;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.comparison-account-menu summary::-webkit-details-marker {
    display: none;
}

.comparison-account-menu summary::after {
    content: "";
    width: 0.42em;
    height: 0.42em;
    margin-left: -2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
    transition: transform 180ms ease;
}

.comparison-account-menu[open] summary::after {
    transform: translateY(0) rotate(225deg);
}

.comparison-account-menu summary:hover,
.comparison-account-menu summary:focus-visible {
    border-color: rgba(36, 26, 20, 0.24);
    background: rgba(245, 238, 223, 0.98);
    box-shadow: 0 10px 24px rgba(16, 12, 9, 0.14);
    color: var(--ink);
    transform: translateY(-1px);
}

.comparison-account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.comparison-account-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 30;
    display: grid;
    gap: 4px;
    width: min(86vw, 220px);
    padding: 12px;
    border: 1px solid rgba(232, 217, 184, 0.48);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(251, 247, 236, 0.98) 0%, rgba(232, 217, 184, 0.96) 100%);
    box-shadow: 0 28px 68px rgba(16, 12, 9, 0.28);
}

.comparison-account-dropdown a {
    display: inline-flex;
    justify-content: flex-start;
    min-height: 42px;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding-inline: 12px;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
}

.comparison-account-dropdown a:hover,
.comparison-account-dropdown a:focus-visible {
    border-color: rgba(39, 69, 44, 0.18);
    background: rgba(39, 69, 44, 0.1);
    color: var(--cedar-green);
}

.comparison-nav-cta,
.comparison-button-primary {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(51, 41, 31, 0.12);
    background: linear-gradient(180deg, #e8d9b8 0%, #c7b08a 100%);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    isolation: isolate;
    box-shadow: 0 10px 26px rgba(51, 41, 31, 0.12);
    transform: translateY(0);
    transition:
        transform 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        color 220ms ease;
}

.comparison-nav-cta::before,
.comparison-button-primary::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        linear-gradient(115deg, transparent 0%, rgba(251, 247, 236, 0.72) 42%, transparent 68%);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-118%);
    transition:
        opacity 180ms ease,
        transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.comparison-nav-cta:hover,
.comparison-nav-cta:focus-visible,
.comparison-button-primary:hover,
.comparison-button-primary:focus-visible {
    border-color: rgba(51, 41, 31, 0.32);
    background: linear-gradient(180deg, #f5eedf 0%, #d8c59d 52%, #c7b08a 100%);
    color: var(--ink);
    box-shadow: 0 16px 38px rgba(16, 12, 9, 0.24);
    transform: translateY(-2px);
}

.comparison-nav-cta:hover::before,
.comparison-nav-cta:focus-visible::before,
.comparison-button-primary:hover::before,
.comparison-button-primary:focus-visible::before {
    opacity: 1;
    transform: translateX(118%);
}

/* Mobile navigation is rendered beside the desktop rows so both layouts share one context. */
.comparison-mobile-topbar {
    display: none;
}

body.mobile-nav-open {
    overflow: hidden;
}

.comparison-mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 360;
    border: 0;
    padding: 0;
    background: rgba(16, 12, 9, 0.46);
    opacity: 0;
    transition: opacity 180ms ease;
}

.comparison-mobile-drawer-backdrop.is-open {
    opacity: 1;
}

.comparison-mobile-drawer {
    position: fixed;
    inset-block: 0;
    right: 0;
    z-index: 370;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(88vw, 390px);
    max-width: 100%;
    border-left: 1px solid rgba(232, 217, 184, 0.54);
    background:
        linear-gradient(180deg, rgba(251, 247, 236, 0.99) 0%, rgba(232, 217, 184, 0.98) 100%);
    box-shadow: -28px 0 70px rgba(16, 12, 9, 0.32);
    visibility: hidden;
    transform: translateX(104%);
    transition:
        transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 220ms ease;
}

.comparison-mobile-drawer.is-open {
    visibility: visible;
    transform: translateX(0);
}

.comparison-mobile-drawer-header {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 18px 16px;
    border-bottom: 1px solid rgba(51, 41, 31, 0.14);
}

.comparison-mobile-drawer-kicker {
    margin: 0 0 4px;
    color: var(--cedar-brown);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.comparison-mobile-drawer h2,
.comparison-mobile-drawer h3 {
    margin: 0;
    color: var(--ink);
}

.comparison-mobile-drawer h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    line-height: 1;
}

.comparison-mobile-drawer h3 {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.comparison-mobile-drawer-close,
.comparison-mobile-menu-toggle,
.comparison-mobile-schedule,
.comparison-mobile-drawer-cta,
.comparison-mobile-drawer-section a {
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.comparison-mobile-drawer-close,
.comparison-mobile-menu-toggle {
    border: 1px solid rgba(39, 69, 44, 0.2);
    background: rgba(251, 247, 236, 0.74);
    color: var(--cedar-green);
    font: inherit;
    cursor: pointer;
}

.comparison-mobile-drawer-close {
    padding: 0 14px;
}

.comparison-mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    padding: 0;
}

.comparison-mobile-menu-icon {
    display: grid;
    gap: 4px;
    width: 18px;
}

.comparison-mobile-menu-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.comparison-mobile-drawer-body {
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 0;
    padding: 18px;
    overflow-y: auto;
}

.comparison-mobile-drawer-cta,
.comparison-mobile-schedule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(51, 41, 31, 0.13);
    background: linear-gradient(180deg, #e8d9b8 0%, #c7b08a 100%);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(51, 41, 31, 0.12);
}

.comparison-mobile-drawer-cta {
    width: 100%;
    padding-inline: 18px;
}

.comparison-mobile-drawer-section {
    display: grid;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(51, 41, 31, 0.12);
}

.comparison-mobile-drawer-section a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    border: 1px solid rgba(51, 41, 31, 0.1);
    border-radius: 8px;
    padding: 11px 13px;
    background: rgba(251, 247, 236, 0.7);
    color: var(--ink);
    line-height: 1.3;
}

.comparison-mobile-drawer-close:hover,
.comparison-mobile-drawer-close:focus-visible,
.comparison-mobile-menu-toggle:hover,
.comparison-mobile-menu-toggle:focus-visible,
.comparison-mobile-schedule:hover,
.comparison-mobile-schedule:focus-visible,
.comparison-mobile-drawer-cta:hover,
.comparison-mobile-drawer-cta:focus-visible,
.comparison-mobile-drawer-section a:hover,
.comparison-mobile-drawer-section a:focus-visible {
    outline: 3px solid rgba(224, 173, 34, 0.34);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .comparison-mobile-drawer,
    .comparison-mobile-drawer-backdrop {
        transition: none;
    }
}

.comparison-button-secondary {
    position: relative;
    overflow: hidden;
    border: 1px solid currentColor;
    color: var(--cream-accent);
    background: rgba(251, 247, 236, 0.04);
    transform: translateY(0);
    transition:
        transform 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        color 220ms ease,
        box-shadow 220ms ease;
}

.comparison-button-secondary::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background:
        linear-gradient(105deg, transparent 0%, rgba(232, 217, 184, 0.3) 46%, transparent 72%);
    opacity: 0;
    transform: translateX(-110%);
    transition:
        opacity 220ms ease,
        transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.comparison-button-secondary:hover,
.comparison-button-secondary:focus-visible {
    border-color: rgba(232, 217, 184, 0.8);
    background: rgba(232, 217, 184, 0.12);
    color: var(--surface);
    box-shadow: 0 14px 34px rgba(16, 12, 9, 0.28);
    transform: translateY(-2px);
}

.comparison-button-secondary:hover::after,
.comparison-button-secondary:focus-visible::after {
    opacity: 1;
    transform: translateX(110%);
}

.comparison-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.comparison-kicker {
    margin: 0 0 12px;
    color: var(--cedar-green);
}

.comparison-section-heading {
    max-width: 720px;
}

.comparison-heading-center {
    margin-inline: auto;
    text-align: center;
}

.comparison-section-heading h1,
.comparison-section-heading h2,
.comparison-hero-copy h1,
.comparison-footer h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.45rem, 5vw, 5rem);
    line-height: 0.96;
    font-weight: 700;
}

.comparison-section-heading p,
.comparison-hero-copy p,
.comparison-footer p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.72;
}

.comparison-hero-subtitle {
    max-width: 720px;
    font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
    font-weight: 800;
}

.comparison-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.comparison-section {
    padding: clamp(46px, 6vw, 78px) 0;
}

.comparison-panel {
    min-height: 218px;
    padding: clamp(20px, 2.6vw, 30px);
    border: 1px solid rgba(51, 41, 31, 0.12);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.72);
    box-shadow: 0 16px 44px rgba(36, 26, 20, 0.08);
}

.comparison-panel span,
.comparison-timeline-step span,
.comparison-process-item span,
.comparison-contact-links span {
    color: var(--cedar-brown);
}

.comparison-panel h2,
.comparison-panel h3,
.comparison-timeline-step h3,
.comparison-process-item h3 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1;
}

.comparison-panel p,
.comparison-timeline-step p,
.comparison-process-item p,
.comparison-faq-item p,
.comparison-safety-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.comparison-pillar-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2.2vw, 24px);
    margin-top: clamp(26px, 4vw, 42px);
}

.comparison-pillar-row-first {
    margin-top: 0;
}

.comparison-pillar-card {
    display: grid;
    align-content: space-between;
    gap: 20px;
}

.comparison-pillar-card h3,
.comparison-pillar-card p {
    color: var(--cedar-green);
}

.comparison-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 4.8vw, 64px);
    align-items: start;
}

.comparison-split-reversed {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.comparison-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.comparison-chip-cloud > span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(51, 41, 31, 0.13);
    border-radius: 999px;
    background: rgba(251, 247, 236, 0.74);
    color: var(--ink);
    font-weight: 800;
}

/* The support selections stay chip-like while still linking to service detail pages. */
.comparison-support-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(51, 41, 31, 0.13);
    border-radius: 999px;
    background: rgba(251, 247, 236, 0.74);
    color: var(--ink);
    font-weight: 800;
    isolation: isolate;
    line-height: 1.2;
    overflow: hidden;
    text-decoration: none;
    transition:
        min-height 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
        padding 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        color 220ms ease;
}

.comparison-support-card::before {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: -1;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(251, 247, 236, 0.06) 0%, rgba(251, 247, 236, 0.32) 52%, rgba(232, 217, 184, 0.12) 100%);
    opacity: 0;
    transform: scaleX(0.18);
    transform-origin: left center;
    transition:
        opacity 220ms ease,
        transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.comparison-support-card:hover,
.comparison-support-card:focus-visible {
    border-color: rgba(245, 238, 223, 0.48);
    background: rgba(251, 247, 236, 0.24);
    color: var(--surface);
    box-shadow: 0 14px 34px rgba(16, 12, 9, 0.2);
    z-index: 1;
}

.comparison-support-card:hover::before,
.comparison-support-card:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

.comparison-support-card:focus-visible {
    outline: 3px solid rgba(224, 173, 34, 0.72);
    outline-offset: 3px;
}

.comparison-safety-list {
    display: grid;
    gap: 10px;
}

.comparison-safety-list p {
    padding: 16px 18px;
    border: 1px solid rgba(51, 41, 31, 0.12);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.7);
}

.comparison-faq-list {
    display: grid;
    gap: 10px;
}

.comparison-faq-item {
    border: 1px solid rgba(51, 41, 31, 0.12);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.78);
    overflow: hidden;
}

.comparison-faq-item summary {
    min-height: 56px;
    padding: 17px 20px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

.comparison-faq-item p {
    padding: 0 20px 18px;
}

.comparison-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(20px, 4vw, 54px);
    align-items: start;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(245, 238, 223, 0.14);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.08);
}

.comparison-contact-section,
.comparison-contact-band {
    padding: clamp(34px, 4.2vw, 58px) 0 clamp(24px, 3.4vw, 44px);
}

.comparison-contact-panel .comparison-section-heading h2 {
    font-size: clamp(2.05rem, 3.8vw, 3.65rem);
}

.comparison-contact-panel .comparison-section-heading p {
    margin-top: 12px;
}

.comparison-contact-links {
    display: grid;
    gap: 12px;
}

.comparison-contact-links a {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    justify-content: space-between;
    align-items: center;
    min-height: 58px;
    padding: 16px 18px;
    border: 1px solid rgba(245, 238, 223, 0.18);
    border-radius: 8px;
    color: var(--surface-strong);
    text-decoration: none;
}

.comparison-contact-links strong {
    color: var(--surface);
}

.comparison-footer {
    padding: clamp(54px, 7vw, 86px) 0 28px;
    color: var(--surface-strong);
    background: linear-gradient(180deg, rgba(51, 41, 31, 0.98) 0%, rgba(39, 69, 44, 0.98) 100%);
}

.comparison-footer .container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: start;
}

.comparison-footer .comparison-kicker {
    color: var(--sand);
}

.comparison-footer h2,
.comparison-footer h3,
.comparison-footer p,
.comparison-footer a {
    color: var(--surface-strong);
}

.comparison-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.comparison-footer-grid section {
    display: grid;
    gap: 10px;
}

.comparison-footer-grid h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.8rem;
}

.comparison-footer-grid a {
    color: rgba(245, 238, 223, 0.82);
    font-weight: 700;
    text-decoration: none;
}

/* The homepage turns Fade Option 4 into one continuous story rather than stacked bands. */
.comparison-homepage {
    background:
        linear-gradient(115deg, #33291f 0%, #33291f 48%, #c7b08a 100%);
}

.comparison-homepage-hero {
    min-height: clamp(560px, 76svh, 760px);
    display: grid;
    align-items: center;
    padding: clamp(22px, 3.4vw, 42px) 0 clamp(48px, 7vw, 84px);
    color: var(--surface-strong);
    background:
        radial-gradient(ellipse at 78% 62%, rgba(51, 41, 31, 0.72) 0%, rgba(51, 41, 31, 0.28) 48%, rgba(51, 41, 31, 0) 72%),
        linear-gradient(180deg, rgba(51, 41, 31, 0.18) 0%, rgba(51, 41, 31, 0.44) 58%, rgba(51, 41, 31, 0.88) 84%, #33291f 100%);
}

.comparison-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: clamp(24px, 4.2vw, 58px);
    align-items: center;
}

.comparison-hero-copy .comparison-kicker,
.comparison-homepage .comparison-section-fade .comparison-kicker,
.comparison-homepage .comparison-support-strip .comparison-kicker {
    color: var(--sand);
}

.comparison-hero-copy h1,
.comparison-hero-copy p {
    color: var(--surface-strong);
}

.comparison-homepage-media-frame {
    height: clamp(330px, 52svh, 560px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(245, 238, 223, 0.16);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.08);
    box-shadow: 0 28px 72px rgba(36, 26, 20, 0.28);
}

.comparison-homepage-main {
    background:
        linear-gradient(180deg, #33291f 0%, #4a3c2d 16%, #8b7554 34%, #c7b08a 48%, #e8d9b8 64%, #fbf7ec 80%, #8b7554 91%, #33291f 100%);
}

.comparison-section-fade,
.comparison-support-strip {
    color: var(--surface-strong);
    background: transparent;
}

.comparison-section-fade .comparison-section-heading h2,
.comparison-section-fade .comparison-section-heading p,
.comparison-support-strip .comparison-section-heading h2 {
    color: var(--surface-strong);
}

.comparison-section-fade .comparison-panel {
    background: rgba(251, 247, 236, 0.82);
}

.comparison-support-strip .comparison-chip-cloud > span {
    border-color: rgba(245, 238, 223, 0.28);
    background: rgba(251, 247, 236, 0.16);
    color: var(--surface);
}

.comparison-support-strip .comparison-support-card {
    border-color: rgba(245, 238, 223, 0.28);
    background: rgba(251, 247, 236, 0.16);
    color: var(--surface);
}

/* The selected homepage uses a centered support heading with the approved support layout beneath it. */
.comparison-support-strip .comparison-chip-cloud-centered {
    align-content: flex-start;
    justify-content: center;
    max-width: 1120px;
    margin: clamp(24px, 4vw, 40px) auto 0;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
    /* Let the hovered pill push its neighbors, but keep enough desktop width that the top row stays stable. */
    .comparison-support-card:hover,
    .comparison-support-card:focus-visible {
        padding-inline: 28px;
    }
}

.service-page {
    background:
        linear-gradient(
            180deg,
            #33291f 0%,
            #403225 12%,
            #675340 28%,
            #b39573 44%,
            #ecddc8 58%,
            #fbf7ec 70%,
            #e7d6bf 82%,
            #6a5642 92%,
            #33291f 100%
        );
}

.service-placeholder-section {
    min-height: 74svh;
    display: grid;
    align-items: center;
    padding: clamp(42px, 6vw, 78px) 0;
    color: var(--surface-strong);
}

.service-placeholder-panel {
    display: grid;
    gap: clamp(26px, 4vw, 44px);
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid rgba(245, 238, 223, 0.16);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.08);
    box-shadow: 0 24px 64px rgba(16, 12, 9, 0.22);
}

.service-placeholder-heading {
    max-width: 760px;
}

.service-placeholder-heading h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.98;
}

.service-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-placeholder-block {
    min-height: 150px;
    padding: 18px;
    border: 1px solid rgba(245, 238, 223, 0.14);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.08);
}

.service-placeholder-block span {
    color: var(--sand);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-placeholder-block p {
    margin: 18px 0 0;
    color: rgba(245, 238, 223, 0.74);
}

.contact-page-section {
    padding-block: clamp(3rem, 8vw, 6rem);
}

.contact-page-panel {
    display: grid;
    gap: clamp(1.2rem, 3vw, 1.8rem);
    padding: clamp(1.2rem, 4vw, 2rem);
    border: 1px solid rgba(90, 57, 39, 0.18);
    border-left: 5px solid var(--cedar-gold);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 249, 238, 0.98), rgba(246, 239, 226, 0.94)),
        var(--cream);
    box-shadow: 0 18px 46px rgba(47, 33, 25, 0.13);
}

.contact-page-heading {
    max-width: 46rem;
}

.contact-page-heading h1,
.contact-methods h2 {
    margin: 0;
    color: var(--walnut);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.02;
}

.contact-page-heading h1 {
    font-size: clamp(2.5rem, 7vw, 4.4rem);
}

.contact-page-heading p,
.contact-methods p,
.contact-safety-note {
    margin: 0.75rem 0 0;
    color: rgba(51, 41, 31, 0.74);
    line-height: 1.65;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: clamp(1rem, 3vw, 1.5rem);
    align-items: start;
}

.contact-form,
.contact-methods {
    display: grid;
    gap: 1rem;
    min-width: 0;
    padding: clamp(1rem, 3vw, 1.35rem);
    border: 1px solid rgba(90, 57, 39, 0.16);
    border-radius: 8px;
    background: rgba(255, 249, 238, 0.78);
}

.contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-field,
.contact-form__bottom {
    display: grid;
    gap: 0.4rem;
    min-width: 0;
}

.contact-field--wide,
.contact-form__bottom,
.contact-page-messages {
    grid-column: 1 / -1;
}

.contact-page-messages {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.contact-field .form-label {
    margin: 0;
    color: rgba(51, 41, 31, 0.64);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-field .form-control {
    min-height: 2.9rem;
    border-color: rgba(154, 118, 85, 0.34);
    border-radius: 8px;
    background: var(--cream);
    color: var(--walnut);
}

.contact-field textarea.form-control {
    min-height: 9rem;
}

.contact-field .form-control:focus {
    border-color: var(--cedar-green);
    box-shadow: 0 0 0 0.2rem rgba(39, 69, 44, 0.16);
}

.contact-form__bottom {
    justify-items: start;
}

.contact-form__captcha {
    display: grid;
    gap: 0.5rem;
    width: 100%;
}

.contact-form__captcha--warning {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(128, 81, 54, 0.22);
    border-radius: 8px;
    background: rgba(246, 239, 226, 0.92);
    color: rgba(71, 52, 38, 0.9);
    font-size: 0.96rem;
    line-height: 1.55;
}

.contact-form__captcha--warning a {
    color: inherit;
    font-weight: 700;
}

.contact-form__bottom .comparison-button {
    width: min(100%, 15rem);
}

.contact-form__bottom .comparison-button[disabled] {
    opacity: 0.62;
    cursor: not-allowed;
}

.contact-method-list {
    display: grid;
    gap: 0.75rem;
}

.contact-method-list a {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
    padding: 0.85rem;
    border: 1px solid rgba(90, 57, 39, 0.14);
    border-radius: 8px;
    background: rgba(246, 239, 226, 0.72);
    color: var(--walnut);
    text-decoration: none;
}

.contact-method-list span {
    color: rgba(51, 41, 31, 0.58);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-method-list strong {
    color: var(--cedar-green);
    overflow-wrap: anywhere;
}

.contact-safety-note {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(90, 57, 39, 0.14);
    font-size: 0.92rem;
}

.service-hero {
    min-height: clamp(420px, 60svh, 560px);
    display: grid;
    align-items: center;
    padding: clamp(26px, 4vw, 44px) 0 clamp(28px, 5vw, 48px);
    color: var(--surface-strong);
    background:
        radial-gradient(ellipse at 82% 58%, rgba(199, 176, 138, 0.18) 0%, rgba(51, 41, 31, 0) 56%),
        linear-gradient(180deg, rgba(51, 41, 31, 0.06) 0%, rgba(74, 60, 45, 0.58) 38%, rgba(51, 41, 31, 0.88) 82%, #33291f 100%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
    gap: clamp(18px, 3vw, 42px);
    align-items: center;
}

.service-hero-copy h1,
.service-detail-heading h2,
.service-info-card h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 0.98;
    font-weight: 700;
}

.service-hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.service-hero-copy p {
    max-width: 760px;
    color: rgba(245, 238, 223, 0.82);
    font-size: clamp(0.98rem, 1.45vw, 1.08rem);
    line-height: 1.62;
    margin: 0;
}

.service-hero-purpose {
    color: var(--surface-strong) !important;
    font-size: clamp(1.1rem, 1.8vw, 1.36rem) !important;
    font-weight: 800;
}

.service-hero-copy .comparison-actions {
    margin-top: 20px;
}

.service-hero-panel {
    display: grid;
    gap: 14px;
    padding: clamp(18px, 2.2vw, 24px);
    border: 1px solid rgba(245, 238, 223, 0.18);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.1);
    box-shadow: 0 24px 60px rgba(16, 12, 9, 0.28);
}

.service-hero-panel span,
.service-detail-list span {
    color: var(--sand);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-hero-panel p,
.service-hero-panel strong {
    margin: 0;
    color: var(--surface-strong);
    line-height: 1.52;
}

.service-page-main {
    background: transparent;
}

.service-detail-section {
    padding: clamp(24px, 3.4vw, 34px) 0;
}

.service-detail-section-light {
    background: linear-gradient(180deg, rgba(251, 247, 236, 0.82) 0%, rgba(245, 238, 223, 0.74) 100%);
}

.service-content-layout,
.service-detail-grid,
.service-fit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.58fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.service-content-main {
    display: grid;
    gap: 22px;
}

.service-content-sidebar {
    display: grid;
    gap: 14px;
}

.service-content-block {
    display: grid;
    gap: 14px;
}

.service-detail-heading h2,
.service-info-card h2 {
    color: var(--ink);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.service-content-block h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1;
    font-weight: 700;
}

.service-detail-intro {
    display: grid;
    gap: 10px;
}

.service-detail-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
}

.service-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.service-detail-bullets {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.service-detail-list article,
.service-info-card {
    padding: clamp(16px, 2vw, 22px);
    border: 1px solid rgba(51, 41, 31, 0.12);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.82);
    box-shadow: 0 16px 38px rgba(36, 26, 20, 0.08);
}

.service-detail-list article {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
}

.service-detail-list span {
    color: var(--cedar-brown);
}

.service-detail-list p,
.service-info-card li,
.service-info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
}

.service-info-card p + p {
    margin-top: 10px;
}

.service-info-card-highlight {
    border-color: rgba(224, 173, 34, 0.34);
    background: linear-gradient(180deg, rgba(243, 233, 215, 0.96) 0%, rgba(251, 247, 236, 0.92) 100%);
    box-shadow: 0 18px 40px rgba(154, 118, 85, 0.12);
}

.service-info-card-highlight h2,
.service-info-card-highlight p {
    color: var(--ink);
}

.service-info-card-callout {
    border-color: rgba(90, 57, 39, 0.18);
    background: linear-gradient(180deg, rgba(251, 247, 236, 0.94) 0%, rgba(243, 233, 215, 0.88) 100%);
    box-shadow: 0 18px 40px rgba(74, 60, 45, 0.1);
}

.service-info-card-callout h2,
.service-info-card-callout p {
    color: var(--ink);
}

.service-info-card ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding-left: 20px;
}

.service-section-note {
    margin-top: 14px !important;
    padding-top: 14px;
    border-top: 1px solid rgba(51, 41, 31, 0.12);
}

.service-card-actions {
    margin-top: 14px;
}

.service-card-actions .comparison-button {
    width: fit-content;
}

.service-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

.service-hub-card {
    min-height: 100%;
    border: 1px solid rgba(51, 41, 31, 0.12);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.82);
    box-shadow: 0 16px 38px rgba(36, 26, 20, 0.08);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.service-hub-card-link {
    display: grid;
    gap: 14px;
    min-height: 100%;
    padding: clamp(18px, 2vw, 22px);
    color: inherit;
    text-decoration: none;
}

.service-hub-card:hover,
.service-hub-card:focus-within {
    border-color: rgba(39, 69, 44, 0.24);
    background: rgba(251, 247, 236, 0.94);
    box-shadow: 0 22px 46px rgba(36, 26, 20, 0.12);
    transform: translateY(-3px);
}

.service-hub-card-link:focus-visible {
    outline: 3px solid rgba(39, 69, 44, 0.28);
    outline-offset: 3px;
}

.service-hub-card h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    line-height: 0.98;
    font-weight: 700;
}

.service-hub-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.56;
}

.service-hub-meta {
    display: grid;
    gap: 10px;
    margin: 0;
}

.service-hub-meta div {
    display: grid;
    gap: 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(51, 41, 31, 0.1);
}

.service-hub-meta dt {
    color: var(--cedar-brown);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-hub-meta dd {
    margin: 0;
    color: var(--ink);
    line-height: 1.6;
}

.service-hub-actions {
    margin-top: auto;
    padding-top: 4px;
}

.service-hub-action-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cedar-green);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.service-hub-action-label::after {
    content: "->";
    font-size: 0.86em;
    transition: transform 180ms ease;
}

.service-hub-card:hover .service-hub-action-label::after,
.service-hub-card:focus-within .service-hub-action-label::after {
    transform: translateX(3px);
}

.comparison-process-section {
    background: transparent;
}

.comparison-process-section .container {
    max-width: min(100% - 16px, 1680px);
}

.comparison-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    margin-top: clamp(26px, 4vw, 42px);
}

.comparison-timeline-step {
    flex: 0 1 calc((100% - 72px) / 7);
    min-width: 205px;
    min-height: 250px;
    padding: clamp(18px, 2.2vw, 24px);
    border: 1px solid rgba(51, 41, 31, 0.13);
    border-radius: 8px;
    background: rgba(251, 247, 236, 0.86);
    box-shadow: 0 14px 34px rgba(36, 26, 20, 0.08);
}

.comparison-safety-section,
.comparison-faq-section {
    background: transparent;
}

.comparison-contact-section {
    color: var(--surface-strong);
    background: linear-gradient(180deg, rgba(139, 117, 84, 0.1) 0%, rgba(51, 41, 31, 0.62) 36%, rgba(51, 41, 31, 0.98) 100%);
}

.comparison-contact-section .comparison-section-heading h2,
.comparison-contact-section .comparison-section-heading p,
.comparison-contact-section .comparison-kicker {
    color: var(--surface-strong);
}

/* The lower homepage uses section-owned backgrounds so content stays untinted. */
.comparison-homepage .comparison-contact-section {
    padding-top: clamp(36px, 4.8vw, 68px);
    background:
        linear-gradient(
            180deg,
            rgba(139, 117, 84, 0.2) 0%,
            rgba(132, 116, 96, 0.26) 12%,
            rgba(119, 104, 87, 0.38) 28%,
            rgba(96, 82, 68, 0.58) 48%,
            rgba(72, 60, 49, 0.8) 72%,
            #33291f 100%
        );
}

.comparison-homepage .comparison-faq-section {
    padding-bottom: clamp(104px, 11vw, 156px);
    background:
        linear-gradient(
            180deg,
            rgba(139, 117, 84, 0) 0%,
            rgba(139, 117, 84, 0) 54%,
            rgba(139, 117, 84, 0.04) 66%,
            rgba(139, 117, 84, 0.09) 78%,
            rgba(139, 117, 84, 0.15) 90%,
            rgba(139, 117, 84, 0.2) 100%
        );
}

.comparison-homepage .comparison-contact-panel {
    background:
        linear-gradient(180deg, rgba(131, 95, 65, 0.42) 0%, rgba(51, 41, 31, 0.42) 100%);
}

.comparison-homepage .site-footer,
.service-page .site-footer {
    padding-bottom: clamp(86px, 10vw, 128px);
    background: linear-gradient(180deg, #33291f 0%, #3a2f24 46%, #33291f 100%);
}

.comparison-homepage .site-footer::before,
.service-page .site-footer::before {
    content: "";
    position: absolute;
    right: -2%;
    bottom: -1px;
    left: -2%;
    height: clamp(120px, 18vw, 210px);
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 220' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23e8d9b8' fill-opacity='0.18' d='M0 128 C160 82 280 178 430 128 C590 74 720 78 880 128 C1050 182 1200 96 1440 132 L1440 220 L0 220 Z'/%3E%3Cpath fill='%23c7b08a' fill-opacity='0.16' d='M0 162 C180 120 300 196 470 158 C650 116 790 110 960 158 C1140 210 1280 132 1440 168 L1440 220 L0 220 Z'/%3E%3Cpath fill='%239a7655' fill-opacity='0.2' d='M0 196 C210 164 330 214 520 188 C720 158 880 158 1060 188 C1230 214 1330 176 1440 190 L1440 220 L0 220 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.comparison-homepage .site-footer::after,
.service-page .site-footer::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: clamp(74px, 9vw, 112px);
    pointer-events: none;
    background: linear-gradient(180deg, rgba(51, 41, 31, 0) 0%, rgba(51, 41, 31, 0.32) 100%);
}

.comparison-homepage .site-footer .site-footer-grid,
.service-page .site-footer .site-footer-grid {
    border-top-color: rgba(245, 238, 223, 0.16);
}

.comparison-homepage .site-footer-newsletter-form,
.service-page .site-footer-newsletter-form {
    border-color: rgba(245, 238, 223, 0.18);
    background: rgba(251, 247, 236, 0.08);
}

.comparison-homepage .site-footer-newsletter-form button,
.service-page .site-footer-newsletter-form button {
    border-color: rgba(232, 217, 184, 0.36);
    background: rgba(232, 217, 184, 0.16);
    color: var(--surface);
}

.comparison-homepage .site-footer-newsletter-form button:hover,
.comparison-homepage .site-footer-newsletter-form button:focus-visible,
.service-page .site-footer-newsletter-form button:hover,
.service-page .site-footer-newsletter-form button:focus-visible {
    background: var(--cedar-green);
}

.comparison-homepage .site-footer-bottom,
.service-page .site-footer-bottom {
    border-top-color: rgba(245, 238, 223, 0.16);
    color: rgba(245, 238, 223, 0.72);
}

.comparison-homepage .site-footer-bottom a,
.service-page .site-footer-bottom a {
    color: rgba(245, 238, 223, 0.84);
}

.comparison-homepage .comparison-section-fade .comparison-section-heading h2,
.comparison-homepage .comparison-section-fade .comparison-section-heading p,
.comparison-homepage .comparison-support-strip .comparison-section-heading h2 {
    color: var(--surface-strong);
}

.comparison-homepage .comparison-process-section .comparison-section-heading p {
    color: var(--surface-strong);
    text-shadow: 0 1px 2px rgba(36, 26, 20, 0.42);
}

.comparison-homepage .comparison-process-section .comparison-kicker,
.comparison-homepage .comparison-safety-section .comparison-kicker,
.comparison-homepage .comparison-faq-section .comparison-kicker {
    color: var(--cedar-green);
}

@media (max-width: 991.98px) {
    .comparison-nav-wrap,
    .comparison-nav,
    .comparison-nav.is-floating,
    .comparison-mobile-drawer,
    .comparison-mobile-drawer-backdrop {
        animation: none;
        transform: none;
        transition: none;
    }

    .comparison-nav {
        flex-wrap: nowrap;
        align-items: center;
        min-height: 60px;
        padding: 8px 10px;
        border-radius: 24px;
    }

    .comparison-nav.is-floating {
        width: min(1480px, 100%);
        padding: 8px 10px;
        border-radius: 24px;
    }

    .comparison-desktop-brand,
    .comparison-desktop-nav-links,
    .comparison-desktop-nav-actions {
        display: none;
    }

    .comparison-mobile-topbar {
        display: flex;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: 0;
    }

    .comparison-mobile-brand {
        display: inline-flex;
        flex: 1 1 auto;
        gap: 8px;
        align-items: center;
        min-width: 0;
        color: var(--ink);
        text-decoration: none;
    }

    .comparison-mobile-brand-logo {
        width: 48px;
        height: 46px;
        flex: 0 0 auto;
        object-fit: contain;
    }

    .comparison-mobile-brand span {
        display: grid;
        gap: 1px;
        min-width: 0;
    }

    .comparison-mobile-brand strong {
        overflow: hidden;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 1.08rem;
        line-height: 1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .comparison-mobile-brand small {
        overflow: hidden;
        color: var(--muted);
        font-size: 0.64rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        line-height: 1.1;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .comparison-mobile-actions {
        display: inline-flex;
        flex: 0 0 auto;
        gap: 7px;
        align-items: center;
    }

    .comparison-mobile-schedule,
    .comparison-mobile-menu-toggle {
        min-height: 44px;
        font-size: 0.8rem;
        line-height: 1;
    }

    .comparison-mobile-schedule {
        padding: 0 12px;
    }

    .comparison-homepage-media-frame {
        display: none;
    }

    .comparison-hero-grid,
    .comparison-pillar-row,
    .comparison-support-grid,
    .comparison-split,
    .comparison-split-reversed,
    .comparison-contact-panel,
    .contact-page-grid,
    .contact-form,
    .service-placeholder-grid,
    .service-hero-grid,
    .service-content-layout,
    .service-detail-grid,
    .service-fit-grid,
    .service-hub-grid,
    .comparison-footer .container {
        grid-template-columns: 1fr;
    }

    .service-detail-list {
        grid-template-columns: 1fr;
    }

    .comparison-timeline {
        gap: 12px;
    }

    .comparison-timeline-step {
        flex-basis: 100%;
        min-height: 0;
    }

    .comparison-heading-center {
        text-align: left;
    }

    .comparison-support-strip .comparison-chip-cloud-centered {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 10px;
    }

    .comparison-support-strip .comparison-support-card {
        width: 100%;
        justify-content: center;
        min-height: 46px;
        padding: 0 16px;
    }

    .site-footer {
        padding: 44px 0 28px;
    }

    .comparison-homepage .site-footer {
        padding-bottom: 72px;
    }

    .site-footer-grid {
        gap: 26px;
        grid-template-columns: 1fr;
        padding-top: 0;
        border-top: 0;
    }

    .site-footer-column {
        min-width: 0;
    }

    .site-footer-links {
        justify-self: stretch;
    }

    .site-footer-column h2 {
        margin-bottom: 10px;
        font-size: 1.72rem;
    }

    .site-footer-newsletter {
        max-width: none;
    }

    .site-footer-newsletter p,
    .site-footer-newsletter-helper,
    .site-footer-newsletter-status {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .site-footer-newsletter-form {
        display: grid;
        gap: 10px;
        margin-top: 14px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .site-footer-newsletter-form input,
    .site-footer-newsletter-form button {
        width: 100%;
        min-height: 46px;
        border-radius: 8px;
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .site-footer-newsletter-form input {
        flex: 0 0 auto;
        border: 1px solid rgba(245, 238, 223, 0.2);
        padding: 0 14px;
    }

    .site-footer-newsletter-form button {
        flex: 0 0 auto;
        justify-content: center;
    }

    .site-footer-column li + li {
        margin-top: 8px;
    }

    .site-footer-column a {
        min-height: 40px;
    }

    .site-footer-contact li {
        padding-block: 6px;
    }

    .site-footer-bottom {
        display: grid;
        gap: 10px;
        margin-top: 24px;
        padding-top: 18px;
    }
}

@media (max-width: 575.98px) {
    .comparison-nav-wrap {
        padding: 10px 12px;
    }

    .comparison-nav {
        gap: 10px;
        padding: 8px 10px;
    }

    .comparison-mobile-brand-logo {
        width: 44px;
        height: 42px;
    }

    .comparison-mobile-brand strong {
        font-size: 1rem;
    }

    .comparison-mobile-brand small {
        font-size: 0.58rem;
    }

    .comparison-mobile-schedule {
        padding-inline: 10px;
        font-size: 0.76rem;
    }

    .comparison-button {
        min-height: 36px;
        padding-inline: 11px;
        font-size: 0.8rem;
    }

    .comparison-section {
        padding: 54px 0;
    }

    .comparison-homepage-hero {
        min-height: auto;
        padding: 30px 0 64px;
    }

    .comparison-homepage-media-frame {
        height: clamp(330px, 62svh, 520px);
    }

    .comparison-panel,
    .comparison-contact-panel,
    .comparison-timeline-step,
    .service-detail-list article,
    .service-info-card {
        padding: 22px;
    }

    .service-detail-list article {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .comparison-contact-links a {
        align-items: flex-start;
        flex-direction: column;
    }

    .comparison-footer-grid {
        grid-template-columns: 1fr;
    }
}
