/* =========================================================
   CAIRN FAQ PAGE
   ========================================================= */

:root {

    --bg: #121110;
    --bg-2: #171613;
    --panel: #11100f;
    --panel-soft: #1a1916;

    --text: #f2f0ea;
    --text-soft: #b7b2a6;
    --text-muted: #7d786e;

    --border: #34322c;
    --border-soft: rgba(242,240,234,.10);

    --sand: #cdbb91;
    --sand-soft: rgba(205,187,145,.18);

    --display-font:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --body-font:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}



/* =========================================================
   RESET
   ========================================================= */

* {

    box-sizing:
        border-box;

    margin:
        0;

    padding:
        0;
}

html {

    background:
        var(--bg);

    color:
        var(--text);

    scroll-behavior:
        smooth;
}

body {

    min-height:
        100%;

    overflow-x:
        hidden;

    background:
        var(--bg);

    color:
        var(--text);

    font-family:
        var(--body-font);

    -webkit-font-smoothing:
        antialiased;

    text-rendering:
        optimizeLegibility;
}

a {

    color:
        inherit;

    text-decoration:
        none;
}

button {

    font:
        inherit;
}



/* =========================================================
   HEADER
   ========================================================= */

.faq-header {

    position:
        fixed;

    top:
        0;

    left:
        0;

    right:
        0;

    z-index:
        201;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding:
        clamp(1rem, 2vw, 1.8rem)
        clamp(1.25rem, 4vw, 4rem);

    pointer-events:
        none;
}

.faq-logo {

    display:
        flex;

    align-items:
        center;

    width:
        fit-content;

    pointer-events:
        auto;
}

.faq-logo img {

    display:
        block;

    width:
        120px;

    height:
        auto;

    max-height:
        42px;

    object-fit:
        contain;
}



/* =========================================================
   MENU BUTTON
   ========================================================= */

.menu-toggle {

    position:
        relative;

    width:
        36px;

    height:
        36px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    justify-content:
        center;

    gap:
        5px;

    padding:
        0;

    border:
        0;

    background:
        transparent;

    cursor:
        pointer;

    pointer-events:
        auto;

    z-index:
        202;

    appearance:
        none;
}

.menu-bar {

    display:
        block;

    width:
        36px;

    height:
        2px;

    background:
        var(--text);

    transform-origin:
        center;

    transition:
        transform .55s cubic-bezier(.22,.75,.2,1),
        width .55s cubic-bezier(.22,.75,.2,1),
        opacity .35s ease;
}

.menu-bar.bar3 {

    width:
        24px;
}

.menu-toggle.menu-open .bar1 {

    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-toggle.menu-open .bar2 {

    opacity:
        0;
}

.menu-toggle.menu-open .bar3 {

    width:
        36px;

    transform:
        translateY(-7px)
        rotate(-45deg);
}



/* =========================================================
   FULLSCREEN MENU
   ========================================================= */

#canvas-nav {

    position:
        fixed;

    inset:
        0;

    z-index:
        200;

    width:
        100%;

    height:
        100%;

    padding:
        10vw
        15vw
        5vw;

    background:
        var(--bg-2);

    overflow:
        hidden;

    clip-path:
        inset(0 0 100% 0);

    visibility:
        hidden;

    pointer-events:
        none;

    transition:
        clip-path 1s cubic-bezier(.4,.1,0,1),
        visibility 0s linear 1.3s;
}

#canvas-nav.canvas-open {

    clip-path:
        inset(0 0 0 0);

    visibility:
        visible;

    pointer-events:
        auto;

    transition:
        clip-path 1s cubic-bezier(.4,.1,0,1);
}

#canvas-nav .canvas-inner {

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    width:
        70%;

    height:
        100%;
}

#canvas-nav nav ul {

    list-style:
        none;

    margin:
        0;

    padding:
        0;
}

#canvas-nav nav li {

    opacity:
        0;

    transform:
        translateY(35px);
}

#canvas-nav.canvas-open nav li {

    animation:
        faq-menu-in
        .5s
        ease
        forwards;
}

#canvas-nav.canvas-open nav li:nth-child(1) {

    animation-delay:
        .7s;
}

#canvas-nav.canvas-open nav li:nth-child(2) {

    animation-delay:
        .75s;
}

#canvas-nav.canvas-open nav li:nth-child(3) {

    animation-delay:
        .8s;
}

#canvas-nav.canvas-open nav li:nth-child(4) {

    animation-delay:
        .85s;
}

@keyframes faq-menu-in {

    from {

        opacity:
            0;

        transform:
            translateY(35px);
    }

    to {

        opacity:
            1;

        transform:
            translateY(0);
    }
}

#canvas-nav nav li a {

    display:
        block;

    color:
        var(--text);

    font-size:
        4vw;

    font-weight:
        500;

    line-height:
        1;

    letter-spacing:
        -.045em;

    padding:
        1.2vw
        0
        .5vw;

    transition:
        color .35s ease;
}

#canvas-nav nav li a:hover {

    color:
        var(--text-soft);
}

#canvas-nav .canvas-footer {

    margin-top:
        3vw;

    opacity:
        0;
}

#canvas-nav.canvas-open .canvas-footer {

    animation:
        faq-footer-in
        .5s
        ease
        .9s
        forwards;
}

@keyframes faq-footer-in {

    from {

        opacity:
            0;

        transform:
            translateY(20px);
    }

    to {

        opacity:
            1;

        transform:
            translateY(0);
    }
}

#canvas-nav .text-link {

    display:
        inline-block;

    color:
        var(--text-soft);

    font-size:
        1vw;

    font-weight:
        500;

    padding:
        .75vw
        0
        .7vw;

    transition:
        color .3s ease;
}

#canvas-nav .text-link:hover {

    color:
        var(--text);
}



/* =========================================================
   CONTAINER
   ========================================================= */

.faq-container {

    width:
        100%;

    max-width:
        1680px;

    margin:
        0 auto;
}



/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {

    color:
        var(--text-muted);

    font-size:
        .66rem;

    font-weight:
        600;

    letter-spacing:
        .13em;

    text-transform:
        uppercase;
}



/* =========================================================
   HERO
   ========================================================= */

.faq-hero {

    padding:
        12rem
        clamp(1.25rem, 4vw, 5rem)
        7.5rem;

    background:
        var(--bg);
}

.faq-hero-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        2rem;

    padding-bottom:
        1rem;

    border-bottom:
        1px solid
        var(--border-soft);
}

.faq-hero-status {

    color:
        var(--text-muted);

    font-size:
        .52rem;

    font-weight:
        600;

    letter-spacing:
        .13em;

    text-transform:
        uppercase;
}

.faq-hero h1 {

    max-width:
        8ch;

    margin-top:
        1.5rem;

    font-family:
        var(--display-font);

    font-size:
        clamp(
            5rem,
            9vw,
            10rem
        );

    font-weight:
        600;

    line-height:
        .82;

    letter-spacing:
        -.075em;
}

.faq-hero-bottom {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        260px;

    gap:
        6rem;

    align-items:
        end;

    margin-top:
        5rem;

    padding-top:
        1.6rem;

    border-top:
        1px solid
        var(--border-soft);
}

.faq-lead {

    max-width:
        45rem;

    color:
        var(--text-soft);

    font-size:
        clamp(
            1rem,
            1.06vw,
            1.1rem
        );

    line-height:
        1.65;

    letter-spacing:
        -.02em;
}



/* =========================================================
   HERO MARK
   ========================================================= */

.faq-hero-mark {

    position:
        relative;

    width:
        180px;

    height:
        180px;

    justify-self:
        end;
}

.faq-mark-ring {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    border:
        1px solid
        rgba(242,240,234,.12);

    border-radius:
        50%;

    transform:
        translate(-50%, -50%);
}

.ring-one {

    width:
        180px;

    height:
        180px;
}

.ring-two {

    width:
        94px;

    height:
        94px;

    border-color:
        rgba(205,187,145,.30);
}

.faq-mark-center {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        9px;

    height:
        9px;

    border:
        1px solid
        rgba(205,187,145,.70);

    border-radius:
        50%;

    background:
        rgba(205,187,145,.12);

    transform:
        translate(-50%, -50%);

    box-shadow:
        0 0 18px
        rgba(205,187,145,.08);
}

.faq-hero-mark::before,
.faq-hero-mark::after {

    content:
        "";

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    height:
        1px;

    background:
        rgba(242,240,234,.10);

    transform:
        translate(-50%, -50%);
}

.faq-hero-mark::before {

    width:
        180px;
}

.faq-hero-mark::after {

    width:
        1px;

    height:
        180px;
}



/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {

    padding:
        7rem
        clamp(1.25rem, 4vw, 5rem)
        10rem;

    background:
        var(--bg-2);
}

.faq-layout {

    display:
        grid;

    grid-template-columns:
        minmax(260px, .34fr)
        minmax(0, 1fr);

    gap:
        clamp(4rem, 8vw, 9rem);

    align-items:
        start;
}



/* =========================================================
   FAQ INTRO
   ========================================================= */

.faq-intro {

    position:
        sticky;

    top:
        7rem;
}

.faq-intro h2 {

    max-width:
        8ch;

    margin-top:
        1.4rem;

    font-family:
        var(--display-font);

    font-size:
        clamp(
            3.5rem,
            5.2vw,
            5.8rem
        );

    font-weight:
        600;

    line-height:
        .85;

    letter-spacing:
        -.065em;
}

.faq-intro > p {

    max-width:
        23rem;

    margin-top:
        2rem;

    color:
        var(--text-soft);

    font-size:
        .86rem;

    line-height:
        1.72;
}

.faq-intro-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        .8rem;

    margin-top:
        2rem;

    padding-bottom:
        .35rem;

    border-bottom:
        1px solid
        rgba(242,240,234,.18);

    color:
        var(--text-soft);

    font-size:
        .63rem;

    font-weight:
        600;

    letter-spacing:
        .10em;

    text-transform:
        uppercase;

    transition:
        color .25s ease,
        border-color .25s ease;
}

.faq-intro-link span {

    font-size:
        1rem;

    letter-spacing:
        0;

    transition:
        transform .25s ease;
}

.faq-intro-link:hover {

    color:
        var(--text);

    border-color:
        rgba(205,187,145,.55);
}

.faq-intro-link:hover span {

    transform:
        translate(2px,-2px);
}



/* =========================================================
   FAQ LIST
   ========================================================= */

.faq-list {

    width:
        100%;

    max-width:
        900px;

    border-top:
        1px solid
        rgba(242,240,234,.11);
}



/* =========================================================
   FAQ ITEM
   ========================================================= */

.faq-item {

    border-bottom:
        1px solid
        rgba(242,240,234,.11);
}

.faq-question {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        2rem;

    width:
        100%;

    min-height:
        6.5rem;

    padding:
        1.6rem
        0;

    border:
        0;

    background:
        transparent;

    color:
        var(--text);

    text-align:
        left;

    cursor:
        pointer;

    appearance:
        none;
}

.faq-question > span:first-child {

    max-width:
        44rem;

    font-size:
        clamp(
            1.05rem,
            1.5vw,
            1.45rem
        );

    font-weight:
        500;

    line-height:
        1.25;

    letter-spacing:
        -.025em;

    transition:
        color .25s ease;
}

.faq-icon {

    position:
        relative;

    display:
        grid;

    place-items:
        center;

    width:
        2.35rem;

    height:
        2.35rem;

    flex:
        0 0 auto;

    border:
        1px solid
        rgba(242,240,234,.12);

    border-radius:
        50%;

    color:
        var(--text-muted);

    font-size:
        1.05rem;

    font-weight:
        300;

    line-height:
        1;

    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease,
        transform .35s cubic-bezier(.22,.75,.2,1);
}

.faq-question:hover
> span:first-child {

    color:
        var(--text-soft);
}

.faq-question:hover
.faq-icon {

    color:
        var(--text);

    border-color:
        rgba(205,187,145,.28);

    background:
        rgba(205,187,145,.05);
}

.faq-item.is-open
.faq-icon {

    transform:
        rotate(45deg);

    color:
        var(--text);

    border-color:
        rgba(205,187,145,.40);

    background:
        rgba(205,187,145,.06);
}



/* =========================================================
   FAQ ANSWER
   ========================================================= */

.faq-answer {

    overflow:
        hidden;

    display:
        grid;

    grid-template-rows:
        1fr;

    opacity:
        1;

    transition:
        grid-template-rows .4s cubic-bezier(.22,.75,.2,1),
        opacity .3s ease;
}

.faq-answer[hidden] {

    display:
        grid;

    grid-template-rows:
        0fr;

    opacity:
        0;
}

.faq-answer-inner {

    min-height:
        0;

    overflow:
        hidden;

    max-width:
        700px;

    padding:
        0 4.9rem 1.7rem 0;
}

.faq-answer-inner p {

    margin-bottom:
        1rem;

    color:
        var(--text-soft);

    font-size:
        .84rem;

    line-height:
        1.72;
}

.faq-answer-inner p:last-child {

    margin-bottom:
        0;
}



/* =========================================================
   FAQ CTA
   ========================================================= */

.faq-cta {

    padding:
        2rem
        clamp(1.25rem, 4vw, 5rem)
        5rem;

    background:
        var(--bg);
}

.faq-cta-inner {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        4rem;

    padding:
        2.5rem 0 0;

    border-top:
        1px solid
        rgba(242,240,234,.10);
}

.faq-cta-copy h2 {

    margin-top:
        .9rem;

    font-family:
        var(--display-font);

    font-size:
        clamp(
            3.5rem,
            5.5vw,
            6rem
        );

    font-weight:
        600;

    line-height:
        .85;

    letter-spacing:
        -.065em;
}

.faq-cta-actions {

    display:
        flex;

    align-items:
        center;

    gap:
        1.7rem;
}

.faq-cta-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1.4rem;

    min-width:
        11rem;

    min-height:
        3.5rem;

    padding:
        0
        1rem;

    border:
        1px solid
        rgba(242,240,234,.16);

    border-radius:
        .72rem;

    font-size:
        .59rem;

    font-weight:
        600;

    letter-spacing:
        .10em;

    text-transform:
        uppercase;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.faq-cta-button span {

    font-size:
        1rem;

    letter-spacing:
        0;
}

.faq-cta-button-primary {

    background:
        rgba(242,240,234,.025);

    color:
        var(--text);
}

.faq-cta-button-primary:hover {

    border-color:
        rgba(205,187,145,.42);

    background:
        rgba(205,187,145,.07);

    transform:
        translateY(-2px);
}

.faq-cta-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        .7rem;

    color:
        var(--text-muted);

    font-size:
        .62rem;

    font-weight:
        500;

    letter-spacing:
        .08em;

    text-transform:
        uppercase;

    transition:
        color .25s ease;
}

.faq-cta-link span {

    font-size:
        .95rem;

    transition:
        transform .25s ease;
}

.faq-cta-link:hover {

    color:
        var(--text);
}

.faq-cta-link:hover span {

    transform:
        translate(2px,-2px);
}



/* =========================================================
   FOOTER
   ========================================================= */

footer {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        2rem;

    padding:
        2rem
        clamp(1.25rem, 4vw, 5rem);

    background:
        var(--bg-2);

    color:
        var(--text-muted);

    font-size:
        .72rem;

    border-top:
        1px solid
        var(--border);
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .faq-hero {

        padding:
            10rem
            clamp(1.25rem, 4vw, 3rem)
            6.5rem;
    }

    .faq-hero-bottom {

        grid-template-columns:
            minmax(0, 1fr)
            180px;

        gap:
            4rem;
    }

    .faq-hero-mark {

        transform:
            scale(.82);

        transform-origin:
            right bottom;
    }

    .faq-section {

        padding:
            6rem
            clamp(1.25rem, 4vw, 3rem)
            8rem;
    }

    .faq-layout {

        gap:
            5rem;
    }

    .faq-question {

        min-height:
            6rem;
    }

    .faq-cta {

        padding:
            2rem
            clamp(1.25rem, 4vw, 3rem)
            4rem;
    }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .faq-header {

        padding:
            1rem;
    }

    .faq-logo img {

        width:
            105px;

        max-height:
            36px;
    }


    /* -----------------------------------------------------
       MENU
       ----------------------------------------------------- */

    #canvas-nav {

        padding:
            7rem
            1.5rem
            2rem;
    }

    #canvas-nav .canvas-inner {

        width:
            100%;
    }

    #canvas-nav nav li a {

        font-size:
            10vw;

        padding:
            2.6vw
            0
            1.4vw;
    }

    #canvas-nav .text-link {

        font-size:
            .78rem;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .faq-hero {

        padding:
            8rem
            1.25rem
            5rem;
    }

    .faq-hero-top {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            .8rem;
    }

    .faq-hero h1 {

        max-width:
            9ch;

        font-size:
            clamp(
                4.2rem,
                18vw,
                6.5rem
            );
    }

    .faq-hero-bottom {

        display:
            block;

        margin-top:
            3rem;

        padding-top:
            1.35rem;
    }

    .faq-lead {

        font-size:
            .98rem;
    }

    .faq-hero-mark {

        width:
            130px;

        height:
            130px;

        margin:
            2.5rem
            0
            0
            auto;

        transform:
            none;
    }

    .ring-one {

        width:
            130px;

        height:
            130px;
    }

    .ring-two {

        width:
            68px;

        height:
            68px;
    }

    .faq-hero-mark::before {

        width:
            130px;
    }

    .faq-hero-mark::after {

        height:
            130px;
    }


    /* -----------------------------------------------------
       FAQ SECTION
       ----------------------------------------------------- */

    .faq-section {

        padding:
            5rem
            1.25rem
            6rem;
    }

    .faq-layout {

        display:
            block;
    }

    .faq-intro {

        position:
            static;

        margin-bottom:
            3.5rem;
    }

    .faq-intro h2 {

        max-width:
            8ch;

        font-size:
            clamp(
                3.1rem,
                13vw,
                4.7rem
            );
    }


    /* -----------------------------------------------------
       QUESTIONS
       ----------------------------------------------------- */

    .faq-question {

        min-height:
            5.4rem;

        padding:
            1.35rem
            0;
    }

    .faq-question
    > span:first-child {

        max-width:
            calc(100% - 3.3rem);

        font-size:
            1rem;
    }

    .faq-icon {

        width:
            2rem;

        height:
            2rem;

        font-size:
            .95rem;
    }

    .faq-answer-inner {

        padding:
            0
            0
            1.4rem;
    }

    .faq-answer-inner p {

        font-size:
            .82rem;
    }


    /* -----------------------------------------------------
       CTA
       ----------------------------------------------------- */

    .faq-cta {

        padding:
            2rem
            1.25rem
            4rem;
    }

    .faq-cta-inner {

        display:
            block;

        padding-top:
            1.6rem;
    }

    .faq-cta-copy h2 {

        font-size:
            clamp(
                3.2rem,
                14vw,
                4.8rem
            );
    }

    .faq-cta-actions {

        align-items:
            stretch;

        flex-direction:
            column;

        gap:
            1.2rem;

        margin-top:
            2.5rem;
    }

    .faq-cta-button {

        width:
            100%;
    }

    .faq-cta-link {

        justify-content:
            flex-start;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    footer {

        display:
            block;
    }

    footer span:last-child {

        display:
            block;

        margin-top:
            .75rem;
    }

}



/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .menu-bar,
    .faq-icon,
    .faq-question > span:first-child,
    .faq-answer,
    .faq-intro-link,
    .faq-intro-link span,
    .faq-cta-button,
    .faq-cta-link,
    .faq-cta-link span {

        transition:
            none !important;
    }

    .faq-cta-button:hover {

        transform:
            none !important;
    }

    .faq-intro-link:hover span,
    .faq-cta-link:hover span {

        transform:
            none !important;
    }
}

/* =========================================================
   CAIRN MENU — CONSISTENT HAMBURGER → X TRANSITION
   ========================================================= */

.menu-toggle .menu-bar {
    transition:
        transform .55s cubic-bezier(.22,.75,.2,1),
        width .55s cubic-bezier(.22,.75,.2,1),
        opacity .35s ease !important;
}

.menu-toggle.menu-open .bar1 {
    transform:
        translateY(7px)
        rotate(45deg) !important;
}

.menu-toggle.menu-open .bar2 {
    opacity: 0 !important;
}

.menu-toggle.menu-open .bar3 {
    width: 36px !important;
    transform:
        translateY(-7px)
        rotate(-45deg) !important;
}

/* =========================================================
   CAIRN — MATCH HOMEPAGE LOGO SIZE
   ========================================================= */

header a[href="index.html"] img[src="assets/logo (2).png"] {
    display: block;
    width: 120px !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
}


/* =========================================================
   MOBILE — SAME SCALE AS HOMEPAGE
   ========================================================= */

@media (max-width: 700px) {

    header a[href="index.html"] img[src="assets/logo (2).png"] {
        width: 100px !important;
    }

}


/* =========================================================
   PREFERRED CONTACT METHOD
   ========================================================= */

.contact-preference {
    margin-top: .35rem;
}

.contact-preference-heading {
    margin-bottom: 1rem;
}

.contact-preference-label {
    display: block;
    margin-bottom: .45rem;
    color: var(--text);
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-preference-heading p {
    color: var(--text-muted);
    font-size: .72rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   METHOD CARDS
   --------------------------------------------------------- */

.contact-method-options {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.contact-method-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.contact-method-option input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.contact-method-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.65rem;
    padding:
        1rem
        1.05rem;
    border:
        1px solid
        rgba(242,240,234,.09);
    border-radius:
        .78rem;
    background:
        rgba(242,240,234,.02);
    transition:
        border-color .3s ease,
        background .3s ease,
        transform .35s cubic-bezier(.22,.75,.2,1),
        box-shadow .3s ease;
}

.contact-method-card::before {
    content: "";
    width: .72rem;
    height: .72rem;
    flex: 0 0 auto;
    order: 2;
    border:
        1px solid
        rgba(242,240,234,.22);
    border-radius: 50%;
    background: transparent;
    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.contact-method-name {
    color: var(--text);
    font-size: .8rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.contact-method-meta {
    margin-left: auto;
    color:
        rgba(125,120,110,.65);
    font-size: .43rem;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-method-option:hover .contact-method-card {
    border-color:
        rgba(242,240,234,.17);
    background:
        rgba(242,240,234,.03);
    transform:
        translateY(-1px);
}

.contact-method-option input:focus-visible + .contact-method-card {
    border-color:
        rgba(205,187,145,.46);
    box-shadow:
        0 0 0 4px
        rgba(205,187,145,.055);
}

.contact-method-option input:checked + .contact-method-card {
    border-color:
        rgba(205,187,145,.46);
    background:
        rgba(205,187,145,.07);
    box-shadow:
        inset 0 0 0 1px
        rgba(205,187,145,.08);
}

.contact-method-option input:checked + .contact-method-card::before {
    border-color:
        rgba(205,187,145,.72);
    background:
        radial-gradient(
            circle,
            rgba(205,187,145,.95) 0 38%,
            transparent 42%
        );
    box-shadow:
        0 0 0 3px
        rgba(205,187,145,.055);
    transform:
        scale(1.04);
}


/* ---------------------------------------------------------
   CONDITIONAL INPUT PANELS
   --------------------------------------------------------- */

.contact-detail-panels {
    width: 100%;
}

.contact-detail-panel {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-9px);
    pointer-events: none;
    transition:
        max-height .5s cubic-bezier(.22,.75,.2,1),
        margin-top .45s cubic-bezier(.22,.75,.2,1),
        opacity .28s ease,
        transform .5s cubic-bezier(.22,.75,.2,1);
}

.contact-detail-panel.is-active {
    max-height: 11rem;
    margin-top: 1rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-detail-panel .form-field {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .contact-method-options {
        grid-template-columns:
            1fr 1fr;
        gap: .7rem;
    }

    .contact-method-card {
        min-height: 4.35rem;
        padding:
            .9rem
            .9rem;
    }

    .contact-method-name {
        font-size: .76rem;
    }

    .contact-method-meta {
        font-size: .4rem;
    }

}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .contact-method-card,
    .contact-method-card::before,
    .contact-detail-panel {
        transition: none !important;
    }

}

/* =========================================================
   CAIRN — FULLSCREEN MENU SCROLL LOCK
   Prevent the page from moving behind the open menu
   ========================================================= */

html.menu-scroll-locked {
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

body.menu-scroll-locked {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden !important;
    overscroll-behavior: none !important;
}


/* =========================================================
   MOBILE — NORMAL FAQ MENU LINK SIZE
   ========================================================= */

@media (max-width: 700px) {

    #canvas-nav .text-link {
        font-size: .9rem !important;
        line-height: 1.3;
        padding: .7rem 0;
    }

}

/* =========================================================
   SITE FOOTER — LEGAL LINKS
   ========================================================= */

footer {
    display: grid !important;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 2rem;
}

.site-footer-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-footer-links a {
    color: var(--text-muted);
    font-size: .68rem;
    transition:
        color .25s ease;
}

.site-footer-links a:hover {
    color: var(--text);
}

@media (max-width: 700px) {

    footer {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .site-footer-links {
        gap: 1.2rem;
    }

    .site-footer-links a {
        font-size: .72rem;
    }

}