.dojazd-page {
    --dj-espresso: var(--reviews-espresso, #43302a);
    --dj-cocoa: var(--reviews-cocoa, #705346);
    --dj-caramel: var(--reviews-caramel, #bb8762);
    --dj-cream: var(--reviews-cream, #fcf8f2);
    --dj-line: rgba(67, 48, 42, .1);
    --dj-card-shadow: 0 16px 40px rgba(67, 48, 42, .08);
    color: var(--dj-espresso);
    background: #fff;
    overflow-x: hidden;
}

.dojazd-page h1,
.dojazd-page h2,
.dojazd-page h3 {
    color: var(--dj-espresso);
    font-family: "Work Sans", sans-serif;
    letter-spacing: -0.02em;
}

.dojazd-page .ag-nav-shell {
    box-shadow: 0 1px 18px rgba(67, 48, 42, .08);
}

@media (min-width: 992px) {
    .dojazd-page {
        --dj-page-width: 768px;
    }

    .dojazd-page .container {
        max-width: var(--dj-page-width);
    }

    .dojazd-page .dojazd-hero__intro-wrap.container {
        max-width: var(--dj-page-width);
    }
}

@media (min-width: 1200px) {
    .dojazd-page {
        --dj-page-width: 912px;
    }
}

/*** Shared buttons ***/
.dj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 50px;
    padding: .6rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: "Work Sans", sans-serif;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.dj-btn:hover,
.dj-btn:focus-visible {
    transform: translateY(-2px);
    text-decoration: none;
}

.dj-btn--primary {
    border: 0;
    background: var(--book-cta-gold, #e9c5a9);
    color: var(--book-cta-gold-text, #201911);
    box-shadow: var(--book-cta-gold-shadow, 0 10px 24px -14px rgba(122, 86, 58, .35));
}

.dj-btn--primary:hover,
.dj-btn--primary:focus-visible {
    background: var(--book-cta-gold-hover, #f0d3b9);
    color: var(--book-cta-gold-text, #201911);
    box-shadow: var(--book-cta-gold-shadow-hover, 0 14px 28px -14px rgba(122, 86, 58, .4));
}

.dj-btn--dark {
    border: 0;
    background: var(--dj-espresso);
    color: #fff8f1;
}

.dj-btn--dark:hover,
.dj-btn--dark:focus-visible {
    background: #574036;
    color: #fff8f1;
}

.dj-btn--ghost {
    border-color: rgba(67, 48, 42, .18);
    background: #fff;
    color: var(--dj-espresso);
}

.dj-btn--ghost:hover,
.dj-btn--ghost:focus-visible {
    border-color: var(--dj-caramel);
    color: var(--dj-espresso);
}

.dj-btn i {
    font-size: 1rem;
}

/*** Hero ***/
.dojazd-hero {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(191, 148, 86, 0.12), transparent 55%),
        linear-gradient(180deg, #fdfcfa 0%, #f5f1eb 100%);
}

.dojazd-hero__intro {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin: 0;
    padding: 0;
    min-height: clamp(16rem, 42vw, 22rem);
}

.dojazd-hero__intro-wrap.container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.dojazd-hero__copy-col {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 0 0 34%;
    width: 34%;
    padding: 1.35rem 1.15rem 1.5rem 1.4rem;
    box-sizing: border-box;
}

.dojazd-hero__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    margin: 0 0 0.65rem;
}

.dojazd-hero__brand.hero-brand-block {
    margin-left: 0;
}

.dojazd-hero__logo-link {
    display: block;
    width: fit-content;
    max-width: 100%;
}

.dojazd-hero__title-glow {
    position: absolute;
    z-index: 0;
    left: -18%;
    bottom: -42%;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    filter: blur(1px);
    pointer-events: none;
}

.dojazd-hero h1,
.dojazd-hero__title {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 10em;
    color: var(--dj-espresso);
    font: 600 clamp(2.5rem, 11vw, 3.35rem)/1.04 "Playfair Display", Georgia, serif;
    letter-spacing: -0.035em;
}

.dojazd-hero__title-accent {
    color: var(--dj-caramel);
}

.dojazd-hero__photo-col {
    display: none;
}

@media (max-width: 991.98px) {
    .dojazd-hero__intro-wrap {
        max-width: none;
    }
}

@media (max-width: 991.98px) {
    .dojazd-hero {
        background: #fcf8f2;
    }

    .dojazd-hero__intro {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: clamp(12.5rem, 40vw, 17rem);
        padding-top: calc(0.5rem + env(safe-area-inset-top, 0px) + var(--floating-fab-size, 48px) + 0.2rem);
        background: transparent;
    }

    .dojazd-hero__copy-col {
        flex: none;
        width: auto;
        max-width: none;
        padding: 0 1.25rem 1.15rem;
    }

    .dojazd-hero__brand {
        margin-bottom: 0.4rem;
    }

    .dojazd-hero .hero-brand-logo {
        height: clamp(2.5rem, 10vw, 3.25rem);
    }
}

.dojazd-hero__intro::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .22;
    background-image: radial-gradient(rgba(110, 81, 68, .18) .7px, transparent .7px);
    background-size: 12px 12px;
    pointer-events: none;
    z-index: 2;
}

@media (min-width: 992px) {
    .dojazd-hero {
        width: 100%;
        max-width: none;
        overflow: hidden;
        background-color: #fcf8f2;
        background-image: none;
    }

    .dojazd-hero__intro::before {
        display: none;
    }

    .dojazd-hero__intro-wrap.container {
        max-width: var(--dj-page-width);
    }

    .dojazd-hero__intro {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        column-gap: 0;
        min-height: clamp(18rem, 34vw, 24rem);
        margin-bottom: 0;
        padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(1.75rem, 3vw, 2.75rem);
        border-radius: 0;
        overflow: visible;
        background: transparent;
    }

    .dojazd-hero__copy-col {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        max-width: 100%;
        flex: none;
        padding: 0;
    }

    .dojazd-hero .ag-hero-glow {
        display: block;
        position: absolute;
        z-index: 0;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        filter: blur(1px);
        background: rgba(255, 255, 255, 0.42);
        pointer-events: none;
    }

    .dojazd-hero .ag-hero-glow--one {
        top: -160px;
        right: 4%;
    }

    .dojazd-hero .ag-hero-glow--two {
        bottom: -210px;
        left: -4%;
        width: 460px;
        height: 460px;
    }

    .dojazd-hero__brand {
        display: flex;
        margin: 0 0 0.55rem;
        margin-left: 0;
        margin-right: 0;
    }

    .dojazd-hero .hero-brand-logo {
        height: clamp(2.35rem, 3.2vw, 2.95rem);
    }

    .dojazd-hero__title-glow {
        left: 8%;
        bottom: -18%;
        width: 28rem;
        height: 28rem;
        background: rgba(255, 255, 255, 0.55);
    }

    .dojazd-hero h1,
    .dojazd-hero__title {
        width: max-content;
        max-width: 100%;
        margin: 0;
        font-size: clamp(3.1rem, 5.2vw, 4.75rem);
        line-height: 1.02;
        letter-spacing: -0.045em;
        white-space: nowrap;
    }

    .dojazd-hero__title-accent {
        color: var(--dj-caramel);
    }
}

.dojazd-content {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: clamp(2rem, 4.5vw, 3.25rem) 0;
}

.dojazd-page .dojazd-hero .ag-hero-glow {
    display: none;
}

.dojazd-hero__grid {
    display: grid;
    align-items: start;
    gap: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 992px) {
    .dojazd-content {
        padding-top: clamp(1.1rem, 2vw, 1.65rem);
    }

    .dojazd-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        grid-template-areas:
            "copy map";
        align-items: start;
        row-gap: clamp(0.45rem, 1vw, 0.75rem);
        column-gap: clamp(1.5rem, 4vw, 3rem);
    }

    .dojazd-hero__copy {
        grid-area: copy;
        margin-top: calc(clamp(1.75rem, 3.5vw, 2.75rem) - 5px);
    }

    .dojazd-hero__copy .dojazd-hero__lead {
        margin-bottom: 0.85rem;
    }

    .dojazd-hero__copy .dojazd-usps {
        margin: 0;
        max-width: none;
    }

    .dojazd-hero__grid > .dojazd-mapcard {
        grid-area: map;
        align-self: start;
        justify-self: center;
        width: min(100%, 26rem);
        max-width: 100%;
        margin-top: -2.75rem;
        margin-bottom: 15px;
    }

    .dojazd-hero__grid > .dojazd-mapcard .dojazd-mapcard__frame {
        border-radius: 24px;
    }

    .dojazd-transport-box {
        padding-bottom: 30px;
    }

    .dojazd-transport-box .dojazd-mapcard {
        width: min(100%, 34rem);
        max-width: 100%;
        margin: 1rem auto 0;
    }

    .dojazd-transport-box .dojazd-mapcard__frame {
        border-radius: 16px;
    }

    .dojazd-transport-box .dojazd-mapcard--embed .dojazd-mapcard__frame {
        aspect-ratio: 16 / 10;
        min-height: 280px;
        max-height: 360px;
    }

    .dojazd-picker .dojazd-quote {
        justify-self: center;
        width: min(100%, 42rem);
        max-width: 42rem;
        margin: calc(1.5rem + 15px) auto 0;
        padding: 1.15rem 1.2rem;
    }
}

.dojazd-pin {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .9rem;
    padding: .38rem .85rem;
    border: 1px solid rgba(187, 135, 98, .3);
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    color: var(--dj-cocoa);
    font-family: "Work Sans", sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.dojazd-pin i {
    color: var(--dj-caramel);
}

.dojazd-hero__lead {
    max-width: 34rem;
    margin: 0 0 1.35rem;
    color: #5e4a40;
    font-size: clamp(.9rem, 1.5vw, .98rem);
    line-height: 1.7;
}

.dojazd-hero__lead strong {
    color: var(--dj-espresso);
}

.dojazd-hero__sub {
    max-width: 34rem;
    margin: 0 0 1.35rem;
    color: #5e4a40;
    font-size: clamp(.88rem, 1.45vw, .95rem);
    line-height: 1.7;
}

.dojazd-hero__sub strong {
    color: var(--dj-espresso);
}

.dojazd-hero__sub--q {
    margin-bottom: 0;
}

.dojazd-hero__copy .dojazd-hero__sub:last-of-type {
    margin-bottom: 0;
}

.dojazd-hero__copy + .dojazd-mapcard {
    margin-top: 0;
}

.dojazd-address-highlight {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: var(--dj-caramel);
    letter-spacing: .02em;
    margin-bottom: .5rem;
}

.dj-nowrap {
    white-space: nowrap;
}

.dojazd-usps {
    display: grid;
    grid-template-columns: 1fr;
    gap: .45rem;
    max-width: 22.5rem;
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
}

.dojazd-usps li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #5e4a40;
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.35;
    box-shadow: none;
}

.dojazd-usps i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 1.35rem;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: .15rem;
    border-radius: 0;
    background-color: currentColor;
    color: var(--dj-caramel);
    font-size: 1rem;
}

.dojazd-usps__text {
    flex: 1 1 auto;
    min-width: 0;
}

.dojazd-usps__text strong {
    font-weight: 600;
    color: var(--dj-espresso);
}

.dojazd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.dojazd-hero__actions .dj-btn {
    flex: 0 0 auto;
}

.dojazd-mapcard__address {
    margin: calc(1.25rem - 8px) 0 0;
    color: var(--dj-espresso);
    font-family: "Work Sans", sans-serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-align: center;
}

.dojazd-mapcard__caption {
    margin: .85rem 0 0;
    color: var(--dj-espresso);
    font-family: "Work Sans", sans-serif;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
    opacity: .88;
}

.dojazd-mapcard__caption + .dojazd-mapcard__address {
    margin-top: .55rem;
}

.dojazd-hero__lead--sub {
    margin: 1.15rem 0 0;
}

.dojazd-mapcard__picker-title {
    margin: 0 0 1.1rem;
    font: 600 1.2rem/1.25 "Playfair Display", Georgia, serif;
    text-align: center;
}

.dojazd-content .dojazd-picker {
    max-width: none;
    width: 100%;
    margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
}

.dojazd-picker__card {
    padding: .85rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dojazd-content .dojazd-picker__chips {
    justify-content: center;
    gap: .4rem;
    margin-bottom: .75rem;
}

.dojazd-content .dojazd-chip {
    padding: .38rem .7rem;
    font-size: .76rem;
}

.dojazd-content .dojazd-result.is-no-time {
    grid-template-columns: minmax(0, 1fr) auto;
}

.dojazd-content .dojazd-result {
    align-items: center;
    gap: .7rem .85rem;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dojazd-content .dojazd-result__time {
    flex-direction: column;
    align-items: center;
    align-self: start;
    gap: .08rem;
    width: max-content;
    min-width: 0;
    padding: .32rem .55rem .35rem;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(247, 230, 212, .92), rgba(255, 255, 255, .96));
    box-shadow: 0 8px 18px rgba(67, 48, 42, .07);
}

.dojazd-result__label {
    color: #7a655a;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1;
}

.dojazd-result__duration {
    display: flex;
    align-items: baseline;
    gap: .22rem;
}

.dojazd-content .dojazd-result__value {
    font-size: 1.15rem;
}

.dojazd-content .dojazd-result__unit {
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
    font-size: .84rem;
    font-weight: 600;
}

.dojazd-content .dojazd-result__body h3 {
    margin: 0 0 .15rem;
    font-size: .95rem;
}

.dojazd-content .dojazd-result__body p {
    font-size: .82rem;
    line-height: 1.4;
}

.dojazd-content .dojazd-result__actions {
    min-width: 0;
    margin-bottom: 13px;
}

.dojazd-content .dojazd-result__actions .dj-btn {
    min-height: 42px;
    padding: .45rem 1rem;
}

.dojazd-transport-box + .container {
    margin-top: calc(1.5rem + 10px);
}

.dojazd-picker__public + .dojazd-quote {
    margin-top: calc(1.5rem + 15px);
}

.dojazd-transport-box .dojazd-mapcard__picker-title {
    margin-top: 0;
    text-align: left;
}

#skad {
    scroll-margin-top: calc(var(--site-header-offset, 0px) + 0.75rem);
}

.dojazd-transport-box .dojazd-picker__chips {
    justify-content: center;
    margin-bottom: 0.45rem;
}

.dojazd-transport-box {
    width: 100%;
    margin-top: 0;
    padding: clamp(1.5rem, 3.2vw, 2.35rem) 0 15px;
    border: 0;
    border-radius: 0;
    background: #fefcfa;
}

.dojazd-transport-box .dojazd-result {
    padding-top: 0.35rem;
}

.dojazd-transport-box .dojazd-mapcard {
    margin-top: 1rem;
}

.dojazd-transport-box .dojazd-mapcard__address {
    margin-top: 0.75rem;
    text-align: center;
}

.dojazd-picker__subtitle {
    margin: 0 0 0.5rem;
    color: var(--dj-espresso);
    font: 600 1rem/1.3 "Work Sans", sans-serif;
    text-align: center;
    letter-spacing: -0.01em;
}

.dojazd-content .dojazd-picker__note {
    margin-top: 0;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: #7a655a;
    font-size: .86rem;
    line-height: 1.65;
    text-align: center;
}

.dojazd-content .dojazd-picker__note + .dojazd-picker__note {
    margin-top: .75rem;
}

.dojazd-content .dojazd-picker__note strong {
    color: var(--dj-espresso);
    font-weight: 600;
}

.dojazd-content .dojazd-picker__public {
    max-width: none;
}

.dojazd-content .dojazd-picker__public-title,
.dojazd-content .dojazd-picker__public-text {
    max-width: none;
}

.dojazd-content .dojazd-picker__public-title {
    margin: 0 0 0.85rem;
    text-align: left;
}

.dojazd-content .dojazd-picker__public-text {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .dojazd-content .dojazd-result {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .dojazd-content .dojazd-result__actions {
        grid-column: 1 / -1;
    }

    .dojazd-content .dojazd-result__actions .dj-btn {
        width: 100%;
    }
}

.dojazd-hero__note {
    margin: .95rem 0 0;
    color: #7a655a;
    font-size: .82rem;
}

/*** Map card ***/
.dojazd-mapcard {
    overflow: visible;
    border: 0;
    border-radius: 24px;
    background: #fff;
    box-shadow: none;
}

.dojazd-mapcard__frame {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 680 / 417;
    border-radius: 24px;
    background: #ece4da;
    line-height: 0;
}

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

.dojazd-mapcard--embed .dojazd-mapcard__frame {
    aspect-ratio: 4 / 3;
    min-height: 320px;
}

.dojazd-mapcard__iframe {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.dojazd-mapcard__placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: transparent;
    pointer-events: none;
}

.dojazd-mapcard__placeholder[hidden] {
    display: none;
}

.dojazd-mapcard__tint {
    position: absolute;
    inset: 0;
    background: rgba(240, 244, 249, .82);
    pointer-events: none;
}

.dojazd-mapcard__placeholder .dj-btn {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.dojazd-custom-origin {
    --dj-google-bg: #fff;
    --dj-google-border: #dadce0;
    --dj-google-text: #3c4043;
    --dj-google-muted: #5f6368;
    --dj-google-blue: #1a73e8;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    width: min(100%, 22rem);
    padding: 1.35rem 1.25rem 1.15rem;
    border: 1px solid var(--dj-google-border);
    border-radius: 8px;
    background: var(--dj-google-bg);
    box-shadow:
        0 1px 2px 0 rgba(60, 64, 67, .3),
        0 1px 3px 1px rgba(60, 64, 67, .15);
    pointer-events: auto;
    font-family: Roboto, Arial, sans-serif;
}

.dojazd-custom-origin__brand {
    display: flex;
    justify-content: center;
    padding-top: .35rem;
    margin-top: .1rem;
}

.dojazd-custom-origin__maps-logo {
    display: block;
    width: min(100%, 108px);
    height: auto;
    opacity: .92;
}

.dojazd-custom-origin__heading {
    margin: 0 0 .15rem;
    color: var(--dj-google-text);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.dojazd-custom-origin__gps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    min-height: 40px;
    padding: 0 1rem;
    border: 1px solid var(--dj-google-border);
    border-radius: 4px;
    background: var(--dj-google-bg);
    color: var(--dj-google-text);
    font-family: inherit;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.dojazd-custom-origin__gps:hover,
.dojazd-custom-origin__gps:focus-visible {
    background: #f8f9fa;
    border-color: #d2e3fc;
    box-shadow: 0 1px 2px rgba(66, 133, 244, .12);
}

.dojazd-custom-origin__gps-icon {
    color: #4285f4;
    font-size: .95rem;
    line-height: 1;
}

.dojazd-custom-origin__or {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0;
    color: var(--dj-google-muted);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dojazd-custom-origin__or::before,
.dojazd-custom-origin__or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--dj-google-border);
}

.dojazd-custom-origin__field {
    display: block;
    margin: 0;
}

.dojazd-custom-origin__input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: 40px;
    padding: .55rem .75rem;
    border: 1px solid var(--dj-google-border);
    border-radius: 4px;
    background: var(--dj-google-bg);
    color: var(--dj-google-text);
    font-family: inherit;
    font-size: .875rem;
    line-height: 1.2;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.dojazd-custom-origin__input::placeholder {
    color: #80868b;
}

.dojazd-custom-origin__input:hover {
    border-color: #bdc1c6;
}

.dojazd-custom-origin__input:focus-visible {
    outline: none;
    border-color: var(--dj-google-blue);
    box-shadow: 0 0 0 1px var(--dj-google-blue);
}

.pac-container {
    z-index: 10050;
    margin-top: 2px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background: #fff;
    box-shadow:
        0 1px 2px 0 rgba(60, 64, 67, .3),
        0 2px 6px 2px rgba(60, 64, 67, .15);
    font-family: Roboto, Arial, sans-serif;
}

.pac-item {
    padding: .55rem .75rem;
    border-top: 1px solid #eceff1;
    color: #3c4043;
    font-size: .875rem;
    line-height: 1.35;
    cursor: pointer;
}

.pac-item:first-child {
    border-top: 0;
}

.pac-item:hover,
.pac-item-selected {
    background: #f1f3f4;
}

.pac-icon {
    display: none;
}

.pac-logo::after {
    padding: .35rem .75rem .5rem;
}

.dojazd-custom-origin__status {
    min-height: 1rem;
    margin: -.25rem 0 0;
    color: var(--dj-google-muted);
    font-size: .75rem;
    line-height: 1.35;
    text-align: center;
}

.dojazd-custom-origin__status:empty {
    display: none;
}

.dojazd-custom-origin__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 0 1rem;
    border: 0;
    border-radius: 4px;
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 38%, #34a853 100%);
    color: #fff;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(26, 115, 232, .28);
    transition: filter .15s ease, box-shadow .15s ease, transform .15s ease;
}

.dojazd-custom-origin__nav:hover,
.dojazd-custom-origin__nav:focus-visible {
    color: #fff;
    filter: brightness(1.04);
    box-shadow: 0 2px 6px rgba(26, 115, 232, .32);
    transform: translateY(-1px);
    text-decoration: none;
}

.dojazd-mapcard--embed.is-nav-only .dojazd-mapcard__iframe {
    pointer-events: none;
}

/*** Section shell ***/
.dojazd-section {
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.dojazd-section--tint {
    background: linear-gradient(180deg, #fff, #fdf9f4);
    border-top: 1px solid rgba(67, 48, 42, .05);
    border-bottom: 1px solid rgba(67, 48, 42, .05);
}

.dojazd-section__head {
    max-width: 42rem;
    margin: 0 auto 1.9rem;
    text-align: center;
}

.dojazd-section__head h2 {
    margin: 0 0 .55rem;
    font: 600 clamp(1.6rem, 3.4vw, 2.35rem)/1.2 "Playfair Display", Georgia, serif;
}

.dojazd-section__head p {
    margin: 0;
    color: #745f54;
    font-size: .98rem;
    line-height: 1.7;
}

/*** Route picker ***/
.dojazd-picker {
    max-width: 900px;
    margin: 0 auto;
}

.dojazd-picker__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.dojazd-chip {
    padding: .6rem 1rem;
    border: 1px solid #dbc7b4;
    border-radius: 999px;
    background: #fff;
    color: var(--dj-cocoa);
    font-family: "Work Sans", sans-serif;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.dojazd-chip:hover {
    border-color: var(--dj-cocoa);
}

.dojazd-chip.is-active {
    border-color: var(--dj-cocoa);
    background: var(--dj-cocoa);
    color: #fff;
    box-shadow: 0 8px 22px rgba(67, 48, 42, .14);
}

.dojazd-result {
    display: grid;
    align-items: center;
    gap: 1.25rem;
    padding: clamp(1.25rem, 3vw, 1.85rem);
    border: 1px solid var(--dj-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--dj-card-shadow);
}

@media (min-width: 768px) {
    .dojazd-result {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }
}

.dojazd-result__time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 7.5rem;
    padding: .9rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(247, 230, 212, .75), rgba(255, 255, 255, .9));
}

.dojazd-result__value {
    color: var(--dj-espresso);
    font-family: "Work Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
}

.dojazd-result__unit {
    margin-top: .2rem;
    color: #7a655a;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dojazd-result__time.is-gps {
    flex-direction: row-reverse;
    align-items: baseline;
    gap: .28rem;
}

.dojazd-result__time.is-gps .dojazd-result__unit {
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
    font-size: .72rem;
}

.dojazd-result__body h3 {
    margin: 0 0 .3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.dojazd-result__body p {
    margin: 0;
    color: #745f54;
    font-size: .92rem;
    line-height: 1.6;
}

.dojazd-result__actions {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-width: 12rem;
}

.dojazd-result__actions[hidden] {
    display: none;
    margin-bottom: 0;
}

.dojazd-picker__note {
    margin: 1rem 0 0;
    color: #7a655a;
    font-size: .82rem;
    text-align: center;
}

/*** Perks ***/
.dojazd-perks {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.dojazd-perk {
    padding: 1.5rem 1.35rem;
    border: 1px solid var(--dj-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(67, 48, 42, .06);
}

.dojazd-perk__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: .85rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(247, 230, 212, .95), rgba(232, 196, 168, .8));
    color: #6b4a34;
    font-size: 1.1rem;
}

.dojazd-perk h3 {
    margin: 0 0 .4rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.dojazd-perk p {
    margin: 0;
    color: #745f54;
    font-size: .92rem;
    line-height: 1.65;
}

/*** Steps ***/
.dojazd-steps {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    counter-reset: dj-step;
}

@media (min-width: 768px) {
    .dojazd-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.dojazd-steps li {
    position: relative;
    padding: 1.4rem 1.25rem 1.25rem;
    border: 1px solid var(--dj-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(67, 48, 42, .06);
    counter-increment: dj-step;
}

.dojazd-steps li::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: .7rem;
    border-radius: 50%;
    background: var(--dj-espresso);
    color: #fff;
    font-family: "Work Sans", sans-serif;
    font-size: .85rem;
    font-weight: 600;
    content: counter(dj-step);
}

.dojazd-steps h3 {
    margin: 0 0 .35rem;
    font-size: 1.02rem;
    font-weight: 600;
}

.dojazd-steps p {
    margin: 0;
    color: #745f54;
    font-size: .92rem;
    line-height: 1.6;
}

/*** Address / taxi split ***/
.dojazd-split {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}

@media (min-width: 992px) {
    .dojazd-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

.dojazd-panel {
    display: flex;
    flex-direction: column;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    border: 1px solid var(--dj-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--dj-card-shadow);
}

.dojazd-panel h2 {
    margin: 0 0 .6rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.dojazd-panel p {
    margin: 0 0 .9rem;
    color: #745f54;
    font-size: .94rem;
    line-height: 1.65;
}

.dojazd-facts {
    margin: 0 0 1.1rem;
    padding: 0;
    list-style: none;
}

.dojazd-facts li {
    display: flex;
    gap: .65rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(67, 48, 42, .06);
    color: #5e4a40;
    font-size: .92rem;
    line-height: 1.5;
}

.dojazd-facts li:last-child {
    border-bottom: 0;
}

.dojazd-facts i {
    margin-top: .18rem;
    color: var(--dj-caramel);
}

.dojazd-facts strong {
    color: var(--dj-espresso);
}

.dojazd-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: auto;
}

.dojazd-panel__actions .dj-btn {
    flex: 1 1 11rem;
}

.dojazd-copy-status {
    margin: .6rem 0 0;
    color: #6b8a5f;
    font-size: .82rem;
    font-weight: 600;
}

/*** Quote ***/
.dojazd-quote {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3.5vw, 2.15rem);
    border: 1px solid var(--dj-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--dj-card-shadow);
    text-align: center;
}

.dojazd-quote__stars {
    color: var(--reviews-gold, #d6aa51);
    font-size: 1rem;
    letter-spacing: .1em;
}

.dojazd-quote blockquote {
    margin: .6rem 0 .9rem;
    color: #4d3a31;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-style: italic;
    line-height: 1.7;
}

.dojazd-quote figcaption {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .45rem .65rem;
    color: #7a655a;
    font-size: .85rem;
    font-weight: 600;
}

.dojazd-quote__source {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .28rem .55rem;
    border-radius: 100px;
    background: #edf7f7;
    color: #244c4f;
    font-size: .72rem;
    font-weight: 600;
}

.dojazd-quote__source img {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 2px;
}

.dojazd-quote__more {
    margin: 1rem 0 0;
}

.dojazd-quote__more a {
    color: var(--dj-caramel);
    font-family: "Work Sans", sans-serif;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(187, 135, 98, .45);
}

.dojazd-quote__more a:hover,
.dojazd-quote__more a:focus-visible {
    color: var(--dj-espresso);
    border-bottom-color: var(--dj-espresso);
    text-decoration: none;
}

/*** FAQ ***/
.dojazd-faq {
    max-width: 780px;
    margin: 0 auto;
}

.dojazd-faq details {
    margin-bottom: .65rem;
    border: 1px solid var(--dj-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(67, 48, 42, .05);
}

.dojazd-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--dj-espresso);
    font-family: "Work Sans", sans-serif;
    font-size: .98rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.dojazd-faq summary::-webkit-details-marker {
    display: none;
}

.dojazd-faq summary::after {
    flex: 0 0 auto;
    color: var(--dj-caramel);
    border: solid currentColor;
    border-width: 0 0.12em 0.12em 0;
    content: "";
    width: 0.5em;
    height: 0.5em;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.dojazd-faq details[open] summary::after {
    transform: rotate(225deg);
}

.dojazd-faq details p {
    margin: 0;
    padding: 0 1.25rem 1.15rem;
    color: #745f54;
    font-size: .93rem;
    line-height: 1.7;
}

.dojazd-faq details p a {
    color: var(--dj-caramel);
    font-weight: 600;
}

/*** Sticky mobile action bar ***/
.dojazd-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 98;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: .55rem;
    box-sizing: border-box;
    height: fit-content;
    max-height: none;
    padding-top: .65rem;
    padding-bottom: .55rem;
    padding-left: max(var(--floating-edge-inset, 0.65rem), env(safe-area-inset-left, 0px));
    padding-right: max(var(--floating-edge-inset, 0.65rem), env(safe-area-inset-right, 0px));
    border-top: 1px solid var(--dj-line);
    background: #fff;
    box-shadow: 0 -6px 20px rgba(67, 48, 42, .1);
}

.dojazd-bar__person {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "photo name pin"
        "photo nav pin";
    align-items: center;
    column-gap: .7rem;
    row-gap: .12rem;
}

.dojazd-bar__photo {
    grid-area: photo;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.dojazd-bar__copy {
    grid-area: name;
    min-width: 0;
}

.dojazd-bar__name {
    margin: 0;
    color: var(--dj-espresso);
    font-family: "Work Sans", sans-serif;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.25;
}

.dojazd-bar__bio {
    margin: .15rem 0 0;
    color: #7a655a;
    font-size: .75rem;
    line-height: 1.35;
}

.dojazd-bar__actions {
    display: flex;
    gap: .5rem;
}

.dojazd-bar .dj-btn {
    flex: 1 1 0;
    min-height: 46px;
    padding: .5rem .6rem;
    font-size: .85rem;
}

@media (min-width: 768px) {
    .dojazd-bar {
        right: max(var(--floating-edge-inset, 0.65rem), env(safe-area-inset-right, 0px));
        bottom: max(var(--floating-edge-inset, 0.65rem), env(safe-area-inset-bottom, 0px));
        left: auto;
        display: flex;
        width: min(360px, calc(100vw - 2 * max(var(--floating-edge-inset, 0.65rem), env(safe-area-inset-right, 0px))));
        padding: .85rem .9rem;
        border: 1px solid var(--dj-line);
        border-radius: 22px;
        gap: .75rem;
        box-shadow: 0 -6px 20px rgba(67, 48, 42, .1);
        transform: none;
    }

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

@media (max-width: 991.98px) {
    .dojazd-content {
        padding-top: calc(clamp(2rem, 4.5vw, 3.25rem) - 10px);
    }

    .dojazd-transport-box .dojazd-mapcard {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .dojazd-transport-box .dojazd-mapcard__frame {
        border-radius: 0;
    }

    .dojazd-hero__grid {
        display: flex;
        flex-direction: column;
    }

    .dojazd-hero__copy {
        display: contents;
    }

    .dojazd-hero__lead {
        order: 1;
    }

    .dojazd-mapcard {
        order: 2;
    }

    .dojazd-usps {
        order: 3;
    }

    .dojazd-picker {
        order: 4;
    }

    .dojazd-hero__copy .dojazd-hero__lead {
        margin-bottom: 0.5rem;
    }

    .dojazd-hero__copy + .dojazd-mapcard,
    .dojazd-hero__grid > .dojazd-mapcard {
        margin-top: -10px;
    }

    .dojazd-usps {
        margin-top: 0.2rem;
    }

    .dojazd-picker .dojazd-quote {
        margin-top: 1.5rem;
        padding: 1.15rem 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .dojazd-page {
        overflow-x: hidden;
    }

    .dojazd-hero__grid > .dojazd-mapcard,
    .dojazd-transport-box .dojazd-mapcard {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .dojazd-hero__grid > .dojazd-mapcard .dojazd-mapcard__frame,
    .dojazd-transport-box .dojazd-mapcard__frame {
        border-radius: 0;
    }

    .dojazd-hero__grid > .dojazd-mapcard .dojazd-mapcard__frame {
        aspect-ratio: auto;
    }

    .dojazd-hero__grid > .dojazd-mapcard .dojazd-mapcard__img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .dojazd-mapcard--embed .dojazd-mapcard__frame {
        aspect-ratio: 1 / 1;
        min-height: min(100vw, 480px);
    }

    .dojazd-hero__grid > .dojazd-mapcard .dojazd-mapcard__address,
    .dojazd-transport-box .dojazd-mapcard__address {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        text-align: center;
    }

    .dojazd-hero__grid {
        gap: .75rem;
    }

    .dojazd-usps {
        grid-template-columns: 1fr;
    }

    .dojazd-bar {
        display: flex;
    }

    .dojazd-result__actions {
        min-width: 0;
    }
}

.dojazd-page .reviews-cta {
    padding: 0;
    background: transparent;
}

.dojazd-page .reviews-cta__box {
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.dojazd-page .reviews-cta h2 {
    margin: 0;
    color: #fff;
    font: 500 clamp(2rem, 4vw, 3.2rem)/1.15 "Playfair Display", Georgia, serif;
}

.dojazd-page .reviews-cta__lead {
    margin: .85rem 0 0;
    color: #e6bc9f;
    font: 600 clamp(1.75rem, 3.5vw, 2.35rem)/1.2 "Playfair Display", Georgia, "Times New Roman", serif;
}

.dojazd-page .reviews-cta .reviews-eyebrow {
    font: 400 clamp(1.35rem, 2.8vw, 1.75rem)/1.2 "Work Sans", sans-serif;
    letter-spacing: normal;
    text-transform: none;
}

.dojazd-page .reviews-cta__layout {
    display: grid;
    gap: 1.75rem;
    justify-items: center;
    text-align: center;
}

.dojazd-page .reviews-cta__aside {
    width: min(17.5rem, 100%);
}

.dojazd-page .reviews-cta__actions,
.dojazd-page .reviews-cta__contact {
    width: 100%;
    margin: 0;
}

.dojazd-page .reviews-cta__or {
    margin: .85rem 0;
}

@media (prefers-reduced-motion: reduce) {

    .dj-btn,
    .dojazd-chip,
    .dojazd-faq summary::after {
        transition: none;
    }

    .dj-btn:hover,
    .dj-btn:focus-visible {
        transform: none;
    }
}
