:root {
        --red: #E80000;
        --red-dark: #7E0101;
        --ink: #111111;
        --muted: #5B6168;
        --surface: #F3F5F6;
        --line: rgba(0, 0, 0, 0.12);
    }
     * {
        box-sizing: border-box;
    }
     html {
        scroll-behavior: smooth;
    }
     body {
        margin: 0;
        overflow-x: hidden;
        background: #ffffff;
        color: var(--ink);
        font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
    }
     a {
        color: inherit;
    }
     button,
    input,
    textarea {
        font: inherit;
    }
     .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
     .site-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(14px);
    }
     .site-header-inner {
        width: min(1280px, calc(100% - 48px));
        height: 88px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
    }
     .site-header-brand {
        flex: 0 0 auto;
    }
     .site-header-logo {
        width: 190px;
        height: auto;
        display: block;
    }
     .site-header-desktop,
    .site-header-menu,
    .site-header-actions {
        display: flex;
        align-items: center;
    }
     .site-header-desktop {
        gap: 32px;
    }
     .site-header-menu {
        gap: 30px;
    }
     .site-header-menu-item {
        position: relative;
    }
     .site-header-menu-item > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
     .site-header-menu-item > a .iconify {
        font-size: 0.92rem;
        transition: transform 180ms ease;
    }
     .site-header-submenu {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 250px;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 10px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }
     .site-header-menu-item:hover .site-header-submenu,
    .site-header-menu-item:focus-within .site-header-submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
     .site-header-menu-item:hover > a .iconify,
    .site-header-menu-item:focus-within > a .iconify {
        transform: rotate(180deg);
    }
     .site-header-menu a {
        position: relative;
        padding: 12px 0;
        color: var(--ink);
        font-size: 1.0625rem;
        font-weight: 600;
        letter-spacing: 0;
        text-decoration: none;
        transition: color 180ms ease;
    }
     .site-header-menu a::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 5px;
        left: 0;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 180ms ease;
    }
     .site-header-menu a:hover,
    .site-header-menu a:focus-visible,
    .site-header-menu a[aria-current="page"] {
        color: var(--red-dark);
    }
     .site-header-menu a:hover::after,
    .site-header-menu a:focus-visible::after,
    .site-header-menu a[aria-current="page"]::after {
        transform: scaleX(1);
    }
     .site-header-submenu a {
        display: flex;
        align-items: center;
        min-height: 42px;
        padding: 0 12px;
        border-radius: 4px;
        color: var(--ink);
        font-size: 0.88rem;
        font-weight: 600;
        line-height: 1.3;
        text-decoration: none;
    }
     .site-header-submenu a::after {
        display: none;
    }
     .site-header-submenu a:hover,
    .site-header-submenu a:focus-visible {
        color: var(--red-dark);
        background: var(--surface);
    }
     .site-header-actions {
        gap: 10px;
    }
     .site-header-phone,
    .site-header-login {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 16px;
        border-radius: 6px;
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
     .site-header-phone {
        background: var(--red);
    }
     .site-header-login {
        background: var(--ink);
    }
     .site-header-toggle {
        width: 44px;
        height: 44px;
        display: none;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: #ffffff;
        color: var(--ink);
        cursor: pointer;
        font-size: 1.35rem;
    }
     .site-header-mobile {
        display: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background: #ffffff;
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
    }
     .site-header-mobile.is-open {
        display: block;
    }
     .site-header-mobile-inner {
        width: min(100% - 40px, 520px);
        margin: 0 auto;
        padding: 20px 0 24px;
    }
     .site-header-mobile-nav {
        display: grid;
    }
     .site-header-mobile-link,
    .site-header-mobile-services summary {
        min-height: 52px;
        display: flex;
        align-items: center;
        color: var(--ink);
        font-size: 1.05rem;
        font-weight: 650;
        text-decoration: none;
    }
     .site-header-mobile-link,
    .site-header-mobile-services {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
     .site-header-mobile-link[aria-current="page"] {
        color: var(--red-dark);
    }
     .site-header-mobile-services summary {
        justify-content: space-between;
        gap: 16px;
        cursor: pointer;
        list-style: none;
    }
     .site-header-mobile-services summary::-webkit-details-marker {
        display: none;
    }
     .site-header-mobile-services summary .iconify {
        color: var(--red);
        transition: transform 180ms ease;
    }
     .site-header-mobile-services[open] summary .iconify {
        transform: rotate(180deg);
    }
     .site-header-mobile-submenu {
        display: grid;
        padding: 2px 0 12px 16px;
        border-left: 2px solid var(--red);
    }
     .site-header-mobile-submenu a {
        min-height: 42px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        color: var(--muted);
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
    }
     .site-header-mobile-actions {
        display: grid;
        gap: 10px;
        margin-top: 20px;
    }
     .site-header-mobile-actions .site-header-phone,
    .site-header-mobile-actions .site-header-login {
        min-height: 50px;
    }
     .contact-route {
        position: relative;
        width: min(1280px, calc(100% - 48px));
        height: 460px;
        margin: 120px auto 0;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #ECEFF1;
        box-shadow: 0 24px 54px rgba(0, 0, 0, 0.1);
    }
     .contact-route::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        box-shadow: inset 0 -80px 80px rgba(255, 255, 255, 0.42);
    }
     .contact-route-map {
        width: 100%;
        height: 100%;
        display: block;
    }
     .contact-route-road {
        fill: none;
        stroke: #ffffff;
        stroke-linecap: round;
    }
     .contact-route-road-primary {
        stroke-width: 28;
    }
     .contact-route-road-secondary {
        stroke-width: 14;
    }
     .contact-route-road-edge {
        fill: none;
        stroke: rgba(0, 0, 0, 0.06);
        stroke-width: 32;
        stroke-linecap: round;
    }
     .contact-route-line {
        fill: none;
        stroke: var(--red);
        stroke-width: 5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
     .contact-route-line-progress {
        stroke-dasharray: 11 13;
        animation: route-flow 1.4s linear infinite;
    }
     .contact-route-stop {
        fill: var(--ink);
        stroke: #ffffff;
        stroke-width: 6;
    }
     .contact-route-courier {
        filter: drop-shadow(0 7px 8px rgba(126, 1, 1, 0.25));
        offset-path: path("M 150 330 C 335 165 530 356 720 188 S 1010 120 1250 255");
        offset-rotate: 0deg;
        animation: courier-route 7s ease-in-out infinite;
    }
     .contact-route-courier circle {
        fill: var(--red);
        stroke: #ffffff;
        stroke-width: 6;
    }
     .contact-route-courier path {
        fill: none;
        stroke: #ffffff;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
     .contact-route-card {
        position: absolute;
        z-index: 2;
        min-width: 190px;
        padding: 15px 17px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    }
     .contact-route-card strong,
    .contact-route-card span {
        display: block;
    }
     .contact-route-card strong {
        font-size: 0.82rem;
    }
     .contact-route-card span {
        margin-top: 3px;
        color: var(--muted);
        font-size: 0.76rem;
    }
     .contact-route-card-pickup {
        left: 32px;
        bottom: 54px;
    }
     .contact-route-card-dropoff {
        right: 32px;
        top: 70px;
    }
     .contact-route-note {
        position: absolute;
        z-index: 2;
        top: 32px;
        left: 50%;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 10px 13px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.94);
        color: var(--ink);
        font-size: 0.76rem;
        font-weight: 700;
        transform: translateX(-50%);
    }
     .contact-route-note::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--red);
        box-shadow: 0 0 0 5px rgba(239, 3, 3, 0.12);
    }
     .contact-mobile-route {
        display: none;
    }
     .contact-mobile-route-note {
        width: fit-content;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin: 0;
        padding: 10px 13px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.94);
        color: var(--ink);
        font-size: 0.76rem;
        font-weight: 700;
    }
     .contact-mobile-route-note::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--red);
        box-shadow: 0 0 0 5px rgba(239, 3, 3, 0.12);
    }
     .contact-mobile-route-labels {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 16px;
        margin-top: 28px;
    }
     .contact-mobile-route-label {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
    }
     .contact-mobile-route-label:last-child {
        grid-template-columns: minmax(0, 1fr) 38px;
        text-align: right;
    }
     .contact-mobile-route-label:last-child .contact-mobile-route-icon {
        order: 2;
    }
     .contact-mobile-route-icon {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(239, 3, 3, 0.09);
        color: var(--red);
        font-size: 1rem;
    }
     .contact-mobile-route-copy {
        min-width: 0;
    }
     .contact-mobile-route-copy strong,
    .contact-mobile-route-copy span {
        display: block;
    }
     .contact-mobile-route-copy strong {
        font-size: 0.86rem;
        line-height: 1.25;
    }
     .contact-mobile-route-copy span {
        margin-top: 3px;
        color: var(--muted);
        font-size: 0.72rem;
        line-height: 1.3;
    }
     .contact-mobile-route-track {
        position: relative;
        height: 48px;
        margin: 22px 18px 4px;
    }
     .contact-mobile-route-track::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        height: 4px;
        background: repeating-linear-gradient(to right, var(--red) 0 10px, transparent 10px 17px);
        transform: translateY(-50%);
    }
     .contact-mobile-route-dot {
        position: absolute;
        z-index: 2;
        top: 50%;
        width: 14px;
        height: 14px;
        border: 3px solid #ffffff;
        border-radius: 50%;
        background: var(--ink);
        box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.1);
        transform: translateY(-50%);
    }
     .contact-mobile-route-dot:first-of-type {
        left: -2px;
    }
     .contact-mobile-route-dot:nth-of-type(2) {
        right: -2px;
    }
     .contact-mobile-route-courier {
        position: absolute;
        z-index: 3;
        top: 2px;
        left: 0;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 3px solid #ffffff;
        border-radius: 50%;
        background: var(--red);
        color: #ffffff;
        font-size: 1.2rem;
        box-shadow: 0 8px 18px rgba(126, 1, 1, 0.24);
        animation: contact-mobile-delivery 7s ease-in-out infinite;
    }
     .contact-faqs {
        padding: 104px 0;
        background: #ffffff;
    }
     .contact-faqs-inner,
    .contact-form-inner,
    .gopher-footer-shell {
        width: min(1180px, calc(100% - 48px));
        margin: 0 auto;
    }
     .contact-faqs-inner {
        display: grid;
        grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
        gap: 96px;
        align-items: start;
    }
     .contact-eyebrow {
        margin: 0 0 16px;
        color: var(--red-dark);
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
    }
     .contact-heading {
        margin: 0;
        font-size: clamp(2.35rem, 4.4vw, 4.25rem);
        font-weight: 500;
        line-height: 0.98;
        letter-spacing: 0;
    }
     .contact-heading em {
        color: var(--red);
        font-family: "Playfair Display", Georgia, serif;
        font-weight: 500;
    }
     .contact-faqs-intro,
    .contact-form-intro {
        margin: 22px 0 0;
        color: var(--muted);
        font-size: 1rem;
        line-height: 1.7;
    }
     .contact-faq-list {
        border-top: 1px solid var(--line);
    }
     .contact-faq {
        border-bottom: 1px solid var(--line);
    }
     .contact-faq summary {
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        color: var(--ink);
        font-size: 1.05rem;
        font-weight: 700;
        cursor: pointer;
        list-style: none;
    }
     .contact-faq summary::-webkit-details-marker {
        display: none;
    }
     .contact-faq-toggle {
        position: relative;
        width: 26px;
        height: 26px;
        flex: 0 0 auto;
        border: 1px solid var(--line);
        border-radius: 50%;
    }
     .contact-faq-toggle::before,
    .contact-faq-toggle::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 1px;
        background: var(--red);
        transform: translate(-50%, -50%);
    }
     .contact-faq-toggle::after {
        transform: translate(-50%, -50%) rotate(90deg);
        transition: transform 180ms ease;
    }
     .contact-faq[open] .contact-faq-toggle::after {
        transform: translate(-50%, -50%) rotate(0);
    }
     .contact-faq-answer {
        padding: 0 56px 26px 0;
    }
     .contact-faq-answer p {
        margin: 0;
        color: var(--muted);
        font-size: 0.94rem;
        line-height: 1.7;
    }
     .contact-form-section {
        padding: 104px 0;
        border-top: 1px solid var(--line);
        background: var(--surface);
    }
     .contact-form-inner {
        display: grid;
        grid-template-columns: minmax(240px, 0.66fr) minmax(0, 1.34fr);
        gap: 80px;
        align-items: start;
    }
     .contact-direct {
        display: grid;
        gap: 12px;
        margin-top: 30px;
    }
     .contact-direct a {
        width: fit-content;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: var(--ink);
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
    }
     .contact-direct .iconify {
        color: var(--red);
        font-size: 1.05rem;
    }
     .contact-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        padding: 34px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
    }
     .contact-form[hidden] {
        display: none;
    }
     .contact-field {
        display: grid;
        gap: 8px;
    }
     .contact-field-full {
        grid-column: 1 / -1;
    }
     .contact-field label {
        color: var(--ink);
        font-size: 0.78rem;
        font-weight: 750;
    }
     .contact-field input,
    .contact-field textarea {
        width: 100%;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        background: #ffffff;
        color: var(--ink);
        outline: none;
        transition: border-color 180ms ease, box-shadow 180ms ease;
    }
     .contact-field input {
        height: 50px;
        padding: 0 14px;
    }
     .contact-field textarea {
        min-height: 150px;
        padding: 13px 14px;
        resize: vertical;
    }
     .contact-field input:focus,
    .contact-field textarea:focus {
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(239, 3, 3, 0.1);
    }
     .contact-field input[aria-invalid="true"],
    .contact-field textarea[aria-invalid="true"] {
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(239, 3, 3, 0.1);
    }
     .contact-field input::placeholder,
    .contact-field textarea::placeholder {
        color: #868B90;
    }
     .contact-field-hint {
        margin: 0;
        color: var(--muted);
        font-size: 0.72rem;
        line-height: 1.5;
    }
     .contact-submit {
        min-height: 50px;
        grid-column: 1 / -1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        border: 0;
        border-radius: 5px;
        background: var(--red);
        color: #ffffff;
        font-weight: 750;
        cursor: pointer;
        transition: background-color 180ms ease, transform 180ms ease;
    }
     .contact-submit:hover,
    .contact-submit:focus-visible {
        background: var(--red-dark);
        transform: translateY(-1px);
    }
     .contact-submit:disabled {
        cursor: wait;
        opacity: 0.72;
        transform: none;
    }
     .contact-honeypot {
        position: absolute;
        left: -10000px;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }
     .contact-turnstile:empty {
        display: none;
    }
     .contact-turnstile,
    .contact-privacy-notice,
    .contact-form-status {
        grid-column: 1 / -1;
    }
     .contact-privacy-notice {
        margin: 0;
        color: var(--muted);
        font-size: 0.72rem;
        line-height: 1.55;
    }
     .contact-privacy-notice a {
        color: var(--red-dark);
        font-weight: 700;
        text-underline-offset: 2px;
    }
     .contact-privacy-notice a:hover,
    .contact-privacy-notice a:focus-visible {
        color: var(--red);
    }
     .contact-form-status {
        margin: 0;
        padding: 12px 14px;
        border-left: 3px solid var(--red);
        background: var(--surface);
        color: var(--ink);
        font-size: 0.82rem;
        font-weight: 650;
        line-height: 1.5;
    }
     .contact-form-status[data-state="success"] {
        border-left-color: #167342;
        background: #EEF8F2;
        color: #0F5932;
    }
     .contact-form-status[hidden] {
        display: none;
    }
     .contact-success-panel {
        align-self: start;
        width: 100%;
        padding: 34px;
        border: 1px solid rgba(22, 115, 66, 0.28);
        border-radius: 8px;
        background: #EEF8F2;
        color: #0F5932;
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
    }
     .contact-success-panel[hidden] {
        display: none;
    }
     .contact-success-icon {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        border-radius: 999px;
        background: #167342;
        color: #ffffff;
        font-size: 1.35rem;
    }
     .contact-success-panel h3 {
        margin: 0;
        color: #0F5932;
        font-size: 1.65rem;
        line-height: 1.2;
    }
     .contact-success-panel p {
        margin: 14px 0 0;
        color: #214B36;
        font-size: 0.98rem;
        line-height: 1.65;
    }
     .contact-success-call {
        width: fit-content;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin-top: 22px;
        padding: 0 16px;
        border-radius: 5px;
        background: #167342;
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 750;
        text-decoration: none;
    }
     .gopher-footer {
        padding: 78px 0 24px;
        border-top: 1px solid var(--line);
        background: #ffffff;
    }
     .gopher-footer-main {
        display: grid;
        grid-template-columns: 1.2fr 1fr 0.75fr;
        gap: 64px;
        padding-bottom: 54px;
    }
     .gopher-footer-logo {
        width: 205px;
        height: auto;
        display: block;
    }
     .gopher-footer-intro {
        max-width: 420px;
        margin: 22px 0 0;
        color: var(--muted);
        font-size: 0.9rem;
        line-height: 1.65;
    }
     .gopher-footer h3 {
        margin: 0 0 20px;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
    }
     .gopher-footer-details,
    .gopher-footer-hours {
        display: grid;
        gap: 13px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
     .gopher-footer-detail {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--muted);
        font-size: 0.84rem;
        line-height: 1.5;
    }
     .gopher-footer-detail .iconify {
        margin-top: 3px;
        flex: 0 0 auto;
        color: var(--red);
    }
     .gopher-footer-detail a {
        text-decoration: none;
    }
     .gopher-footer-hours li {
        display: grid;
        gap: 2px;
        color: var(--muted);
        font-size: 0.84rem;
    }
     .gopher-footer-hours strong {
        color: var(--ink);
        font-size: 0.78rem;
    }
     .gopher-footer-bottom {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        border-top: 1px solid var(--line);
        color: var(--muted);
        font-size: 0.78rem;
    }
     .gopher-footer-bottom p {
        margin: 0;
    }
     .gopher-footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 22px;
    }
     .gopher-footer-links a {
        text-decoration: none;
    }
     @keyframes route-flow {
        to {
            stroke-dashoffset: -24;
        }
    }
     @keyframes courier-route {
        0%, 8% {
            offset-distance: 0%;
        }
        45%, 55% {
            offset-distance: 52%;
        }
        92%, 100% {
            offset-distance: 100%;
        }
    }
     @keyframes contact-mobile-delivery {
        0%, 8% {
            left: 0;
        }
        45%, 55% {
            left: calc(50% - 22px);
        }
        92%, 100% {
            left: calc(100% - 44px);
        }
    }
     @media (max-width: 1120px) {
        .site-header-logo {
            width: 170px;
        }
         .site-header-desktop {
            gap: 22px;
        }
         .site-header-menu {
            gap: 20px;
        }
         .site-header-menu a {
            font-size: 1rem;
        }
         .contact-faqs-inner,
        .contact-form-inner {
            gap: 56px;
        }
    }
     @media (max-width: 980px) {
        .site-header-inner {
            height: 80px;
        }
         .site-header-logo {
            width: 158px;
        }
         .site-header-desktop {
            display: none;
        }
         .site-header-toggle {
            display: inline-flex;
        }
         .contact-route {
            display: none;
        }
         .contact-mobile-route {
            position: relative;
            width: min(1280px, calc(100% - 48px));
            display: block;
            margin: 104px auto 0;
            padding: 24px;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #ECEFF1;
            box-shadow: 0 24px 54px rgba(0, 0, 0, 0.1);
        }
         .contact-faqs-inner,
        .contact-form-inner {
            grid-template-columns: 1fr;
        }
         .contact-faqs-inner {
            gap: 52px;
        }
         .contact-form-inner {
            gap: 42px;
        }
         .gopher-footer-main {
            grid-template-columns: 1fr 1fr;
        }
         .gopher-footer-brand {
            grid-column: 1 / -1;
        }
    }
     @media (max-width: 640px) {
        .site-header-inner,
        .contact-faqs-inner,
        .contact-form-inner,
        .gopher-footer-shell {
            width: min(100% - 40px, 520px);
        }
         .contact-route {
            display: none;
        }
         .contact-mobile-route {
            width: min(100% - 40px, 520px);
            padding: 20px;
        }
         .contact-mobile-route-labels {
            gap: 8px;
            margin-top: 24px;
        }
         .contact-mobile-route-label {
            grid-template-columns: 30px minmax(0, 1fr);
            gap: 7px;
        }
         .contact-mobile-route-label:last-child {
            grid-template-columns: minmax(0, 1fr) 30px;
        }
         .contact-mobile-route-icon {
            width: 30px;
            height: 30px;
            font-size: 0.82rem;
        }
         .contact-mobile-route-copy strong {
            font-size: 0.74rem;
        }
         .contact-mobile-route-copy span {
            font-size: 0.62rem;
        }
         .contact-mobile-route-track {
            margin-right: 10px;
            margin-left: 10px;
        }
         .contact-faqs,
        .contact-form-section {
            padding: 78px 0;
        }
         .contact-heading {
            font-size: 2.7rem;
        }
         .contact-faq summary {
            min-height: 72px;
            font-size: 0.96rem;
        }
         .contact-faq-answer {
            padding-right: 42px;
        }
         .contact-form {
            grid-template-columns: 1fr;
            padding: 24px 20px;
        }
         .contact-field-full,
        .contact-submit {
            grid-column: 1;
        }
         .gopher-footer-main {
            grid-template-columns: 1fr;
            gap: 42px;
        }
         .gopher-footer-brand {
            grid-column: 1;
        }
         .gopher-footer-bottom {
            align-items: flex-start;
            flex-direction: column;
            padding: 22px 0 0;
        }
         .gopher-footer-links {
            gap: 16px;
        }
    }
     @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }
         .contact-route-line-progress,
        .contact-route-courier,
        .contact-mobile-route-courier {
            animation: none;
        }
         .contact-route-courier {
            offset-distance: 52%;
        }
         .contact-mobile-route-courier {
            left: calc(50% - 22px);
        }
         *,
        *::before,
        *::after {
            transition-duration: 0.01ms !important;
        }
    }
