/* Explore Sofar - Kyoto Curated City Guide landing page
 *
 * Palette and type scale lifted from the reference product page:
 *   background  hsl(40, 55.56%, 94.71%)   #f9f4ea
 *   text        hsl(35, 65.45%, 21.57%)   #5b3d13
 *   panels      hsl(22.5, 25%, 81.18%)    #dbccc3
 *   buttons     black on white
 *   headings    Palatino    body Rasa    labels Montserrat
 *   base 15px, body 1.1rem, small .9rem, h2 1.9rem, h3 1.45rem, h4 .9rem
 */

.esf-kyoto,
.esf-sticky {
    --esf-ink: #5b3d13;
    --esf-body: #5b3d13;
    --esf-muted: rgba(91, 61, 19, 0.62);
    --esf-line: rgba(91, 61, 19, 0.2);
    --esf-hair: rgba(91, 61, 19, 0.12);
    --esf-paper: #f9f4ea;
    --esf-shell: #dbccc3;
    --esf-accent: #000000;
    --esf-on-accent: #ffffff;
    --esf-serif: "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", Georgia, serif;
    --esf-read: "Rasa", Georgia, "Times New Roman", serif;
    --esf-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --esf-max: 1280px;
    --esf-pad: 40px;
    --esf-gap: 76px;
    --esf-text: 16.5px;
    --esf-small: 13.5px;
    --esf-meta: 15px;
    /* Raise this if the theme has a fixed header covering the top strip. */
    --esf-sticky-top: 24px;
}

/* Nothing in this component is ever rounded. */
.esf-kyoto,
.esf-kyoto *,
.esf-kyoto *::before,
.esf-kyoto *::after,
.esf-sticky,
.esf-sticky * {
    border-radius: 0 !important;
}

.esf-kyoto {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 var(--esf-pad);
    background: var(--esf-paper);
    color: var(--esf-body);
    font-family: var(--esf-read);
    font-size: var(--esf-text);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* clip, not hidden: hidden makes this a scroll container and kills
       position:sticky on the media column. clip crops without doing that. */
    overflow-x: clip;
}

.esf-kyoto *,
.esf-kyoto *::before,
.esf-kyoto *::after {
    box-sizing: inherit;
}

.esf-kyoto img {
    display: block;
    max-width: 100%;
    height: auto;
}

.esf-kyoto p {
    margin: 0 0 1em;
}

.esf-kyoto p:last-child {
    margin-bottom: 0;
}

.esf-kyoto h1,
.esf-kyoto h2,
.esf-kyoto h3 {
    font-family: var(--esf-serif);
    color: var(--esf-ink);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0;
}

.esf-kyoto a {
    color: var(--esf-ink);
}

.esf-kyoto__notices {
    max-width: var(--esf-max);
    margin: 24px auto 0;
}

/* ---------- Breadcrumb ---------- */

.esf-crumbs {
    max-width: var(--esf-max);
    margin: 0 auto;
    padding: 30px 0 26px;
    font-family: var(--esf-sans);
    font-size: 12px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--esf-muted);
}

.esf-crumbs a {
    color: var(--esf-muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.esf-crumbs a:hover {
    color: var(--esf-ink);
    border-bottom-color: var(--esf-ink);
}

.esf-crumbs span {
    margin: 0 6px;
}

.esf-crumbs__current {
    margin-left: 0;
    color: var(--esf-ink);
}

/* ---------- Hero: 65 / 35 ---------- */

.esf-hero {
    display: grid;
    grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
    gap: 44px;
    align-items: start;
    max-width: var(--esf-max);
    margin: 0 auto;
    padding-bottom: var(--esf-gap);
}

.esf-hero__media {
    position: sticky;
    position: -webkit-sticky;
    top: var(--esf-sticky-top);
    z-index: 1;
    min-width: 0;
    /* Never taller than the viewport, or the bottom would be unreachable. */
    max-height: calc(100vh - (var(--esf-sticky-top) * 2));
}

.esf-hero__copy {
    min-width: 0;
    padding-top: 2px;
}

/* ---------- Gallery: rail on the left, cover on the right ---------- */

.esf-gallery {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.esf-gallery__rail {
    position: relative;
    order: 1;
    flex: 0 0 88px;
    width: 88px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: min(820px, 74vh);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.esf-gallery__rail::-webkit-scrollbar {
    width: 3px;
}

.esf-gallery__rail::-webkit-scrollbar-thumb {
    background: var(--esf-line);
}

/* Width driven, so the frame always keeps the 13:20 ratio instead of
   turning into a tall box that letterboxes a portrait page scan. */
.esf-gallery__stage {
    order: 2;
    position: relative;
    flex: 0 0 auto;
    width: min(100%, calc(74vh * 0.65), 540px);
    aspect-ratio: 13 / 20;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    background: var(--esf-shell);
    overflow: hidden;
}

.esf-gallery__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* contain, so mixed source ratios are never cropped or distorted */
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.esf-gallery__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.esf-gallery__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    min-width: 52px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.esf-gallery__nav::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-right: 1.4px solid var(--esf-ink);
    border-bottom: 1.4px solid var(--esf-ink);
}

.esf-gallery__nav--prev {
    left: 0;
}

.esf-gallery__nav--prev::after {
    transform: translate(-50%, -50%) rotate(135deg);
}

.esf-gallery__nav--next {
    right: 0;
}

.esf-gallery__nav--next::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.esf-gallery__stage:hover .esf-gallery__nav,
.esf-gallery__nav:focus-visible {
    opacity: 1;
}

.esf-gallery__counter {
    position: absolute;
    right: 12px;
    bottom: 12px;
    margin: 0;
    padding: 5px 10px;
    background: var(--esf-accent);
    color: var(--esf-on-accent);
    font-family: var(--esf-sans);
    font-size: 10px;
    letter-spacing: 0.12em;
}

.esf-gallery__thumb {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 88px;
    padding: 0;
    border: 1px solid transparent;
    background: var(--esf-shell);
    cursor: pointer;
    aspect-ratio: 7 / 10;
    overflow: hidden;
    opacity: 0.68;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.esf-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.esf-gallery__thumb:hover {
    opacity: 1;
}

.esf-gallery__thumb.is-active {
    opacity: 1;
    border-color: var(--esf-ink);
}

/* ---------- Hero copy ---------- */

.esf-eyebrow {
    margin: 0 0 12px;
    font-family: var(--esf-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--esf-muted);
}

.esf-title {
    font-size: clamp(27px, 2.6vw, 34px);
    line-height: 1.1;
    margin-bottom: 14px;
}

.esf-price {
    margin: 0 0 6px;
    font-family: var(--esf-serif);
    font-size: var(--esf-small);
    letter-spacing: 0.02em;
    color: var(--esf-ink);
}

.esf-price del {
    color: var(--esf-muted);
    margin-right: 8px;
}

.esf-price ins {
    text-decoration: none;
}

.esf-updated {
    margin: 0 0 22px;
    font-size: var(--esf-small);
    color: var(--esf-muted);
}

.esf-prose {
    font-size: var(--esf-text);
    line-height: 1.62;
}

.esf-pullline {
    margin: 24px 0 0;
    padding: 16px 0;
    border-top: 1px solid var(--esf-line);
    border-bottom: 1px solid var(--esf-line);
    font-family: var(--esf-serif);
    font-size: 19px;
    line-height: 1.4;
    color: var(--esf-ink);
}

.esf-block {
    margin-top: 30px;
}

.esf-block__title {
    font-family: var(--esf-sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--esf-ink);
    font-weight: 600;
    margin-bottom: 14px;
}

/* Discover list */

.esf-discover {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--esf-hair);
}

.esf-discover__item {
    padding: 13px 0;
    border-bottom: 1px solid var(--esf-hair);
}

.esf-discover__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
}

.esf-discover__name {
    font-family: var(--esf-serif);
    font-size: 17px;
    color: var(--esf-ink);
}

.esf-discover__count {
    flex: 0 0 auto;
    font-family: var(--esf-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--esf-muted);
}

.esf-discover__detail {
    margin: 5px 0 0;
    font-size: var(--esf-small);
    line-height: 1.55;
    color: var(--esf-body);
}

/* Square bullets, as on the reference */

.esf-squares {
    list-style: none;
    margin: 0;
    padding: 0;
}

.esf-squares li {
    position: relative;
    padding: 0 0 12px 22px;
    font-size: var(--esf-small);
    line-height: 1.6;
}

.esf-squares li::before {
    content: "\25A0";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 10px;
    color: var(--esf-ink);
}

.esf-squares li:last-child {
    padding-bottom: 0;
}

/* ---------- Buy ---------- */

.esf-buy {
    margin-top: 30px;
}

.esf-kyoto .esf-buy__button {
    display: block;
    width: 100%;
    padding: 15px 24px;
    border: 1px solid var(--esf-accent);
    background: var(--esf-accent);
    color: var(--esf-on-accent);
    font-family: var(--esf-serif);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.esf-kyoto .esf-buy__button:hover,
.esf-kyoto .esf-buy__button:focus {
    background: transparent;
    color: var(--esf-ink);
    border-color: var(--esf-ink);
}

.esf-kyoto .esf-buy__button.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.esf-kyoto .esf-buy__button.is-added,
.esf-sticky .esf-sticky__button.is-added {
    background: transparent;
    color: var(--esf-ink);
    border-color: var(--esf-ink);
}

.esf-buy__note {
    margin: 12px 0 0;
    font-size: var(--esf-small);
    color: var(--esf-muted);
    text-align: center;
}

.esf-buy__link {
    margin: 10px 0 0;
    text-align: center;
    font-size: var(--esf-small);
}

.esf-meta {
    list-style: none;
    margin: 26px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--esf-line);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    font-family: var(--esf-sans);
    font-size: 12px;
    color: var(--esf-muted);
}

.esf-meta li {
    position: relative;
    padding-left: 16px;
    line-height: 1.5;
}

.esf-meta li::before {
    content: "\25A0";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 8px;
    line-height: 1.9;
    color: var(--esf-muted);
}

/* ---------- Full width band ---------- */

.esf-band {
    margin: 0 calc(var(--esf-pad) * -1) var(--esf-gap);
    background: var(--esf-shell);
}

.esf-band img {
    width: 100%;
    max-height: 74vh;
    object-fit: cover;
    object-position: center 42%;
}

/* ---------- Section headings ---------- */

.esf-section-title {
    font-size: 28.5px;
    line-height: 1.2;
    margin-bottom: 32px;
}

/* ---------- What to expect ---------- */

.esf-expect {
    max-width: var(--esf-max);
    margin: 0 auto var(--esf-gap);
}

.esf-expect__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 56px;
}

.esf-expect__item h3 {
    position: relative;
    padding-left: 22px;
    font-size: 21.75px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.esf-expect__item h3::before {
    content: "\25A0";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
}

.esf-expect__item p {
    margin: 0;
    padding-left: 22px;
    font-size: var(--esf-small);
    line-height: 1.65;
}

/* ---------- Volume note ---------- */

.esf-volume {
    max-width: 760px;
    margin: 0 auto var(--esf-gap);
    padding: 40px;
    background: var(--esf-shell);
    text-align: center;
}

.esf-volume h2 {
    font-family: var(--esf-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.esf-volume p {
    margin: 0;
    font-family: var(--esf-serif);
    font-size: 19px;
    line-height: 1.5;
    color: var(--esf-ink);
}

/* ---------- Photo grid: two up, then three up ---------- */

.esf-tiles {
    max-width: var(--esf-max);
    margin: 0 auto var(--esf-gap);
    display: grid;
    gap: 14px;
}

.esf-tiles__row {
    display: grid;
    gap: 14px;
}

.esf-tiles__row--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.esf-tiles img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--esf-shell);
}

.esf-tiles__row--two img {
    aspect-ratio: 4 / 5;
}

.esf-tiles__row--three img {
    aspect-ratio: 3 / 4;
}

/* ---------- FAQ ---------- */

.esf-faq {
    max-width: 880px;
    margin: 0 auto var(--esf-gap);
}

.esf-faq__list {
    border-top: 1px solid var(--esf-line);
}

.esf-faq__item {
    border-bottom: 1px solid var(--esf-line);
}

.esf-faq__item summary {
    position: relative;
    display: block;
    padding: 20px 44px 20px 0;
    font-family: var(--esf-serif);
    font-size: 18px;
    color: var(--esf-ink);
    cursor: pointer;
    list-style: none;
}

.esf-faq__item summary::-webkit-details-marker {
    display: none;
}

.esf-faq__item summary::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -8px;
    border-right: 1.4px solid var(--esf-ink);
    border-bottom: 1.4px solid var(--esf-ink);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.esf-faq__item[open] summary::after {
    transform: rotate(225deg);
    margin-top: -3px;
}

.esf-faq__answer {
    padding: 0 44px 22px 0;
    font-size: var(--esf-small);
    line-height: 1.65;
}

/* ---------- Closing / newsletter ---------- */

.esf-closing {
    margin: 0 calc(var(--esf-pad) * -1);
    padding: 72px var(--esf-pad);
    background: var(--esf-shell);
}

.esf-closing__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.esf-closing h2 {
    font-size: 28.5px;
    margin-bottom: 12px;
}

.esf-closing p {
    margin: 0 auto 26px;
    max-width: 480px;
    color: var(--esf-body);
}

.esf-closing__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.esf-kyoto .esf-closing__button {
    display: inline-block;
    padding: 14px 40px;
    background: var(--esf-accent);
    border: 1px solid var(--esf-accent);
    color: var(--esf-on-accent);
    font-family: var(--esf-serif);
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.esf-kyoto .esf-closing__button:hover {
    background: transparent;
    color: var(--esf-ink);
    border-color: var(--esf-ink);
}

.esf-closing__email {
    font-family: var(--esf-sans);
    font-size: 12px;
    color: var(--esf-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--esf-line);
}

.esf-closing__email:hover {
    color: var(--esf-ink);
    border-bottom-color: var(--esf-ink);
}

/* ---------- Reviews ---------- */

.esf-reviews {
    max-width: 880px;
    margin: var(--esf-gap) auto;
}

.esf-reviews #reviews #comments h2 {
    display: none;
}

.esf-reviews .comment-respond {
    margin-top: 24px;
}

.esf-kyoto-thankyou {
    margin-top: 12px;
    font-style: italic;
}

/* =========================================================
   Sticky buy bar
   ========================================================= */

.esf-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: var(--esf-paper);
    border-top: 1px solid var(--esf-line);
    box-shadow: 0 -8px 30px rgba(91, 61, 19, 0.1);
    transform: translateY(101%);
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    font-family: var(--esf-read);
    color: var(--esf-ink);
}

.esf-sticky[hidden] {
    display: none;
}

.esf-sticky.is-visible {
    transform: translateY(0);
}

.esf-sticky__inner {
    box-sizing: border-box;
    max-width: var(--esf-max);
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.esf-sticky__inner * {
    box-sizing: border-box;
}

.esf-sticky__img {
    flex: 0 0 auto;
    width: 46px;
    height: 62px;
    object-fit: cover;
    background: var(--esf-shell);
    display: block;
}

.esf-sticky__text {
    flex: 1 1 auto;
    min-width: 0;
}

.esf-sticky__title {
    margin: 0;
    font-family: var(--esf-serif);
    font-size: 18px;
    line-height: 1.25;
    color: var(--esf-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.esf-sticky__price {
    margin: 2px 0 0;
    font-family: var(--esf-serif);
    font-size: 13.5px;
    color: var(--esf-muted);
}

.esf-sticky__price del {
    margin-right: 6px;
}

.esf-sticky__price ins {
    text-decoration: none;
}

.esf-sticky .esf-sticky__button {
    flex: 0 0 auto;
    display: inline-block;
    padding: 13px 44px;
    border: 1px solid var(--esf-accent);
    background: var(--esf-accent);
    color: var(--esf-on-accent);
    font-family: var(--esf-serif);
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.esf-sticky .esf-sticky__button:hover,
.esf-sticky .esf-sticky__button:focus {
    background: transparent;
    color: var(--esf-ink);
    border-color: var(--esf-ink);
}

.esf-sticky .esf-sticky__button.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1180px) {
    .esf-kyoto {
        --esf-pad: 28px;
        --esf-gap: 58px;
    }

    .esf-hero {
        grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
        gap: 32px;
    }

    .esf-sticky__inner {
        padding: 12px 28px;
    }
}

@media (max-width: 900px) {
    .esf-hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .esf-hero__media {
        position: static;
        max-height: none;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    /* Cover first, thumbnails underneath as a carousel. */
    .esf-gallery {
        flex-direction: column;
        gap: 10px;
    }

    .esf-gallery__stage {
        order: 1;
        width: 100%;
        aspect-ratio: 13 / 20;
        margin: 0;
    }

    .esf-gallery__rail {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        max-height: none;
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding-bottom: 4px;
    }

    .esf-gallery__rail::-webkit-scrollbar {
        height: 3px;
        width: auto;
    }

    .esf-gallery__thumb {
        width: 72px;
        scroll-snap-align: start;
    }

    .esf-expect__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    .esf-band img {
        max-height: 56vh;
    }
}

@media (max-width: 640px) {
    .esf-kyoto {
        --esf-pad: 18px;
        --esf-gap: 46px;
        --esf-text: 16px;
        --esf-small: 13.5px;
    }

    .esf-crumbs {
        padding: 18px 0;
        font-size: 11px;
    }

    .esf-gallery__nav {
        opacity: 1;
    }

    .esf-title {
        font-size: 28px;
    }

    .esf-pullline {
        font-size: 17px;
    }

    .esf-section-title,
    .esf-closing h2 {
        font-size: 24px;
    }

    .esf-expect__item h3 {
        font-size: 19px;
    }

    .esf-discover__head {
        flex-direction: column;
        gap: 2px;
    }

    .esf-discover__count {
        order: -1;
    }

    .esf-tiles__row--two,
    .esf-tiles__row--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .esf-tiles__row--three img,
    .esf-tiles__row--two img {
        aspect-ratio: 3 / 4;
    }

    .esf-tiles__row--three img:last-child {
        grid-column: span 2;
        aspect-ratio: 4 / 3;
    }

    .esf-volume {
        padding: 28px 20px;
    }

    .esf-volume p {
        font-size: 17px;
    }

    .esf-faq__item summary {
        font-size: 16px;
        padding-right: 34px;
    }

    .esf-faq__answer {
        padding-right: 0;
    }

    .esf-closing {
        padding: 52px var(--esf-pad);
    }

    .esf-kyoto .esf-closing__button {
        width: 100%;
    }

    /* Sticky bar keeps the image and title, trims the padding. */
    .esf-sticky__inner {
        padding: 10px 14px;
        gap: 12px;
    }

    .esf-sticky__img {
        width: 40px;
        height: 54px;
    }

    .esf-sticky__title {
        font-size: 16px;
    }

    .esf-sticky__price {
        font-size: 12.5px;
    }

    .esf-sticky .esf-sticky__button {
        padding: 12px 20px;
        font-size: 15px;
    }

    /* Room for the bar so it never covers the last section. */
    .esf-kyoto {
        padding-bottom: 92px;
    }
}

@media (max-width: 380px) {
    .esf-sticky__img {
        display: none;
    }

    .esf-sticky .esf-sticky__button {
        padding: 12px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .esf-kyoto *,
    .esf-kyoto *::before,
    .esf-kyoto *::after,
    .esf-sticky {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
